Publish repair_data folder
Browse files- .gitattributes +1 -0
- cleaned.csv +3 -0
- csv_repair.py +857 -0
- extract_countries.py +109 -0
- geonames_fetch.py +217 -0
- publish_cleaned_to_hf.py +120 -0
- publish_to_hf.py +148 -0
- report/HR_Data_Clean_2020_2025_clean_actions.json +21 -0
- report/HR_Data_Clean_2020_2025_report.json +595 -0
- report/HR_Data_Clean_2020_2025_report.txt +70 -0
- report/cities_by_country.json +5749 -0
- report/countries.json +256 -0
- report/provinces_by_country.json +4322 -0
.gitattributes
CHANGED
|
@@ -57,3 +57,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
cleaned.csv filter=lfs diff=lfs merge=lfs -text
|
cleaned.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dca968af3023356f0ea19dfb694a418578de8f666f08cea84c252910d486288a
|
| 3 |
+
size 131637523
|
csv_repair.py
ADDED
|
@@ -0,0 +1,857 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
csv_repair.py — Read, analyze, and optionally repair CSV data.
|
| 4 |
+
|
| 5 |
+
Features:
|
| 6 |
+
- Robust CSV loading with delimiter inference and encoding fallback
|
| 7 |
+
- Dataset profile: rows, columns, memory, dtypes
|
| 8 |
+
- Column quality: missing %, unique counts, top values
|
| 9 |
+
- Numeric stats: min/max/mean/std/quantiles; IQR outlier detection
|
| 10 |
+
- String quality: length stats, whitespace issues, null-like tokens
|
| 11 |
+
- Date detection: min/max, coverage, parse success rate
|
| 12 |
+
- Duplicate analysis and likely primary key detection
|
| 13 |
+
- Correlations for numeric columns
|
| 14 |
+
- Suggestions for cleaning steps per column
|
| 15 |
+
- Write text and JSON reports; optional cleaned/outliers CSVs
|
| 16 |
+
- Special repair for `location` column: parse "city, country" and regenerate
|
| 17 |
+
country-specific city names to avoid cross-country duplicates
|
| 18 |
+
- Real city mode: assign country-specific real city names from a built-in
|
| 19 |
+
catalog or a user-provided JSON mapping
|
| 20 |
+
|
| 21 |
+
Usage:
|
| 22 |
+
python csv_repair.py -i data.csv -o report_dir --cleaned-csv cleaned.csv --outliers-csv outliers.csv
|
| 23 |
+
python csv_repair.py -i data.csv -o report_dir --cleaned-csv cleaned.csv --fix-location --location-mode sequential --drop-location
|
| 24 |
+
|
| 25 |
+
Dependencies:
|
| 26 |
+
Requires: pandas, numpy
|
| 27 |
+
|
| 28 |
+
Notes:
|
| 29 |
+
- If your file is large, consider --sample-rows to profile a subset quickly.
|
| 30 |
+
- Null-like tokens can be customized with --null-tokens.
|
| 31 |
+
"""
|
| 32 |
+
|
| 33 |
+
from __future__ import annotations
|
| 34 |
+
|
| 35 |
+
import argparse
|
| 36 |
+
import json
|
| 37 |
+
import os
|
| 38 |
+
import re
|
| 39 |
+
import sys
|
| 40 |
+
from dataclasses import dataclass
|
| 41 |
+
from typing import Any, Dict, List, Optional, Tuple
|
| 42 |
+
|
| 43 |
+
import numpy as np
|
| 44 |
+
import pandas as pd
|
| 45 |
+
import hashlib
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
DEFAULT_NULL_TOKENS = [
|
| 49 |
+
"", "na", "n/a", "null", "none", "nan", "-", "--", "n.a.", "n.a",
|
| 50 |
+
]
|
| 51 |
+
|
| 52 |
+
|
| 53 |
+
def try_read_csv(
|
| 54 |
+
path: str,
|
| 55 |
+
encoding: Optional[str] = None,
|
| 56 |
+
sep: Optional[str] = None,
|
| 57 |
+
nrows: Optional[int] = None,
|
| 58 |
+
null_tokens: Optional[List[str]] = None,
|
| 59 |
+
) -> pd.DataFrame:
|
| 60 |
+
na_values = None
|
| 61 |
+
if null_tokens:
|
| 62 |
+
na_values = null_tokens
|
| 63 |
+
|
| 64 |
+
# First attempt: UTF-8 with sep inference
|
| 65 |
+
try:
|
| 66 |
+
return pd.read_csv(
|
| 67 |
+
path,
|
| 68 |
+
sep=sep,
|
| 69 |
+
engine="python" if sep is None else None,
|
| 70 |
+
encoding=encoding or "utf-8",
|
| 71 |
+
na_values=na_values,
|
| 72 |
+
keep_default_na=True,
|
| 73 |
+
nrows=nrows,
|
| 74 |
+
)
|
| 75 |
+
except Exception as e_utf8:
|
| 76 |
+
# Fallback to latin-1 (very permissive)
|
| 77 |
+
try:
|
| 78 |
+
return pd.read_csv(
|
| 79 |
+
path,
|
| 80 |
+
sep=sep,
|
| 81 |
+
engine="python" if sep is None else None,
|
| 82 |
+
encoding="latin-1",
|
| 83 |
+
na_values=na_values,
|
| 84 |
+
keep_default_na=True,
|
| 85 |
+
nrows=nrows,
|
| 86 |
+
)
|
| 87 |
+
except Exception as e_lat1:
|
| 88 |
+
raise RuntimeError(
|
| 89 |
+
f"Failed to read CSV with utf-8 and latin-1 encodings. Errors: {e_utf8} | {e_lat1}"
|
| 90 |
+
) from e_lat1
|
| 91 |
+
|
| 92 |
+
|
| 93 |
+
def infer_and_parse_dates(df: pd.DataFrame, min_success_rate: float = 0.8) -> Tuple[pd.DataFrame, Dict[str, float]]:
|
| 94 |
+
parsed_rates: Dict[str, float] = {}
|
| 95 |
+
result = df.copy()
|
| 96 |
+
for col in result.columns:
|
| 97 |
+
s = result[col]
|
| 98 |
+
if pd.api.types.is_datetime64_any_dtype(s):
|
| 99 |
+
parsed_rates[col] = 1.0
|
| 100 |
+
continue
|
| 101 |
+
if pd.api.types.is_object_dtype(s) or pd.api.types.is_string_dtype(s):
|
| 102 |
+
try:
|
| 103 |
+
parsed = pd.to_datetime(s, errors="coerce", infer_datetime_format=True)
|
| 104 |
+
non_null = s.notna().sum()
|
| 105 |
+
success = parsed.notna().sum()
|
| 106 |
+
rate = (success / non_null) if non_null else 0.0
|
| 107 |
+
parsed_rates[col] = rate
|
| 108 |
+
if rate >= min_success_rate and success > 0:
|
| 109 |
+
result[col] = parsed
|
| 110 |
+
except Exception:
|
| 111 |
+
parsed_rates[col] = 0.0
|
| 112 |
+
else:
|
| 113 |
+
parsed_rates[col] = 0.0
|
| 114 |
+
return result, parsed_rates
|
| 115 |
+
|
| 116 |
+
|
| 117 |
+
def standardize_booleans(series: pd.Series) -> Optional[pd.Series]:
|
| 118 |
+
if not (pd.api.types.is_object_dtype(series) or pd.api.types.is_string_dtype(series)):
|
| 119 |
+
return None
|
| 120 |
+
mapping = {
|
| 121 |
+
"true": True, "t": True, "yes": True, "y": True, "1": True,
|
| 122 |
+
"false": False, "f": False, "no": False, "n": False, "0": False,
|
| 123 |
+
}
|
| 124 |
+
lower = series.astype(str).str.strip().str.lower()
|
| 125 |
+
mask_known = lower.isin(mapping.keys())
|
| 126 |
+
if mask_known.mean() < 0.8: # Only convert if majority look boolean-like
|
| 127 |
+
return None
|
| 128 |
+
out = series.copy()
|
| 129 |
+
out.loc[mask_known] = lower.loc[mask_known].map(mapping)
|
| 130 |
+
# Keep others as-is (or NaN if empty-like will be handled by NA tokens)
|
| 131 |
+
return out
|
| 132 |
+
|
| 133 |
+
|
| 134 |
+
def trim_and_normalize_whitespace(series: pd.Series) -> Optional[pd.Series]:
|
| 135 |
+
if not (pd.api.types.is_object_dtype(series) or pd.api.types.is_string_dtype(series)):
|
| 136 |
+
return None
|
| 137 |
+
out = series.astype(str)
|
| 138 |
+
# Track if changes are meaningful
|
| 139 |
+
before = out.copy()
|
| 140 |
+
out = out.str.replace(r"\s+", " ", regex=True).str.strip()
|
| 141 |
+
if (before != out).mean() == 0:
|
| 142 |
+
return None
|
| 143 |
+
return out
|
| 144 |
+
|
| 145 |
+
|
| 146 |
+
def analyze_strings(series: pd.Series, null_tokens: List[str]) -> Dict[str, Any]:
|
| 147 |
+
s = series.astype(str)
|
| 148 |
+
stripped = s.str.strip()
|
| 149 |
+
lengths = stripped.str.len()
|
| 150 |
+
leading_trailing = (s.str.len() != stripped.str.len()).mean()
|
| 151 |
+
only_whitespace = s.str.fullmatch(r"\s*").fillna(False).mean()
|
| 152 |
+
non_printable = s.str.contains(r"[^\x20-\x7E]", regex=True).fillna(False).mean()
|
| 153 |
+
null_like = s.str.lower().isin([t.lower() for t in null_tokens]).mean()
|
| 154 |
+
return {
|
| 155 |
+
"avg_length": float(lengths.mean()) if len(lengths) else 0.0,
|
| 156 |
+
"min_length": int(lengths.min()) if len(lengths) else 0,
|
| 157 |
+
"max_length": int(lengths.max()) if len(lengths) else 0,
|
| 158 |
+
"pct_leading_or_trailing_space": float(leading_trailing),
|
| 159 |
+
"pct_only_whitespace": float(only_whitespace),
|
| 160 |
+
"pct_non_printable_chars": float(non_printable),
|
| 161 |
+
"pct_null_like_tokens": float(null_like),
|
| 162 |
+
}
|
| 163 |
+
|
| 164 |
+
|
| 165 |
+
def numeric_outlier_mask(series: pd.Series, whisker: float = 1.5) -> pd.Series:
|
| 166 |
+
s = pd.to_numeric(series, errors="coerce")
|
| 167 |
+
q1 = s.quantile(0.25)
|
| 168 |
+
q3 = s.quantile(0.75)
|
| 169 |
+
iqr = q3 - q1
|
| 170 |
+
if pd.isna(iqr) or iqr == 0:
|
| 171 |
+
return pd.Series([False] * len(series), index=series.index)
|
| 172 |
+
lower = q1 - whisker * iqr
|
| 173 |
+
upper = q3 + whisker * iqr
|
| 174 |
+
return (s < lower) | (s > upper)
|
| 175 |
+
|
| 176 |
+
|
| 177 |
+
def analyze_dataframe(
|
| 178 |
+
df: pd.DataFrame,
|
| 179 |
+
null_tokens: List[str],
|
| 180 |
+
outlier_whisker: float = 1.5,
|
| 181 |
+
top_n_values: int = 10,
|
| 182 |
+
) -> Tuple[Dict[str, Any], pd.DataFrame]:
|
| 183 |
+
report: Dict[str, Any] = {}
|
| 184 |
+
|
| 185 |
+
# Dataset profile
|
| 186 |
+
n_rows, n_cols = df.shape
|
| 187 |
+
mem_bytes = df.memory_usage(deep=True).sum()
|
| 188 |
+
report["dataset"] = {
|
| 189 |
+
"rows": int(n_rows),
|
| 190 |
+
"columns": int(n_cols),
|
| 191 |
+
"memory_bytes": int(mem_bytes),
|
| 192 |
+
}
|
| 193 |
+
|
| 194 |
+
# Duplicates and candidate keys
|
| 195 |
+
dup_rows = int(df.duplicated().sum())
|
| 196 |
+
unique_counts = df.nunique(dropna=True)
|
| 197 |
+
likely_keys = [
|
| 198 |
+
col for col in df.columns
|
| 199 |
+
if unique_counts.get(col, 0) == n_rows and df[col].isna().sum() == 0
|
| 200 |
+
]
|
| 201 |
+
near_unique = [
|
| 202 |
+
col for col in df.columns
|
| 203 |
+
if n_rows > 0 and (unique_counts.get(col, 0) / n_rows) >= 0.99
|
| 204 |
+
]
|
| 205 |
+
report["duplicates"] = {
|
| 206 |
+
"duplicate_row_count": dup_rows,
|
| 207 |
+
"likely_primary_keys": likely_keys,
|
| 208 |
+
"near_unique_columns": near_unique,
|
| 209 |
+
}
|
| 210 |
+
|
| 211 |
+
# Correlations
|
| 212 |
+
numeric_df = df.select_dtypes(include=[np.number])
|
| 213 |
+
corr_pairs: List[Tuple[str, str, float]] = []
|
| 214 |
+
if numeric_df.shape[1] >= 2:
|
| 215 |
+
corr = numeric_df.corr(numeric_only=True)
|
| 216 |
+
for i, c1 in enumerate(corr.columns):
|
| 217 |
+
for j, c2 in enumerate(corr.columns):
|
| 218 |
+
if j <= i:
|
| 219 |
+
continue
|
| 220 |
+
val = float(corr.iloc[i, j]) if not pd.isna(corr.iloc[i, j]) else np.nan
|
| 221 |
+
if not np.isnan(val):
|
| 222 |
+
corr_pairs.append((c1, c2, val))
|
| 223 |
+
# Sort strongest first
|
| 224 |
+
corr_pairs.sort(key=lambda x: abs(x[2]), reverse=True)
|
| 225 |
+
report["correlations"] = {
|
| 226 |
+
"top_pairs": [
|
| 227 |
+
{"col1": c1, "col2": c2, "corr": float(r)} for c1, c2, r in corr_pairs[:20]
|
| 228 |
+
]
|
| 229 |
+
}
|
| 230 |
+
|
| 231 |
+
# Column-wise analysis
|
| 232 |
+
columns: Dict[str, Any] = {}
|
| 233 |
+
outlier_masks = []
|
| 234 |
+
for col in df.columns:
|
| 235 |
+
s = df[col]
|
| 236 |
+
info: Dict[str, Any] = {}
|
| 237 |
+
info["dtype"] = str(s.dtype)
|
| 238 |
+
non_null = int(s.notna().sum())
|
| 239 |
+
missing = int(s.isna().sum())
|
| 240 |
+
info["non_null"] = non_null
|
| 241 |
+
info["missing"] = missing
|
| 242 |
+
info["missing_pct"] = float(missing / len(s)) if len(s) else 0.0
|
| 243 |
+
nunique = int(s.nunique(dropna=True))
|
| 244 |
+
info["unique"] = nunique
|
| 245 |
+
|
| 246 |
+
# Top values
|
| 247 |
+
vc = s.value_counts(dropna=True).head(top_n_values)
|
| 248 |
+
info["top_values"] = [
|
| 249 |
+
{"value": (None if pd.isna(idx) else idx), "count": int(cnt)} for idx, cnt in vc.items()
|
| 250 |
+
]
|
| 251 |
+
|
| 252 |
+
suggestions: List[str] = []
|
| 253 |
+
|
| 254 |
+
if pd.api.types.is_numeric_dtype(s):
|
| 255 |
+
desc = s.describe(percentiles=[0.25, 0.5, 0.75])
|
| 256 |
+
info["stats"] = {
|
| 257 |
+
"min": float(desc.get("min", np.nan)),
|
| 258 |
+
"max": float(desc.get("max", np.nan)),
|
| 259 |
+
"mean": float(desc.get("mean", np.nan)),
|
| 260 |
+
"std": float(desc.get("std", np.nan)),
|
| 261 |
+
"p25": float(desc.get("25%", np.nan)),
|
| 262 |
+
"p50": float(desc.get("50%", np.nan)),
|
| 263 |
+
"p75": float(desc.get("75%", np.nan)),
|
| 264 |
+
}
|
| 265 |
+
m = numeric_outlier_mask(s, whisker=outlier_whisker)
|
| 266 |
+
outlier_count = int(m.sum())
|
| 267 |
+
info["outliers_iqr_count"] = outlier_count
|
| 268 |
+
if outlier_count > 0:
|
| 269 |
+
suggestions.append("Review IQR outliers; cap or winsorize if needed")
|
| 270 |
+
outlier_masks.append(m)
|
| 271 |
+
elif pd.api.types.is_datetime64_any_dtype(s):
|
| 272 |
+
info["date_range"] = {
|
| 273 |
+
"min": (s.min().isoformat() if pd.notna(s.min()) else None),
|
| 274 |
+
"max": (s.max().isoformat() if pd.notna(s.max()) else None),
|
| 275 |
+
}
|
| 276 |
+
else:
|
| 277 |
+
# String-like / categorical
|
| 278 |
+
str_info = analyze_strings(s, null_tokens)
|
| 279 |
+
info["string_quality"] = str_info
|
| 280 |
+
if str_info["pct_leading_or_trailing_space"] > 0:
|
| 281 |
+
suggestions.append("Trim leading/trailing whitespace")
|
| 282 |
+
if str_info["pct_non_printable_chars"] > 0:
|
| 283 |
+
suggestions.append("Remove or normalize non-printable characters")
|
| 284 |
+
if str_info["pct_null_like_tokens"] > 0:
|
| 285 |
+
suggestions.append("Normalize null-like tokens to proper NA values")
|
| 286 |
+
|
| 287 |
+
# Boolean standardization suggestion
|
| 288 |
+
bool_std = standardize_booleans(s)
|
| 289 |
+
if bool_std is not None:
|
| 290 |
+
info["boolean_like_detected"] = True
|
| 291 |
+
suggestions.append("Standardize boolean values to True/False")
|
| 292 |
+
else:
|
| 293 |
+
info["boolean_like_detected"] = False
|
| 294 |
+
|
| 295 |
+
if info["missing_pct"] > 0:
|
| 296 |
+
suggestions.append("Handle missing values (impute, drop, or flag)")
|
| 297 |
+
if nunique == 1 and non_null > 0:
|
| 298 |
+
suggestions.append("Column is constant; consider dropping")
|
| 299 |
+
|
| 300 |
+
info["suggestions"] = suggestions
|
| 301 |
+
columns[col] = info
|
| 302 |
+
|
| 303 |
+
report["columns"] = columns
|
| 304 |
+
|
| 305 |
+
# Combine outliers
|
| 306 |
+
outlier_rows = pd.Series(False, index=df.index)
|
| 307 |
+
for m in outlier_masks:
|
| 308 |
+
outlier_rows = outlier_rows | m
|
| 309 |
+
outliers_df = df.loc[outlier_rows].copy()
|
| 310 |
+
|
| 311 |
+
return report, outliers_df
|
| 312 |
+
|
| 313 |
+
|
| 314 |
+
def parse_location(series: pd.Series) -> Tuple[pd.Series, pd.Series]:
|
| 315 |
+
"""Parse a 'location' column formatted as 'city, country'.
|
| 316 |
+
|
| 317 |
+
Uses a robust split on the last comma. If no comma is present,
|
| 318 |
+
treats the whole string as city and country as NA.
|
| 319 |
+
"""
|
| 320 |
+
s = series.astype(str).str.strip()
|
| 321 |
+
parts = s.str.rsplit(',', n=1, expand=True)
|
| 322 |
+
if parts.shape[1] == 1:
|
| 323 |
+
city_raw = parts.iloc[:, 0].str.strip()
|
| 324 |
+
country = pd.Series([np.nan] * len(s), index=s.index, dtype=object)
|
| 325 |
+
else:
|
| 326 |
+
city_raw = parts.iloc[:, 0].str.strip()
|
| 327 |
+
country = parts.iloc[:, 1].str.strip()
|
| 328 |
+
# Normalize empty strings to NA
|
| 329 |
+
city_raw = city_raw.replace('', np.nan)
|
| 330 |
+
country = country.replace('', np.nan)
|
| 331 |
+
return city_raw, country
|
| 332 |
+
|
| 333 |
+
|
| 334 |
+
def canonical_country(name: Any) -> Any:
|
| 335 |
+
if pd.isna(name):
|
| 336 |
+
return name
|
| 337 |
+
n = str(name).strip()
|
| 338 |
+
if not n:
|
| 339 |
+
return np.nan
|
| 340 |
+
lower = n.lower()
|
| 341 |
+
synonyms = {
|
| 342 |
+
# United States
|
| 343 |
+
"usa": "United States",
|
| 344 |
+
"u.s.a.": "United States",
|
| 345 |
+
"us": "United States",
|
| 346 |
+
"u.s.": "United States",
|
| 347 |
+
"united states": "United States",
|
| 348 |
+
"united states of america": "United States",
|
| 349 |
+
# United Kingdom
|
| 350 |
+
"uk": "United Kingdom",
|
| 351 |
+
"u.k.": "United Kingdom",
|
| 352 |
+
"britain": "United Kingdom",
|
| 353 |
+
"great britain": "United Kingdom",
|
| 354 |
+
"united kingdom": "United Kingdom",
|
| 355 |
+
# South Korea
|
| 356 |
+
"south korea": "Korea, South",
|
| 357 |
+
"republic of korea": "Korea, South",
|
| 358 |
+
# Russia
|
| 359 |
+
"russian federation": "Russia",
|
| 360 |
+
# UAE
|
| 361 |
+
"uae": "United Arab Emirates",
|
| 362 |
+
"u.a.e.": "United Arab Emirates",
|
| 363 |
+
"united arab emirates": "United Arab Emirates",
|
| 364 |
+
}
|
| 365 |
+
return synonyms.get(lower, n)
|
| 366 |
+
|
| 367 |
+
|
| 368 |
+
def builtin_city_catalog() -> Dict[str, List[str]]:
|
| 369 |
+
return {
|
| 370 |
+
"United States": [
|
| 371 |
+
"New York", "Los Angeles", "Chicago", "Houston", "Phoenix", "Philadelphia",
|
| 372 |
+
"San Antonio", "San Diego", "Dallas", "San Jose", "Austin", "Jacksonville",
|
| 373 |
+
"Fort Worth", "Columbus", "Charlotte", "San Francisco", "Indianapolis", "Seattle",
|
| 374 |
+
"Denver", "Boston",
|
| 375 |
+
],
|
| 376 |
+
"United Kingdom": [
|
| 377 |
+
"London", "Birmingham", "Glasgow", "Liverpool", "Leeds", "Sheffield", "Manchester",
|
| 378 |
+
"Edinburgh", "Bristol", "Cardiff", "Belfast",
|
| 379 |
+
],
|
| 380 |
+
"France": [
|
| 381 |
+
"Paris", "Marseille", "Lyon", "Toulouse", "Nice", "Nantes", "Strasbourg", "Montpellier",
|
| 382 |
+
"Bordeaux", "Lille", "Rennes",
|
| 383 |
+
],
|
| 384 |
+
"Germany": [
|
| 385 |
+
"Berlin", "Hamburg", "Munich", "Cologne", "Frankfurt", "Stuttgart", "Dusseldorf",
|
| 386 |
+
"Dortmund", "Essen", "Leipzig", "Bremen", "Dresden",
|
| 387 |
+
],
|
| 388 |
+
"Italy": [
|
| 389 |
+
"Rome", "Milan", "Naples", "Turin", "Palermo", "Genoa", "Bologna", "Florence", "Bari",
|
| 390 |
+
"Catania", "Verona",
|
| 391 |
+
],
|
| 392 |
+
"Spain": [
|
| 393 |
+
"Madrid", "Barcelona", "Valencia", "Seville", "Zaragoza", "Malaga", "Murcia", "Palma",
|
| 394 |
+
"Las Palmas", "Bilbao",
|
| 395 |
+
],
|
| 396 |
+
"Canada": [
|
| 397 |
+
"Toronto", "Montreal", "Vancouver", "Calgary", "Edmonton", "Ottawa", "Winnipeg",
|
| 398 |
+
"Quebec City", "Hamilton", "Kitchener",
|
| 399 |
+
],
|
| 400 |
+
"Australia": [
|
| 401 |
+
"Sydney", "Melbourne", "Brisbane", "Perth", "Adelaide", "Gold Coast", "Canberra",
|
| 402 |
+
"Newcastle", "Wollongong", "Hobart",
|
| 403 |
+
],
|
| 404 |
+
"India": [
|
| 405 |
+
"Mumbai", "Delhi", "Bangalore", "Hyderabad", "Ahmedabad", "Chennai", "Kolkata",
|
| 406 |
+
"Surat", "Pune", "Jaipur",
|
| 407 |
+
],
|
| 408 |
+
"China": [
|
| 409 |
+
"Beijing", "Shanghai", "Guangzhou", "Shenzhen", "Chengdu", "Wuhan", "Xi'an",
|
| 410 |
+
"Hangzhou", "Chongqing", "Nanjing",
|
| 411 |
+
],
|
| 412 |
+
"Japan": [
|
| 413 |
+
"Tokyo", "Yokohama", "Osaka", "Nagoya", "Sapporo", "Fukuoka", "Kobe", "Kyoto",
|
| 414 |
+
"Kawasaki", "Hiroshima",
|
| 415 |
+
],
|
| 416 |
+
"Brazil": [
|
| 417 |
+
"Sao Paulo", "Rio de Janeiro", "Salvador", "Fortaleza", "Belo Horizonte", "Manaus",
|
| 418 |
+
"Curitiba", "Recife", "Porto Alegre", "Belem",
|
| 419 |
+
],
|
| 420 |
+
"Russia": [
|
| 421 |
+
"Moscow", "Saint Petersburg", "Novosibirsk", "Yekaterinburg", "Nizhny Novgorod",
|
| 422 |
+
"Samara", "Omsk", "Kazan", "Chelyabinsk", "Rostov-on-Don",
|
| 423 |
+
],
|
| 424 |
+
"Mexico": [
|
| 425 |
+
"Mexico City", "Ecatepec", "Tijuana", "Puebla", "Guadalajara", "Monterrey", "Leon",
|
| 426 |
+
"Zapopan", "Juarez", "Nezahualcoyotl",
|
| 427 |
+
],
|
| 428 |
+
"Netherlands": [
|
| 429 |
+
"Amsterdam", "Rotterdam", "The Hague", "Utrecht", "Eindhoven", "Tilburg", "Groningen",
|
| 430 |
+
"Almere", "Breda", "Nijmegen",
|
| 431 |
+
],
|
| 432 |
+
"Sweden": [
|
| 433 |
+
"Stockholm", "Gothenburg", "Malmo", "Uppsala", "Vasteras", "Orebro", "Linkoping",
|
| 434 |
+
"Helsingborg", "Jonkoping", "Norrkoping",
|
| 435 |
+
],
|
| 436 |
+
"Norway": [
|
| 437 |
+
"Oslo", "Bergen", "Trondheim", "Stavanger", "Drammen", "Fredrikstad", "Kristiansand",
|
| 438 |
+
"Tromso", "Sandnes", "Sarpsborg",
|
| 439 |
+
],
|
| 440 |
+
"Switzerland": [
|
| 441 |
+
"Zurich", "Geneva", "Basel", "Lausanne", "Bern", "Winterthur", "Lucerne", "St. Gallen",
|
| 442 |
+
"Lugano", "Biel",
|
| 443 |
+
],
|
| 444 |
+
"Belgium": [
|
| 445 |
+
"Brussels", "Antwerp", "Ghent", "Charleroi", "Liege", "Bruges", "Namur", "Leuven",
|
| 446 |
+
"Mons", "Mechelen",
|
| 447 |
+
],
|
| 448 |
+
"South Africa": [
|
| 449 |
+
"Johannesburg", "Cape Town", "Durban", "Pretoria", "Port Elizabeth", "Bloemfontein",
|
| 450 |
+
"East London", "Polokwane", "Nelspruit", "Kimberley",
|
| 451 |
+
],
|
| 452 |
+
"Argentina": [
|
| 453 |
+
"Buenos Aires", "Cordoba", "Rosario", "Mendoza", "La Plata", "San Miguel de Tucuman",
|
| 454 |
+
"Mar del Plata", "Salta", "Santa Fe", "San Juan",
|
| 455 |
+
],
|
| 456 |
+
"Colombia": [
|
| 457 |
+
"Bogota", "Medellin", "Cali", "Barranquilla", "Cartagena", "Cúcuta", "Bucaramanga",
|
| 458 |
+
"Santa Marta", "Ibague", "Villavicencio",
|
| 459 |
+
],
|
| 460 |
+
"Turkey": [
|
| 461 |
+
"Istanbul", "Ankara", "Izmir", "Bursa", "Adana", "Gaziantep", "Konya", "Antalya",
|
| 462 |
+
"Kayseri", "Mersin",
|
| 463 |
+
],
|
| 464 |
+
"Poland": [
|
| 465 |
+
"Warsaw", "Krakow", "Lodz", "Wroclaw", "Poznan", "Gdansk", "Szczecin", "Bydgoszcz",
|
| 466 |
+
"Lublin", "Katowice",
|
| 467 |
+
],
|
| 468 |
+
"Portugal": [
|
| 469 |
+
"Lisbon", "Porto", "Vila Nova de Gaia", "Amadora", "Braga", "Coimbra", "Funchal",
|
| 470 |
+
"Almada", "Setubal", "Aveiro",
|
| 471 |
+
],
|
| 472 |
+
"Greece": [
|
| 473 |
+
"Athens", "Thessaloniki", "Patras", "Heraklion", "Larissa", "Volos", "Ioannina",
|
| 474 |
+
"Chania", "Agrinio", "Chalcis",
|
| 475 |
+
],
|
| 476 |
+
"United Arab Emirates": [
|
| 477 |
+
"Dubai", "Abu Dhabi", "Sharjah", "Ajman", "Ras Al Khaimah", "Fujairah",
|
| 478 |
+
"Umm Al Quwain", "Al Ain",
|
| 479 |
+
],
|
| 480 |
+
"Saudi Arabia": [
|
| 481 |
+
"Riyadh", "Jeddah", "Mecca", "Medina", "Dammam", "Taif", "Tabuk", "Buraydah",
|
| 482 |
+
"Khamis Mushait", "Al-Khobar",
|
| 483 |
+
],
|
| 484 |
+
"Indonesia": [
|
| 485 |
+
"Jakarta", "Surabaya", "Bandung", "Medan", "Bekasi", "Tangerang", "Depok", "Semarang",
|
| 486 |
+
"Palembang", "Makassar",
|
| 487 |
+
],
|
| 488 |
+
"Vietnam": [
|
| 489 |
+
"Ho Chi Minh City", "Hanoi", "Da Nang", "Hai Phong", "Can Tho", "Nha Trang", "Hue",
|
| 490 |
+
"Bien Hoa", "Quy Nhon", "Vinh",
|
| 491 |
+
],
|
| 492 |
+
"Thailand": [
|
| 493 |
+
"Bangkok", "Nonthaburi", "Nakhon Ratchasima", "Chiang Mai", "Hat Yai", "Udon Thani",
|
| 494 |
+
"Pak Kret", "Khon Kaen", "Surat Thani", "Phuket",
|
| 495 |
+
],
|
| 496 |
+
"Philippines": [
|
| 497 |
+
"Quezon City", "Manila", "Davao City", "Caloocan", "Cebu City", "Zamboanga City",
|
| 498 |
+
"Taguig", "Antipolo", "Pasig", "Cagayan de Oro",
|
| 499 |
+
],
|
| 500 |
+
"Korea, South": [
|
| 501 |
+
"Seoul", "Busan", "Incheon", "Daegu", "Daejeon", "Gwangju", "Suwon", "Ulsan",
|
| 502 |
+
"Changwon", "Goyang",
|
| 503 |
+
],
|
| 504 |
+
}
|
| 505 |
+
|
| 506 |
+
|
| 507 |
+
def load_city_catalog(json_path: Optional[str]) -> Dict[str, List[str]]:
|
| 508 |
+
if json_path:
|
| 509 |
+
try:
|
| 510 |
+
with open(json_path, "r", encoding="utf-8") as f:
|
| 511 |
+
data = json.load(f)
|
| 512 |
+
# Expect mapping of country -> list of cities
|
| 513 |
+
catalog: Dict[str, List[str]] = {}
|
| 514 |
+
for k, v in data.items():
|
| 515 |
+
if isinstance(v, list):
|
| 516 |
+
catalog[str(k)] = [str(x) for x in v]
|
| 517 |
+
return catalog
|
| 518 |
+
except Exception:
|
| 519 |
+
pass
|
| 520 |
+
return builtin_city_catalog()
|
| 521 |
+
|
| 522 |
+
|
| 523 |
+
def _stable_index(key: str) -> int:
|
| 524 |
+
d = hashlib.md5(key.encode("utf-8")).digest()
|
| 525 |
+
return int.from_bytes(d[:4], "big")
|
| 526 |
+
|
| 527 |
+
|
| 528 |
+
def repair_location_columns(
|
| 529 |
+
df: pd.DataFrame,
|
| 530 |
+
mode: str = "sequential",
|
| 531 |
+
city_prefix: str = "City",
|
| 532 |
+
drop_original_location: bool = False,
|
| 533 |
+
cities_json_path: Optional[str] = None,
|
| 534 |
+
) -> Tuple[pd.DataFrame, Dict[str, Any]]:
|
| 535 |
+
"""Create country-specific city names from a 'location' column.
|
| 536 |
+
|
| 537 |
+
Modes:
|
| 538 |
+
- 'sequential': for each country, assign synthetic names 'City-<COUNTRY>-001..' per unique raw city.
|
| 539 |
+
- 'annotate': if a raw city appears across multiple countries, disambiguate by appending country,
|
| 540 |
+
e.g., 'Paris (France)', 'Paris (USA)'. Raw city unique within a single country remains unchanged.
|
| 541 |
+
|
| 542 |
+
Returns cleaned DataFrame and an actions summary.
|
| 543 |
+
"""
|
| 544 |
+
actions: Dict[str, Any] = {"location": {"mode": mode, "changes": {}}}
|
| 545 |
+
if "location" not in df.columns:
|
| 546 |
+
return df, actions
|
| 547 |
+
|
| 548 |
+
city_raw, country = parse_location(df["location"])
|
| 549 |
+
out = df.copy()
|
| 550 |
+
# Canonicalize country names
|
| 551 |
+
out["country"] = country.apply(canonical_country)
|
| 552 |
+
|
| 553 |
+
# Build mapping for city names
|
| 554 |
+
raw_city_series = city_raw.fillna("")
|
| 555 |
+
# Map raw city -> set of countries
|
| 556 |
+
cc = pd.DataFrame({"city_raw": raw_city_series, "country": out["country"]})
|
| 557 |
+
cc_clean = cc.dropna(subset=["country"]) # without country we can't assign properly
|
| 558 |
+
city_to_countries: Dict[str, set] = {}
|
| 559 |
+
for city, grp in cc_clean.groupby("city_raw"):
|
| 560 |
+
city_to_countries[city] = set(grp["country"].dropna().unique())
|
| 561 |
+
|
| 562 |
+
if mode == "sequential":
|
| 563 |
+
# For each country, enumerate raw cities and assign City-<COUNTRY>-NNN
|
| 564 |
+
assignment: Dict[Tuple[str, str], str] = {}
|
| 565 |
+
for country_name, grp in cc_clean.groupby("country"):
|
| 566 |
+
unique_cities = list(pd.Series(grp["city_raw"].unique()).sort_values())
|
| 567 |
+
for idx, c in enumerate(unique_cities, start=1):
|
| 568 |
+
new_name = f"{city_prefix}-{country_name}-{idx:03d}"
|
| 569 |
+
assignment[(c, country_name)] = new_name
|
| 570 |
+
# Apply mapping; if city or country missing, keep original city_raw
|
| 571 |
+
out["city"] = [
|
| 572 |
+
assignment.get((cr if pd.notna(cr) else "", cn), cr)
|
| 573 |
+
for cr, cn in zip(city_raw, country)
|
| 574 |
+
]
|
| 575 |
+
actions["location"]["changes"] = {
|
| 576 |
+
"assigned_per_country": sum(len(v) for v in [list(g) for _, g in cc_clean.groupby("country")]),
|
| 577 |
+
"city_prefix": city_prefix,
|
| 578 |
+
}
|
| 579 |
+
elif mode == "annotate":
|
| 580 |
+
def annotate(cr: Any, cn: Any) -> Any:
|
| 581 |
+
if pd.isna(cr):
|
| 582 |
+
return cr
|
| 583 |
+
countries = city_to_countries.get(cr, set())
|
| 584 |
+
if len(countries) <= 1:
|
| 585 |
+
return cr
|
| 586 |
+
if pd.isna(cn):
|
| 587 |
+
return cr
|
| 588 |
+
return f"{cr} ({cn})"
|
| 589 |
+
|
| 590 |
+
out["city"] = [annotate(cr, cn) for cr, cn in zip(city_raw, country)]
|
| 591 |
+
actions["location"]["changes"] = {
|
| 592 |
+
"annotated_duplicates": int(sum(1 for cr in city_to_countries.values() if len(cr) > 1)),
|
| 593 |
+
}
|
| 594 |
+
elif mode == "real":
|
| 595 |
+
catalog = load_city_catalog(cities_json_path)
|
| 596 |
+
assignment: Dict[Tuple[str, str], str] = {}
|
| 597 |
+
changes: Dict[str, Any] = {}
|
| 598 |
+
for country_name, grp in cc_clean.groupby("country"):
|
| 599 |
+
names = catalog.get(country_name, [])
|
| 600 |
+
unique_cities = sorted(pd.Series(grp["city_raw"].unique()).astype(str))
|
| 601 |
+
used: set = set()
|
| 602 |
+
suffix_counter = 1
|
| 603 |
+
assigned_count = 0
|
| 604 |
+
for c in unique_cities:
|
| 605 |
+
if c == "" or pd.isna(c):
|
| 606 |
+
continue
|
| 607 |
+
if names:
|
| 608 |
+
idx = _stable_index(c.lower())
|
| 609 |
+
assigned = None
|
| 610 |
+
for offset in range(len(names)):
|
| 611 |
+
cand = names[(idx + offset) % len(names)]
|
| 612 |
+
if cand not in used:
|
| 613 |
+
assigned = cand
|
| 614 |
+
used.add(cand)
|
| 615 |
+
break
|
| 616 |
+
if assigned is None:
|
| 617 |
+
base = names[idx % len(names)]
|
| 618 |
+
assigned = f"{base} #{suffix_counter:03d}"
|
| 619 |
+
suffix_counter += 1
|
| 620 |
+
else:
|
| 621 |
+
assigned = f"{city_prefix}-{country_name}-{suffix_counter:03d}"
|
| 622 |
+
suffix_counter += 1
|
| 623 |
+
assignment[(c, country_name)] = assigned
|
| 624 |
+
assigned_count += 1
|
| 625 |
+
changes[country_name] = {"assigned": assigned_count, "catalog_size": len(names)}
|
| 626 |
+
out["city"] = [
|
| 627 |
+
assignment.get((cr if pd.notna(cr) else "", cn), cr)
|
| 628 |
+
for cr, cn in zip(city_raw, out["country"])
|
| 629 |
+
]
|
| 630 |
+
actions["location"]["changes"] = changes
|
| 631 |
+
actions["location"]["city_source"] = "real"
|
| 632 |
+
else:
|
| 633 |
+
raise ValueError("location mode must be 'sequential', 'annotate', or 'real'")
|
| 634 |
+
|
| 635 |
+
if drop_original_location:
|
| 636 |
+
out = out.drop(columns=["location"])
|
| 637 |
+
actions["location"]["dropped_original"] = True
|
| 638 |
+
else:
|
| 639 |
+
actions["location"]["dropped_original"] = False
|
| 640 |
+
|
| 641 |
+
return out, actions
|
| 642 |
+
|
| 643 |
+
|
| 644 |
+
def clean_dataframe(
|
| 645 |
+
df: pd.DataFrame,
|
| 646 |
+
null_tokens: List[str],
|
| 647 |
+
apply_trim: bool = True,
|
| 648 |
+
apply_bool_std: bool = True,
|
| 649 |
+
parse_dates_min_success: float = 0.8,
|
| 650 |
+
drop_duplicates: bool = False,
|
| 651 |
+
fix_location: bool = False,
|
| 652 |
+
location_mode: str = "sequential",
|
| 653 |
+
drop_original_location: bool = False,
|
| 654 |
+
cities_json_path: Optional[str] = None,
|
| 655 |
+
) -> Tuple[pd.DataFrame, Dict[str, Any]]:
|
| 656 |
+
cleaned = df.copy()
|
| 657 |
+
actions: Dict[str, Any] = {"columns": {}}
|
| 658 |
+
|
| 659 |
+
# Normalize strings and booleans
|
| 660 |
+
for col in cleaned.columns:
|
| 661 |
+
s = cleaned[col]
|
| 662 |
+
col_actions: List[str] = []
|
| 663 |
+
if apply_trim:
|
| 664 |
+
t = trim_and_normalize_whitespace(s)
|
| 665 |
+
if t is not None:
|
| 666 |
+
cleaned[col] = t.where(s.notna(), other=np.nan)
|
| 667 |
+
col_actions.append("trim_normalize_whitespace")
|
| 668 |
+
if apply_bool_std:
|
| 669 |
+
b = standardize_booleans(cleaned[col])
|
| 670 |
+
if b is not None:
|
| 671 |
+
cleaned[col] = b
|
| 672 |
+
col_actions.append("standardize_booleans")
|
| 673 |
+
if col_actions:
|
| 674 |
+
actions["columns"][col] = col_actions
|
| 675 |
+
|
| 676 |
+
# Parse dates
|
| 677 |
+
cleaned, parsed_rates = infer_and_parse_dates(cleaned, min_success_rate=parse_dates_min_success)
|
| 678 |
+
actions["parsed_date_rates"] = parsed_rates
|
| 679 |
+
|
| 680 |
+
# Repair location if requested
|
| 681 |
+
if fix_location:
|
| 682 |
+
cleaned, loc_actions = repair_location_columns(
|
| 683 |
+
cleaned,
|
| 684 |
+
mode=location_mode,
|
| 685 |
+
drop_original_location=drop_original_location,
|
| 686 |
+
cities_json_path=cities_json_path,
|
| 687 |
+
)
|
| 688 |
+
actions.update(loc_actions)
|
| 689 |
+
|
| 690 |
+
# Drop duplicates if requested
|
| 691 |
+
dropped = 0
|
| 692 |
+
if drop_duplicates:
|
| 693 |
+
before = len(cleaned)
|
| 694 |
+
cleaned = cleaned.drop_duplicates()
|
| 695 |
+
dropped = before - len(cleaned)
|
| 696 |
+
actions["dropped_duplicates"] = int(dropped)
|
| 697 |
+
|
| 698 |
+
return cleaned, actions
|
| 699 |
+
|
| 700 |
+
|
| 701 |
+
def generate_text_report(report: Dict[str, Any]) -> str:
|
| 702 |
+
lines: List[str] = []
|
| 703 |
+
ds = report.get("dataset", {})
|
| 704 |
+
lines.append("== Dataset ==")
|
| 705 |
+
lines.append(f"Rows: {ds.get('rows')} Columns: {ds.get('columns')} Memory(bytes): {ds.get('memory_bytes')}")
|
| 706 |
+
dup = report.get("duplicates", {})
|
| 707 |
+
lines.append(f"Duplicate rows: {dup.get('duplicate_row_count')}")
|
| 708 |
+
lines.append(f"Likely primary keys: {', '.join(dup.get('likely_primary_keys', [])) or '-'}")
|
| 709 |
+
lines.append(f"Near-unique columns: {', '.join(dup.get('near_unique_columns', [])) or '-'}")
|
| 710 |
+
|
| 711 |
+
lines.append("")
|
| 712 |
+
lines.append("== Correlations (top) ==")
|
| 713 |
+
for p in report.get("correlations", {}).get("top_pairs", []):
|
| 714 |
+
lines.append(f"{p['col1']} ~ {p['col2']}: {p['corr']:.3f}")
|
| 715 |
+
if not report.get("correlations", {}).get("top_pairs"):
|
| 716 |
+
lines.append("-")
|
| 717 |
+
|
| 718 |
+
lines.append("")
|
| 719 |
+
lines.append("== Columns ==")
|
| 720 |
+
for col, info in report.get("columns", {}).items():
|
| 721 |
+
lines.append(f"-- {col} --")
|
| 722 |
+
lines.append(f"dtype: {info.get('dtype')} missing: {info.get('missing')} ({info.get('missing_pct'):.2%}) unique: {info.get('unique')}")
|
| 723 |
+
if "stats" in info:
|
| 724 |
+
st = info["stats"]
|
| 725 |
+
lines.append(
|
| 726 |
+
f"stats: min={st.get('min')} max={st.get('max')} mean={st.get('mean')} std={st.get('std')} p25={st.get('p25')} p50={st.get('p50')} p75={st.get('p75')}"
|
| 727 |
+
)
|
| 728 |
+
lines.append(f"IQR outliers: {info.get('outliers_iqr_count', 0)}")
|
| 729 |
+
if "date_range" in info:
|
| 730 |
+
dr = info["date_range"]
|
| 731 |
+
lines.append(f"date_range: {dr.get('min')} -> {dr.get('max')}")
|
| 732 |
+
if "string_quality" in info:
|
| 733 |
+
sq = info["string_quality"]
|
| 734 |
+
lines.append(
|
| 735 |
+
"string_quality: "
|
| 736 |
+
f"avg_len={sq.get('avg_length'):.2f} min_len={sq.get('min_length')} max_len={sq.get('max_length')} "
|
| 737 |
+
f"pct_trim_needed={sq.get('pct_leading_or_trailing_space'):.2%} pct_only_ws={sq.get('pct_only_whitespace'):.2%} "
|
| 738 |
+
f"pct_non_print={sq.get('pct_non_printable_chars'):.2%} pct_null_like={sq.get('pct_null_like_tokens'):.2%}"
|
| 739 |
+
)
|
| 740 |
+
if info.get("boolean_like_detected"):
|
| 741 |
+
lines.append("boolean-like values detected")
|
| 742 |
+
if info.get("top_values"):
|
| 743 |
+
tv = ", ".join([f"{t['value']}({t['count']})" for t in info["top_values"]])
|
| 744 |
+
lines.append(f"top_values: {tv}")
|
| 745 |
+
if info.get("suggestions"):
|
| 746 |
+
lines.append("suggestions: " + "; ".join(info["suggestions"]))
|
| 747 |
+
lines.append("")
|
| 748 |
+
|
| 749 |
+
return "\n".join(lines)
|
| 750 |
+
|
| 751 |
+
|
| 752 |
+
def safe_makedirs(path: str) -> None:
|
| 753 |
+
if path and not os.path.exists(path):
|
| 754 |
+
os.makedirs(path, exist_ok=True)
|
| 755 |
+
|
| 756 |
+
|
| 757 |
+
def main(argv: Optional[List[str]] = None) -> int:
|
| 758 |
+
p = argparse.ArgumentParser(description="Read, analyze, and repair CSV data")
|
| 759 |
+
p.add_argument("-i", "--input", required=True, help="Path to input CSV file")
|
| 760 |
+
p.add_argument("-o", "--outdir", default="report", help="Directory to write reports")
|
| 761 |
+
p.add_argument("--encoding", default=None, help="Optional file encoding (auto if omitted)")
|
| 762 |
+
p.add_argument("--sep", default=None, help="CSV delimiter; if omitted, inferred by pandas")
|
| 763 |
+
p.add_argument("--sample-rows", type=int, default=None, help="Sample first N rows for quick analysis")
|
| 764 |
+
p.add_argument(
|
| 765 |
+
"--null-tokens",
|
| 766 |
+
nargs="*",
|
| 767 |
+
default=DEFAULT_NULL_TOKENS,
|
| 768 |
+
help="Additional tokens to treat as null/NA",
|
| 769 |
+
)
|
| 770 |
+
p.add_argument("--outlier-whisker", type=float, default=1.5, help="IQR whisker for outliers")
|
| 771 |
+
p.add_argument("--cleaned-csv", default=None, help="Optional path to write cleaned CSV")
|
| 772 |
+
p.add_argument("--outliers-csv", default=None, help="Optional path to write outlier rows CSV")
|
| 773 |
+
p.add_argument("--no-trim", action="store_true", help="Do not trim/normalize whitespace in strings")
|
| 774 |
+
p.add_argument("--no-bool-std", action="store_true", help="Do not standardize boolean-like strings")
|
| 775 |
+
p.add_argument("--drop-duplicates", action="store_true", help="Drop duplicate rows in cleaned output")
|
| 776 |
+
p.add_argument("--date-success", type=float, default=0.8, help="Min success rate to parse date columns")
|
| 777 |
+
# Location repair options
|
| 778 |
+
p.add_argument("--fix-location", action="store_true", help="Parse and repair 'location' -> country + city")
|
| 779 |
+
p.add_argument(
|
| 780 |
+
"--location-mode",
|
| 781 |
+
choices=["sequential", "annotate", "real"],
|
| 782 |
+
default="sequential",
|
| 783 |
+
help="City repair mode: sequential synthetic per country or annotate duplicates with country",
|
| 784 |
+
)
|
| 785 |
+
p.add_argument("--drop-location", action="store_true", help="Drop original 'location' column after repair")
|
| 786 |
+
p.add_argument("--cities-json", default=None, help="Optional JSON file mapping country -> [cities] for real mode")
|
| 787 |
+
|
| 788 |
+
args = p.parse_args(argv)
|
| 789 |
+
|
| 790 |
+
in_path = args.input
|
| 791 |
+
outdir = args.outdir
|
| 792 |
+
safe_makedirs(outdir)
|
| 793 |
+
|
| 794 |
+
try:
|
| 795 |
+
df = try_read_csv(
|
| 796 |
+
in_path,
|
| 797 |
+
encoding=args.encoding,
|
| 798 |
+
sep=args.sep,
|
| 799 |
+
nrows=args.sample_rows,
|
| 800 |
+
null_tokens=args.null_tokens,
|
| 801 |
+
)
|
| 802 |
+
except Exception as e:
|
| 803 |
+
print(f"Error reading CSV: {e}", file=sys.stderr)
|
| 804 |
+
return 2
|
| 805 |
+
|
| 806 |
+
# Analyze
|
| 807 |
+
report, outliers_df = analyze_dataframe(
|
| 808 |
+
df,
|
| 809 |
+
null_tokens=args.null_tokens,
|
| 810 |
+
outlier_whisker=args.outlier_whisker,
|
| 811 |
+
)
|
| 812 |
+
|
| 813 |
+
# Write reports
|
| 814 |
+
base = os.path.splitext(os.path.basename(in_path))[0]
|
| 815 |
+
text_path = os.path.join(outdir, f"{base}_report.txt")
|
| 816 |
+
json_path = os.path.join(outdir, f"{base}_report.json")
|
| 817 |
+
with open(text_path, "w", encoding="utf-8") as f:
|
| 818 |
+
f.write(generate_text_report(report))
|
| 819 |
+
with open(json_path, "w", encoding="utf-8") as f:
|
| 820 |
+
json.dump(report, f, indent=2, ensure_ascii=False)
|
| 821 |
+
|
| 822 |
+
# Optionally write outliers
|
| 823 |
+
if args.outliers_csv:
|
| 824 |
+
outliers_df.to_csv(args.outliers_csv, index=False)
|
| 825 |
+
|
| 826 |
+
# Optionally clean and write cleaned CSV
|
| 827 |
+
if args.cleaned_csv:
|
| 828 |
+
cleaned_df, actions = clean_dataframe(
|
| 829 |
+
df,
|
| 830 |
+
null_tokens=args.null_tokens,
|
| 831 |
+
apply_trim=not args.no_trim,
|
| 832 |
+
apply_bool_std=not args.no_bool_std,
|
| 833 |
+
parse_dates_min_success=args.date_success,
|
| 834 |
+
drop_duplicates=args.drop_duplicates,
|
| 835 |
+
fix_location=args.fix_location,
|
| 836 |
+
location_mode=args.location_mode,
|
| 837 |
+
drop_original_location=args.drop_location,
|
| 838 |
+
cities_json_path=args.cities_json,
|
| 839 |
+
)
|
| 840 |
+
cleaned_df.to_csv(args.cleaned_csv, index=False)
|
| 841 |
+
# Save cleaning actions summary
|
| 842 |
+
actions_path = os.path.join(outdir, f"{base}_clean_actions.json")
|
| 843 |
+
with open(actions_path, "w", encoding="utf-8") as f:
|
| 844 |
+
json.dump(actions, f, indent=2, ensure_ascii=False)
|
| 845 |
+
|
| 846 |
+
print(f"Wrote report: {text_path}")
|
| 847 |
+
print(f"Wrote JSON: {json_path}")
|
| 848 |
+
if args.cleaned_csv:
|
| 849 |
+
print(f"Wrote cleaned CSV: {args.cleaned_csv}")
|
| 850 |
+
if args.outliers_csv:
|
| 851 |
+
print(f"Wrote outliers CSV: {args.outliers_csv}")
|
| 852 |
+
|
| 853 |
+
return 0
|
| 854 |
+
|
| 855 |
+
|
| 856 |
+
if __name__ == "__main__":
|
| 857 |
+
raise SystemExit(main())
|
extract_countries.py
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
extract_countries.py — Extract unique country names from a CSV.
|
| 4 |
+
|
| 5 |
+
Assumptions:
|
| 6 |
+
- Preferred source is a column named 'country' if present.
|
| 7 |
+
- Otherwise, parses a 'location' column formatted roughly as 'city, country'.
|
| 8 |
+
- Trims whitespace and canonicalizes common country synonyms (via csv_repair).
|
| 9 |
+
|
| 10 |
+
Output formats:
|
| 11 |
+
- text (default): one country per line to stdout or file
|
| 12 |
+
- json: JSON array of countries
|
| 13 |
+
- csv: single-column CSV with header 'country'
|
| 14 |
+
|
| 15 |
+
Usage examples:
|
| 16 |
+
python extract_countries.py -i data.csv
|
| 17 |
+
python extract_countries.py -i data.csv --format json > countries.json
|
| 18 |
+
python extract_countries.py -i data.csv --format csv -o countries.csv
|
| 19 |
+
python extract_countries.py -i data.csv --column location --sep ';' --encoding latin-1
|
| 20 |
+
"""
|
| 21 |
+
|
| 22 |
+
from __future__ import annotations
|
| 23 |
+
|
| 24 |
+
import argparse
|
| 25 |
+
import json
|
| 26 |
+
import sys
|
| 27 |
+
from typing import List, Optional
|
| 28 |
+
|
| 29 |
+
import numpy as np
|
| 30 |
+
import pandas as pd
|
| 31 |
+
|
| 32 |
+
try:
|
| 33 |
+
# Reuse robust CSV reading and parsing helpers from csv_repair
|
| 34 |
+
from csv_repair import try_read_csv, parse_location, canonical_country
|
| 35 |
+
except Exception as e: # pragma: no cover
|
| 36 |
+
print("This script expects csv_repair.py in the same directory.", file=sys.stderr)
|
| 37 |
+
raise
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
def extract_countries(
|
| 41 |
+
df: pd.DataFrame,
|
| 42 |
+
column: str = "location",
|
| 43 |
+
prefer_country_col: bool = True,
|
| 44 |
+
dropna: bool = True,
|
| 45 |
+
) -> List[str]:
|
| 46 |
+
if prefer_country_col and "country" in df.columns:
|
| 47 |
+
s = df["country"].astype(str).str.strip().replace({"": np.nan})
|
| 48 |
+
elif column in df.columns:
|
| 49 |
+
# Parse from location
|
| 50 |
+
_, country = parse_location(df[column])
|
| 51 |
+
s = country
|
| 52 |
+
else:
|
| 53 |
+
raise ValueError(f"Column '{column}' not found and no 'country' column present")
|
| 54 |
+
|
| 55 |
+
# Canonicalize and clean
|
| 56 |
+
s = s.apply(canonical_country)
|
| 57 |
+
if dropna:
|
| 58 |
+
s = s.dropna()
|
| 59 |
+
|
| 60 |
+
# Unique sorted list (case-insensitive sort, stable)
|
| 61 |
+
uniq = pd.Series(s.unique(), dtype=object).dropna().astype(str)
|
| 62 |
+
countries = sorted(uniq.tolist(), key=lambda x: x.casefold())
|
| 63 |
+
return countries
|
| 64 |
+
|
| 65 |
+
|
| 66 |
+
def main(argv: Optional[List[str]] = None) -> int:
|
| 67 |
+
p = argparse.ArgumentParser(description="Extract unique country names from a CSV")
|
| 68 |
+
p.add_argument("-i", "--input", required=True, help="Path to input CSV")
|
| 69 |
+
p.add_argument("--encoding", default=None, help="Optional file encoding (auto if omitted)")
|
| 70 |
+
p.add_argument("--sep", default=None, help="CSV delimiter; if omitted, inferred by pandas")
|
| 71 |
+
p.add_argument("--column", default="location", help="Column to parse when 'country' not present")
|
| 72 |
+
p.add_argument(
|
| 73 |
+
"--format", choices=["text", "json", "csv"], default="text", help="Output format"
|
| 74 |
+
)
|
| 75 |
+
p.add_argument("-o", "--output", default=None, help="Optional output file; default stdout")
|
| 76 |
+
p.add_argument("--keep-nulls", action="store_true", help="Include empty/NA countries in output")
|
| 77 |
+
args = p.parse_args(argv)
|
| 78 |
+
|
| 79 |
+
# Read CSV robustly
|
| 80 |
+
df = try_read_csv(args.input, encoding=args.encoding, sep=args.sep)
|
| 81 |
+
|
| 82 |
+
try:
|
| 83 |
+
countries = extract_countries(df, column=args.column, dropna=not args.keep_nulls)
|
| 84 |
+
except Exception as e:
|
| 85 |
+
print(f"Error: {e}", file=sys.stderr)
|
| 86 |
+
return 2
|
| 87 |
+
|
| 88 |
+
out = None
|
| 89 |
+
if args.format == "text":
|
| 90 |
+
out = "\n".join(countries) + ("\n" if countries else "")
|
| 91 |
+
elif args.format == "json":
|
| 92 |
+
out = json.dumps(countries, ensure_ascii=False, indent=2)
|
| 93 |
+
elif args.format == "csv":
|
| 94 |
+
# Build a simple CSV; avoid pandas roundtrip to keep deps minimal here
|
| 95 |
+
lines = ["country"] + [c.replace("\"", "\"") for c in countries]
|
| 96 |
+
out = "\n".join(lines) + "\n"
|
| 97 |
+
|
| 98 |
+
if args.output:
|
| 99 |
+
with open(args.output, "w", encoding="utf-8") as f:
|
| 100 |
+
f.write(out)
|
| 101 |
+
else:
|
| 102 |
+
sys.stdout.write(out)
|
| 103 |
+
|
| 104 |
+
return 0
|
| 105 |
+
|
| 106 |
+
|
| 107 |
+
if __name__ == "__main__":
|
| 108 |
+
raise SystemExit(main())
|
| 109 |
+
|
geonames_fetch.py
ADDED
|
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
geonames_fetch.py — Fetch countries, provinces, and cities from GeoNames.
|
| 4 |
+
|
| 5 |
+
Outputs JSON files usable by csv_repair.py's real city mode:
|
| 6 |
+
- report/countries.json (list of country names)
|
| 7 |
+
- report/provinces_by_country.json (country -> [admin1 names])
|
| 8 |
+
- report/cities_by_country.json (country -> [top city names by population])
|
| 9 |
+
|
| 10 |
+
Sources (preferring official GeoNames dumps for reliability):
|
| 11 |
+
- Countries: https://www.geonames.org/countries/ (HTML) or
|
| 12 |
+
http://download.geonames.org/export/dump/countryInfo.txt
|
| 13 |
+
- Provinces: http://download.geonames.org/export/dump/admin1CodesASCII.txt
|
| 14 |
+
- Cities: http://download.geonames.org/export/dump/cities500.txt
|
| 15 |
+
|
| 16 |
+
Usage examples:
|
| 17 |
+
python geonames_fetch.py --outdir report
|
| 18 |
+
python geonames_fetch.py --outdir report --max-cities 30
|
| 19 |
+
python geonames_fetch.py --prefer-html-countries
|
| 20 |
+
"""
|
| 21 |
+
|
| 22 |
+
from __future__ import annotations
|
| 23 |
+
|
| 24 |
+
import argparse
|
| 25 |
+
import json
|
| 26 |
+
import os
|
| 27 |
+
import re
|
| 28 |
+
from typing import Dict, List, Tuple
|
| 29 |
+
|
| 30 |
+
import urllib.request
|
| 31 |
+
import io
|
| 32 |
+
import zipfile
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
COUNTRIES_HTML_URL = "https://www.geonames.org/countries/"
|
| 36 |
+
COUNTRYINFO_URL = "http://download.geonames.org/export/dump/countryInfo.txt"
|
| 37 |
+
ADMIN1_URL = "http://download.geonames.org/export/dump/admin1CodesASCII.txt"
|
| 38 |
+
CITIES500_URL = "http://download.geonames.org/export/dump/cities500.txt"
|
| 39 |
+
CITIES500_ZIP_URL = "http://download.geonames.org/export/dump/cities500.zip"
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
def fetch_url(url: str, timeout: int = 30) -> bytes:
|
| 43 |
+
with urllib.request.urlopen(url, timeout=timeout) as resp:
|
| 44 |
+
return resp.read()
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
def parse_countries_from_html(html: str) -> List[str]:
|
| 48 |
+
# Extract the main countries table rows; anchor text typically is country name
|
| 49 |
+
# Look for links to country pages like "/countries/<code>/" or "/<ISO>/"
|
| 50 |
+
# Fallback to table cells containing country names.
|
| 51 |
+
countries: List[str] = []
|
| 52 |
+
# Attempt to capture anchor text inside the countries table
|
| 53 |
+
# This regex finds table rows with a link where the text is the country name.
|
| 54 |
+
for m in re.finditer(r"<a[^>]+href=\"/\w{2}/?[^\"]*\"[^>]*>([^<]+)</a>", html, re.IGNORECASE):
|
| 55 |
+
name = m.group(1).strip()
|
| 56 |
+
if name and name not in countries:
|
| 57 |
+
countries.append(name)
|
| 58 |
+
# If too few extracted, try a broader pattern within the countries page
|
| 59 |
+
if len(countries) < 50:
|
| 60 |
+
for m in re.finditer(r"<a[^>]+href=\"/countries/[^\"]+\"[^>]*>([^<]+)</a>", html, re.IGNORECASE):
|
| 61 |
+
name = m.group(1).strip()
|
| 62 |
+
if name and name not in countries:
|
| 63 |
+
countries.append(name)
|
| 64 |
+
# Deduplicate and sort case-insensitively
|
| 65 |
+
countries = sorted(set(countries), key=lambda x: x.casefold())
|
| 66 |
+
return countries
|
| 67 |
+
|
| 68 |
+
|
| 69 |
+
def parse_countryinfo(text: str) -> Tuple[List[str], Dict[str, str]]:
|
| 70 |
+
# Returns (country_names, iso2_to_name)
|
| 71 |
+
names: List[str] = []
|
| 72 |
+
iso2_to_name: Dict[str, str] = {}
|
| 73 |
+
for line in text.splitlines():
|
| 74 |
+
if not line or line.startswith("#"):
|
| 75 |
+
continue
|
| 76 |
+
parts = line.split("\t")
|
| 77 |
+
# Format ref: https://download.geonames.org/export/dump/readme.txt
|
| 78 |
+
# columns: ISO, ISO3, ISO-Numeric, fips, Country, Capital, Area(in sq km), Population, Continent,
|
| 79 |
+
# tld, CurrencyCode, CurrencyName, Phone, PostalCodeFormat, PostalCodeRegex, Languages, geonameId, neighbours, EquivalentFipsCode
|
| 80 |
+
if len(parts) >= 5:
|
| 81 |
+
iso2 = parts[0].strip()
|
| 82 |
+
name = parts[4].strip()
|
| 83 |
+
if iso2 and name:
|
| 84 |
+
iso2_to_name[iso2] = name
|
| 85 |
+
names.append(name)
|
| 86 |
+
names = sorted(set(names), key=lambda x: x.casefold())
|
| 87 |
+
return names, iso2_to_name
|
| 88 |
+
|
| 89 |
+
|
| 90 |
+
def parse_admin1(text: str, iso2_to_name: Dict[str, str]) -> Dict[str, List[str]]:
|
| 91 |
+
# admin1CodesASCII.txt: code<TAB>name<TAB>asciiname<TAB>geonameid
|
| 92 |
+
by_country: Dict[str, List[str]] = {}
|
| 93 |
+
for line in text.splitlines():
|
| 94 |
+
if not line:
|
| 95 |
+
continue
|
| 96 |
+
parts = line.split("\t")
|
| 97 |
+
if len(parts) >= 4:
|
| 98 |
+
code = parts[0].strip() # e.g., US.NY or IN.KA
|
| 99 |
+
name = parts[1].strip()
|
| 100 |
+
# Extract ISO2 from code prefix
|
| 101 |
+
if "." in code:
|
| 102 |
+
iso2 = code.split(".", 1)[0]
|
| 103 |
+
country = iso2_to_name.get(iso2)
|
| 104 |
+
if country:
|
| 105 |
+
by_country.setdefault(country, []).append(name)
|
| 106 |
+
# Deduplicate and sort entries for each country
|
| 107 |
+
for c, lst in by_country.items():
|
| 108 |
+
by_country[c] = sorted(set(lst), key=lambda x: x.casefold())
|
| 109 |
+
return by_country
|
| 110 |
+
|
| 111 |
+
|
| 112 |
+
def parse_cities500(text: str, iso2_to_name: Dict[str, str], max_cities: int) -> Dict[str, List[str]]:
|
| 113 |
+
# cities500.txt columns: tab-separated; population at index 14, country code at index 8, name at index 1
|
| 114 |
+
by_country: Dict[str, List[Tuple[int, str]]] = {}
|
| 115 |
+
for line in text.splitlines():
|
| 116 |
+
if not line or line.startswith("#"):
|
| 117 |
+
continue
|
| 118 |
+
parts = line.split("\t")
|
| 119 |
+
if len(parts) >= 15:
|
| 120 |
+
name = parts[1].strip()
|
| 121 |
+
iso2 = parts[8].strip()
|
| 122 |
+
pop_str = parts[14].strip()
|
| 123 |
+
try:
|
| 124 |
+
pop = int(pop_str) if pop_str else 0
|
| 125 |
+
except ValueError:
|
| 126 |
+
pop = 0
|
| 127 |
+
country = iso2_to_name.get(iso2)
|
| 128 |
+
if country and name:
|
| 129 |
+
by_country.setdefault(country, []).append((pop, name))
|
| 130 |
+
# For each country, sort by population desc and keep top N unique names
|
| 131 |
+
out: Dict[str, List[str]] = {}
|
| 132 |
+
for country, entries in by_country.items():
|
| 133 |
+
entries.sort(key=lambda x: x[0], reverse=True)
|
| 134 |
+
seen = set()
|
| 135 |
+
names: List[str] = []
|
| 136 |
+
for pop, nm in entries:
|
| 137 |
+
if nm not in seen:
|
| 138 |
+
names.append(nm)
|
| 139 |
+
seen.add(nm)
|
| 140 |
+
if len(names) >= max_cities:
|
| 141 |
+
break
|
| 142 |
+
out[country] = names
|
| 143 |
+
return out
|
| 144 |
+
|
| 145 |
+
|
| 146 |
+
def safe_makedirs(path: str) -> None:
|
| 147 |
+
if path and not os.path.exists(path):
|
| 148 |
+
os.makedirs(path, exist_ok=True)
|
| 149 |
+
|
| 150 |
+
|
| 151 |
+
def main() -> int:
|
| 152 |
+
ap = argparse.ArgumentParser(description="Fetch GeoNames countries, provinces, and cities into JSON files")
|
| 153 |
+
ap.add_argument("--outdir", default="report", help="Directory to write JSON outputs")
|
| 154 |
+
ap.add_argument("--max-cities", type=int, default=25, help="Top N cities per country by population")
|
| 155 |
+
ap.add_argument("--prefer-html-countries", action="store_true", help="Prefer parsing countries from HTML page")
|
| 156 |
+
args = ap.parse_args()
|
| 157 |
+
|
| 158 |
+
safe_makedirs(args.outdir)
|
| 159 |
+
|
| 160 |
+
# Fetch country mappings
|
| 161 |
+
countries: List[str] = []
|
| 162 |
+
iso2_to_name: Dict[str, str] = {}
|
| 163 |
+
|
| 164 |
+
countryinfo_bytes = fetch_url(COUNTRYINFO_URL)
|
| 165 |
+
countryinfo_text = countryinfo_bytes.decode("utf-8", errors="replace")
|
| 166 |
+
countries, iso2_to_name = parse_countryinfo(countryinfo_text)
|
| 167 |
+
|
| 168 |
+
if args.prefer_html_countries:
|
| 169 |
+
try:
|
| 170 |
+
html_bytes = fetch_url(COUNTRIES_HTML_URL)
|
| 171 |
+
html_text = html_bytes.decode("utf-8", errors="replace")
|
| 172 |
+
html_countries = parse_countries_from_html(html_text)
|
| 173 |
+
# If HTML yielded enough, prefer it; otherwise keep countryInfo list
|
| 174 |
+
if len(html_countries) >= len(countries) - 5:
|
| 175 |
+
countries = html_countries
|
| 176 |
+
except Exception:
|
| 177 |
+
pass
|
| 178 |
+
|
| 179 |
+
# Fetch provinces (admin1)
|
| 180 |
+
admin1_bytes = fetch_url(ADMIN1_URL)
|
| 181 |
+
admin1_text = admin1_bytes.decode("utf-8", errors="replace")
|
| 182 |
+
provinces_by_country = parse_admin1(admin1_text, iso2_to_name)
|
| 183 |
+
|
| 184 |
+
# Fetch cities (top by population) — try .txt first, then .zip fallback
|
| 185 |
+
try:
|
| 186 |
+
cities_bytes = fetch_url(CITIES500_URL)
|
| 187 |
+
cities_text = cities_bytes.decode("utf-8", errors="replace")
|
| 188 |
+
except Exception:
|
| 189 |
+
zip_bytes = fetch_url(CITIES500_ZIP_URL)
|
| 190 |
+
with zipfile.ZipFile(io.BytesIO(zip_bytes)) as zf:
|
| 191 |
+
member_name = None
|
| 192 |
+
for n in zf.namelist():
|
| 193 |
+
if n.lower().endswith(".txt") and "cities500" in n.lower():
|
| 194 |
+
member_name = n
|
| 195 |
+
break
|
| 196 |
+
if member_name is None and zf.namelist():
|
| 197 |
+
member_name = zf.namelist()[0]
|
| 198 |
+
with zf.open(member_name) as f:
|
| 199 |
+
cities_text = f.read().decode("utf-8", errors="replace")
|
| 200 |
+
cities_by_country = parse_cities500(cities_text, iso2_to_name, args.max_cities)
|
| 201 |
+
|
| 202 |
+
# Write JSON outputs
|
| 203 |
+
with open(os.path.join(args.outdir, "countries.json"), "w", encoding="utf-8") as f:
|
| 204 |
+
json.dump(countries, f, indent=2, ensure_ascii=False)
|
| 205 |
+
with open(os.path.join(args.outdir, "provinces_by_country.json"), "w", encoding="utf-8") as f:
|
| 206 |
+
json.dump(provinces_by_country, f, indent=2, ensure_ascii=False)
|
| 207 |
+
with open(os.path.join(args.outdir, "cities_by_country.json"), "w", encoding="utf-8") as f:
|
| 208 |
+
json.dump(cities_by_country, f, indent=2, ensure_ascii=False)
|
| 209 |
+
|
| 210 |
+
print(f"Wrote: {os.path.join(args.outdir, 'countries.json')}")
|
| 211 |
+
print(f"Wrote: {os.path.join(args.outdir, 'provinces_by_country.json')}")
|
| 212 |
+
print(f"Wrote: {os.path.join(args.outdir, 'cities_by_country.json')}")
|
| 213 |
+
return 0
|
| 214 |
+
|
| 215 |
+
|
| 216 |
+
if __name__ == "__main__":
|
| 217 |
+
raise SystemExit(main())
|
publish_cleaned_to_hf.py
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
publish_cleaned_to_hf.py — Upload a single cleaned.csv to Hugging Face dataset repo.
|
| 4 |
+
|
| 5 |
+
- Ensures the dataset repo exists (public by default).
|
| 6 |
+
- Uploads the specified file (default: cleaned.csv) to the repo root or given path.
|
| 7 |
+
- Optionally uploads a minimal README.md dataset card referencing cleaned.csv.
|
| 8 |
+
|
| 9 |
+
Authentication:
|
| 10 |
+
- Set env var `HF_TOKEN` or `HUGGINGFACE_TOKEN`, or pass `--token`.
|
| 11 |
+
|
| 12 |
+
Usage:
|
| 13 |
+
python publish_cleaned_to_hf.py --file cleaned.csv --repo-id savedata101/repair_data
|
| 14 |
+
python publish_cleaned_to_hf.py --file report/cleaned.csv --path-in-repo cleaned.csv
|
| 15 |
+
python publish_cleaned_to_hf.py --add-readme --title "Repair Data (Cleaned)"
|
| 16 |
+
"""
|
| 17 |
+
|
| 18 |
+
from __future__ import annotations
|
| 19 |
+
|
| 20 |
+
import argparse
|
| 21 |
+
import os
|
| 22 |
+
import sys
|
| 23 |
+
from typing import Optional
|
| 24 |
+
|
| 25 |
+
try:
|
| 26 |
+
from huggingface_hub import HfApi
|
| 27 |
+
except Exception:
|
| 28 |
+
print("Please install huggingface_hub: pip install huggingface_hub", file=sys.stderr)
|
| 29 |
+
raise
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
def get_token(cli_token: Optional[str]) -> Optional[str]:
|
| 33 |
+
if cli_token:
|
| 34 |
+
return cli_token
|
| 35 |
+
for var in ("HF_TOKEN", "HUGGINGFACE_TOKEN"):
|
| 36 |
+
t = os.environ.get(var)
|
| 37 |
+
if t:
|
| 38 |
+
return t
|
| 39 |
+
return None
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
def main(argv=None) -> int:
|
| 43 |
+
ap = argparse.ArgumentParser(description="Upload cleaned.csv to Hugging Face dataset repo")
|
| 44 |
+
ap.add_argument("--repo-id", default="savedata101/repair_data", help="Target repo id")
|
| 45 |
+
ap.add_argument("--file", default="cleaned.csv", help="Local CSV file to upload")
|
| 46 |
+
ap.add_argument("--path-in-repo", default="", help="Destination path in repo (default root)")
|
| 47 |
+
ap.add_argument("--token", default=None, help="Hugging Face access token")
|
| 48 |
+
ap.add_argument("--private", action="store_true", help="Create as private repo (default public)")
|
| 49 |
+
ap.add_argument("--add-readme", action="store_true", help="Upload a minimal README.md dataset card")
|
| 50 |
+
ap.add_argument("--title", default="Repair Data — cleaned.csv", help="Dataset card title")
|
| 51 |
+
args = ap.parse_args(argv)
|
| 52 |
+
|
| 53 |
+
token = get_token(args.token)
|
| 54 |
+
if not token:
|
| 55 |
+
print("Missing token. Set HF_TOKEN or pass --token.", file=sys.stderr)
|
| 56 |
+
return 2
|
| 57 |
+
|
| 58 |
+
if not os.path.isfile(args.file):
|
| 59 |
+
print(f"File not found: {args.file}", file=sys.stderr)
|
| 60 |
+
return 2
|
| 61 |
+
|
| 62 |
+
api = HfApi(token=token)
|
| 63 |
+
|
| 64 |
+
# Ensure repo exists (dataset type)
|
| 65 |
+
api.create_repo(repo_id=args.repo_id, repo_type="dataset", private=args.private, exist_ok=True)
|
| 66 |
+
|
| 67 |
+
# Upload cleaned.csv
|
| 68 |
+
dest = args.path_in_repo if args.path_in_repo else os.path.basename(args.file)
|
| 69 |
+
api.upload_file(
|
| 70 |
+
path_or_fileobj=args.file,
|
| 71 |
+
repo_id=args.repo_id,
|
| 72 |
+
repo_type="dataset",
|
| 73 |
+
path_in_repo=dest,
|
| 74 |
+
commit_message=f"Upload {dest}",
|
| 75 |
+
)
|
| 76 |
+
|
| 77 |
+
# Optionally add a minimal dataset card pointing to cleaned.csv
|
| 78 |
+
if args.add_readme:
|
| 79 |
+
card = f"""---
|
| 80 |
+
license: other
|
| 81 |
+
tags:
|
| 82 |
+
- csv
|
| 83 |
+
pretty_name: {args.title}
|
| 84 |
+
---
|
| 85 |
+
|
| 86 |
+
# {args.title}
|
| 87 |
+
|
| 88 |
+
This dataset hosts a cleaned CSV file for UI preview and use with `datasets`.
|
| 89 |
+
|
| 90 |
+
## Files
|
| 91 |
+
|
| 92 |
+
- `{dest}` — main data file.
|
| 93 |
+
|
| 94 |
+
## Load with datasets
|
| 95 |
+
|
| 96 |
+
```python
|
| 97 |
+
from datasets import load_dataset
|
| 98 |
+
ds = load_dataset(
|
| 99 |
+
"{args.repo_id}",
|
| 100 |
+
data_files={{{"train": "{dest}"}}},
|
| 101 |
+
)
|
| 102 |
+
print(ds["train"]) # Dataset
|
| 103 |
+
```
|
| 104 |
+
"""
|
| 105 |
+
api.upload_file(
|
| 106 |
+
path_or_fileobj=card.encode("utf-8"),
|
| 107 |
+
repo_id=args.repo_id,
|
| 108 |
+
repo_type="dataset",
|
| 109 |
+
path_in_repo="README.md",
|
| 110 |
+
commit_message="Add dataset card",
|
| 111 |
+
)
|
| 112 |
+
|
| 113 |
+
url = f"https://huggingface.co/datasets/{args.repo_id}"
|
| 114 |
+
print(f"Uploaded {dest}. View dataset: {url}")
|
| 115 |
+
return 0
|
| 116 |
+
|
| 117 |
+
|
| 118 |
+
if __name__ == "__main__":
|
| 119 |
+
raise SystemExit(main())
|
| 120 |
+
|
publish_to_hf.py
ADDED
|
@@ -0,0 +1,148 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
publish_to_hf.py — Upload this folder to Hugging Face datasets.
|
| 4 |
+
|
| 5 |
+
Creates/updates the dataset repo `savedata101/repair_data` and uploads
|
| 6 |
+
all files from the selected folder (defaults to current directory).
|
| 7 |
+
|
| 8 |
+
Authentication:
|
| 9 |
+
- Set an env var `HF_TOKEN` or `HUGGINGFACE_TOKEN` with a Write token.
|
| 10 |
+
Alternatively pass `--token` via CLI.
|
| 11 |
+
|
| 12 |
+
Usage:
|
| 13 |
+
python publish_to_hf.py
|
| 14 |
+
python publish_to_hf.py --folder /home/nhan-softzone/repair_data
|
| 15 |
+
python publish_to_hf.py --repo-id savedata101/repair_data --private false
|
| 16 |
+
|
| 17 |
+
Notes:
|
| 18 |
+
- Requires `pip install huggingface_hub`.
|
| 19 |
+
- Large files are automatically handled with Git LFS.
|
| 20 |
+
- Excludes common cache and VCS files; customize with `--ignore`.
|
| 21 |
+
"""
|
| 22 |
+
|
| 23 |
+
from __future__ import annotations
|
| 24 |
+
|
| 25 |
+
import argparse
|
| 26 |
+
import os
|
| 27 |
+
import sys
|
| 28 |
+
from typing import List, Optional
|
| 29 |
+
from huggingface_hub import HfApi
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
def get_token(cli_token: Optional[str]) -> Optional[str]:
|
| 33 |
+
if cli_token:
|
| 34 |
+
return cli_token
|
| 35 |
+
for var in ("HF_TOKEN", "HUGGINGFACE_TOKEN"):
|
| 36 |
+
t = os.environ.get(var)
|
| 37 |
+
if t:
|
| 38 |
+
return t
|
| 39 |
+
return None
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
def main(argv: Optional[List[str]] = None) -> int:
|
| 43 |
+
ap = argparse.ArgumentParser(description="Publish folder to Hugging Face dataset repo")
|
| 44 |
+
ap.add_argument("--repo-id", default="savedata101/repair_data", help="Target repo id")
|
| 45 |
+
ap.add_argument("--folder", default=os.getcwd(), help="Local folder to upload")
|
| 46 |
+
ap.add_argument("--path-in-repo", default="", help="Prefix path inside repo")
|
| 47 |
+
ap.add_argument("--private", default=False, action="store_true", help="Create private repo")
|
| 48 |
+
ap.add_argument("--token", default=None, help="Hugging Face access token")
|
| 49 |
+
ap.add_argument(
|
| 50 |
+
"--ignore",
|
| 51 |
+
nargs="*",
|
| 52 |
+
default=["__pycache__", "*.pyc", "*.pyo", ".DS_Store", ".git", ".gitignore", "*.tmp"],
|
| 53 |
+
help="Glob patterns to ignore",
|
| 54 |
+
)
|
| 55 |
+
ap.add_argument(
|
| 56 |
+
"--message",
|
| 57 |
+
default="Publish repair_data folder",
|
| 58 |
+
help="Commit message for the upload",
|
| 59 |
+
)
|
| 60 |
+
ap.add_argument("--add-readme", action="store_true", help="Add README.md focusing preview on cleaned.csv")
|
| 61 |
+
ap.add_argument("--title", default="Repair Data (Folder)", help="Dataset card title")
|
| 62 |
+
ap.add_argument(
|
| 63 |
+
"--cleaned-path-in-repo",
|
| 64 |
+
default=None,
|
| 65 |
+
help="Path to cleaned.csv inside repo (defaults to <path-in-repo>/cleaned.csv)",
|
| 66 |
+
)
|
| 67 |
+
args = ap.parse_args(argv)
|
| 68 |
+
|
| 69 |
+
token = get_token(args.token)
|
| 70 |
+
if not token:
|
| 71 |
+
print(
|
| 72 |
+
"Missing token. Set HF_TOKEN or pass --token.\n"
|
| 73 |
+
"Obtain from https://huggingface.co/settings/tokens",
|
| 74 |
+
file=sys.stderr,
|
| 75 |
+
)
|
| 76 |
+
return 2
|
| 77 |
+
|
| 78 |
+
folder = os.path.abspath(args.folder)
|
| 79 |
+
if not os.path.isdir(folder):
|
| 80 |
+
print(f"Folder not found: {folder}", file=sys.stderr)
|
| 81 |
+
return 2
|
| 82 |
+
|
| 83 |
+
api = HfApi(token=token)
|
| 84 |
+
# Ensure repo exists (dataset type)
|
| 85 |
+
api.create_repo(repo_id=args.repo_id, repo_type="dataset", private=args.private, exist_ok=True)
|
| 86 |
+
|
| 87 |
+
# Upload folder
|
| 88 |
+
res = api.upload_folder(
|
| 89 |
+
repo_id=args.repo_id,
|
| 90 |
+
repo_type="dataset",
|
| 91 |
+
folder_path=folder,
|
| 92 |
+
path_in_repo=args.path_in_repo,
|
| 93 |
+
commit_message=args.message,
|
| 94 |
+
ignore_patterns=args.ignore,
|
| 95 |
+
)
|
| 96 |
+
|
| 97 |
+
# Optionally add a dataset card pointing preview to cleaned.csv
|
| 98 |
+
if args.add_readme:
|
| 99 |
+
cleaned_repo_path = args.cleaned_path_in_repo
|
| 100 |
+
if not cleaned_repo_path:
|
| 101 |
+
cleaned_repo_path = (
|
| 102 |
+
f"{args.path_in_repo.rstrip('/')}/cleaned.csv" if args.path_in_repo else "cleaned.csv"
|
| 103 |
+
)
|
| 104 |
+
card = f"""---
|
| 105 |
+
license: other
|
| 106 |
+
tags:
|
| 107 |
+
- csv
|
| 108 |
+
pretty_name: {args.title}
|
| 109 |
+
viewer:
|
| 110 |
+
default_path: {cleaned_repo_path}
|
| 111 |
+
---
|
| 112 |
+
|
| 113 |
+
# {args.title}
|
| 114 |
+
|
| 115 |
+
This dataset publishes the entire repair_data folder. The preview focuses on `cleaned.csv`.
|
| 116 |
+
|
| 117 |
+
## Files
|
| 118 |
+
|
| 119 |
+
- `{cleaned_repo_path}` — primary data preview.
|
| 120 |
+
|
| 121 |
+
## Load with datasets
|
| 122 |
+
|
| 123 |
+
```python
|
| 124 |
+
from datasets import load_dataset
|
| 125 |
+
ds = load_dataset(
|
| 126 |
+
"{args.repo_id}",
|
| 127 |
+
data_files={{"train": "{cleaned_repo_path}"}},
|
| 128 |
+
)
|
| 129 |
+
print(ds["train"]) # Dataset
|
| 130 |
+
```
|
| 131 |
+
"""
|
| 132 |
+
api.upload_file(
|
| 133 |
+
path_or_fileobj=card.encode("utf-8"),
|
| 134 |
+
repo_id=args.repo_id,
|
| 135 |
+
repo_type="dataset",
|
| 136 |
+
path_in_repo="README.md",
|
| 137 |
+
commit_message="Add dataset card focusing on cleaned.csv",
|
| 138 |
+
)
|
| 139 |
+
|
| 140 |
+
url = f"https://huggingface.co/datasets/{args.repo_id}"
|
| 141 |
+
print(f"Upload completed. View dataset: {url}")
|
| 142 |
+
if res and hasattr(res, "commit_url"):
|
| 143 |
+
print(f"Commit: {res.commit_url}")
|
| 144 |
+
return 0
|
| 145 |
+
|
| 146 |
+
|
| 147 |
+
if __name__ == "__main__":
|
| 148 |
+
raise SystemExit(main())
|
report/HR_Data_Clean_2020_2025_clean_actions.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"columns": {},
|
| 3 |
+
"parsed_date_rates": {
|
| 4 |
+
"Employee_ID": 0.0,
|
| 5 |
+
"Full_Name": 0.0,
|
| 6 |
+
"Department": 0.0,
|
| 7 |
+
"Job_Title": 0.0,
|
| 8 |
+
"Hire_Date": 1.0,
|
| 9 |
+
"Location": 0.0,
|
| 10 |
+
"Performance_Rating": 0.0,
|
| 11 |
+
"Experience_Years": 0.0,
|
| 12 |
+
"Status": 0.0,
|
| 13 |
+
"Work_Mode": 0.0,
|
| 14 |
+
"Salary_INR": 0.0
|
| 15 |
+
},
|
| 16 |
+
"location": {
|
| 17 |
+
"mode": "real",
|
| 18 |
+
"changes": {}
|
| 19 |
+
},
|
| 20 |
+
"dropped_duplicates": 0
|
| 21 |
+
}
|
report/HR_Data_Clean_2020_2025_report.json
ADDED
|
@@ -0,0 +1,595 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset": {
|
| 3 |
+
"rows": 1097980,
|
| 4 |
+
"columns": 11,
|
| 5 |
+
"memory_bytes": 628684098
|
| 6 |
+
},
|
| 7 |
+
"duplicates": {
|
| 8 |
+
"duplicate_row_count": 0,
|
| 9 |
+
"likely_primary_keys": [
|
| 10 |
+
"Employee_ID"
|
| 11 |
+
],
|
| 12 |
+
"near_unique_columns": [
|
| 13 |
+
"Employee_ID"
|
| 14 |
+
]
|
| 15 |
+
},
|
| 16 |
+
"correlations": {
|
| 17 |
+
"top_pairs": [
|
| 18 |
+
{
|
| 19 |
+
"col1": "Performance_Rating",
|
| 20 |
+
"col2": "Experience_Years",
|
| 21 |
+
"corr": -0.0010545147278393282
|
| 22 |
+
},
|
| 23 |
+
{
|
| 24 |
+
"col1": "Experience_Years",
|
| 25 |
+
"col2": "Salary_INR",
|
| 26 |
+
"corr": 0.000871871834144582
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"col1": "Performance_Rating",
|
| 30 |
+
"col2": "Salary_INR",
|
| 31 |
+
"corr": -0.00026529124101622165
|
| 32 |
+
}
|
| 33 |
+
]
|
| 34 |
+
},
|
| 35 |
+
"columns": {
|
| 36 |
+
"Employee_ID": {
|
| 37 |
+
"dtype": "object",
|
| 38 |
+
"non_null": 1097980,
|
| 39 |
+
"missing": 0,
|
| 40 |
+
"missing_pct": 0.0,
|
| 41 |
+
"unique": 1097980,
|
| 42 |
+
"top_values": [
|
| 43 |
+
{
|
| 44 |
+
"value": "EMP2000000",
|
| 45 |
+
"count": 1
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"value": "EMP0000003",
|
| 49 |
+
"count": 1
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"value": "EMP0000004",
|
| 53 |
+
"count": 1
|
| 54 |
+
},
|
| 55 |
+
{
|
| 56 |
+
"value": "EMP0000005",
|
| 57 |
+
"count": 1
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"value": "EMP0000006",
|
| 61 |
+
"count": 1
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"value": "EMP0000008",
|
| 65 |
+
"count": 1
|
| 66 |
+
},
|
| 67 |
+
{
|
| 68 |
+
"value": "EMP0000012",
|
| 69 |
+
"count": 1
|
| 70 |
+
},
|
| 71 |
+
{
|
| 72 |
+
"value": "EMP0000014",
|
| 73 |
+
"count": 1
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"value": "EMP0000016",
|
| 77 |
+
"count": 1
|
| 78 |
+
},
|
| 79 |
+
{
|
| 80 |
+
"value": "EMP0000017",
|
| 81 |
+
"count": 1
|
| 82 |
+
}
|
| 83 |
+
],
|
| 84 |
+
"string_quality": {
|
| 85 |
+
"avg_length": 10.0,
|
| 86 |
+
"min_length": 10,
|
| 87 |
+
"max_length": 10,
|
| 88 |
+
"pct_leading_or_trailing_space": 0.0,
|
| 89 |
+
"pct_only_whitespace": 0.0,
|
| 90 |
+
"pct_non_printable_chars": 0.0,
|
| 91 |
+
"pct_null_like_tokens": 0.0
|
| 92 |
+
},
|
| 93 |
+
"boolean_like_detected": false,
|
| 94 |
+
"suggestions": []
|
| 95 |
+
},
|
| 96 |
+
"Full_Name": {
|
| 97 |
+
"dtype": "object",
|
| 98 |
+
"non_null": 1097980,
|
| 99 |
+
"missing": 0,
|
| 100 |
+
"missing_pct": 0.0,
|
| 101 |
+
"unique": 346775,
|
| 102 |
+
"top_values": [
|
| 103 |
+
{
|
| 104 |
+
"value": "Michael Smith",
|
| 105 |
+
"count": 572
|
| 106 |
+
},
|
| 107 |
+
{
|
| 108 |
+
"value": "Michael Johnson",
|
| 109 |
+
"count": 444
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"value": "David Smith",
|
| 113 |
+
"count": 363
|
| 114 |
+
},
|
| 115 |
+
{
|
| 116 |
+
"value": "James Smith",
|
| 117 |
+
"count": 347
|
| 118 |
+
},
|
| 119 |
+
{
|
| 120 |
+
"value": "Jennifer Smith",
|
| 121 |
+
"count": 343
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"value": "Michael Williams",
|
| 125 |
+
"count": 324
|
| 126 |
+
},
|
| 127 |
+
{
|
| 128 |
+
"value": "John Smith",
|
| 129 |
+
"count": 322
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"value": "Michael Brown",
|
| 133 |
+
"count": 313
|
| 134 |
+
},
|
| 135 |
+
{
|
| 136 |
+
"value": "Robert Smith",
|
| 137 |
+
"count": 309
|
| 138 |
+
},
|
| 139 |
+
{
|
| 140 |
+
"value": "James Johnson",
|
| 141 |
+
"count": 291
|
| 142 |
+
}
|
| 143 |
+
],
|
| 144 |
+
"string_quality": {
|
| 145 |
+
"avg_length": 13.253929944079127,
|
| 146 |
+
"min_length": 5,
|
| 147 |
+
"max_length": 29,
|
| 148 |
+
"pct_leading_or_trailing_space": 0.0,
|
| 149 |
+
"pct_only_whitespace": 0.0,
|
| 150 |
+
"pct_non_printable_chars": 0.0,
|
| 151 |
+
"pct_null_like_tokens": 0.0
|
| 152 |
+
},
|
| 153 |
+
"boolean_like_detected": false,
|
| 154 |
+
"suggestions": []
|
| 155 |
+
},
|
| 156 |
+
"Department": {
|
| 157 |
+
"dtype": "object",
|
| 158 |
+
"non_null": 1097980,
|
| 159 |
+
"missing": 0,
|
| 160 |
+
"missing_pct": 0.0,
|
| 161 |
+
"unique": 7,
|
| 162 |
+
"top_values": [
|
| 163 |
+
{
|
| 164 |
+
"value": "It",
|
| 165 |
+
"count": 330067
|
| 166 |
+
},
|
| 167 |
+
{
|
| 168 |
+
"value": "Sales",
|
| 169 |
+
"count": 219403
|
| 170 |
+
},
|
| 171 |
+
{
|
| 172 |
+
"value": "Operations",
|
| 173 |
+
"count": 164909
|
| 174 |
+
},
|
| 175 |
+
{
|
| 176 |
+
"value": "Marketing",
|
| 177 |
+
"count": 132033
|
| 178 |
+
},
|
| 179 |
+
{
|
| 180 |
+
"value": "Finance",
|
| 181 |
+
"count": 109424
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"value": "Hr",
|
| 185 |
+
"count": 87271
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"value": "R&D",
|
| 189 |
+
"count": 54873
|
| 190 |
+
}
|
| 191 |
+
],
|
| 192 |
+
"string_quality": {
|
| 193 |
+
"avg_length": 5.191046284996084,
|
| 194 |
+
"min_length": 2,
|
| 195 |
+
"max_length": 10,
|
| 196 |
+
"pct_leading_or_trailing_space": 0.0,
|
| 197 |
+
"pct_only_whitespace": 0.0,
|
| 198 |
+
"pct_non_printable_chars": 0.0,
|
| 199 |
+
"pct_null_like_tokens": 0.0
|
| 200 |
+
},
|
| 201 |
+
"boolean_like_detected": false,
|
| 202 |
+
"suggestions": []
|
| 203 |
+
},
|
| 204 |
+
"Job_Title": {
|
| 205 |
+
"dtype": "object",
|
| 206 |
+
"non_null": 1097980,
|
| 207 |
+
"missing": 0,
|
| 208 |
+
"missing_pct": 0.0,
|
| 209 |
+
"unique": 29,
|
| 210 |
+
"top_values": [
|
| 211 |
+
{
|
| 212 |
+
"value": "Software Engineer",
|
| 213 |
+
"count": 164743
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"value": "Sales Executive",
|
| 217 |
+
"count": 109778
|
| 218 |
+
},
|
| 219 |
+
{
|
| 220 |
+
"value": "Operations Executive",
|
| 221 |
+
"count": 82671
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"value": "Marketing Executive",
|
| 225 |
+
"count": 66145
|
| 226 |
+
},
|
| 227 |
+
{
|
| 228 |
+
"value": "Data Analyst",
|
| 229 |
+
"count": 66037
|
| 230 |
+
},
|
| 231 |
+
{
|
| 232 |
+
"value": "Account Manager",
|
| 233 |
+
"count": 65824
|
| 234 |
+
},
|
| 235 |
+
{
|
| 236 |
+
"value": "Accountant",
|
| 237 |
+
"count": 55058
|
| 238 |
+
},
|
| 239 |
+
{
|
| 240 |
+
"value": "Devops Engineer",
|
| 241 |
+
"count": 49565
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"value": "Logistics Coordinator",
|
| 245 |
+
"count": 49288
|
| 246 |
+
},
|
| 247 |
+
{
|
| 248 |
+
"value": "Hr Executive",
|
| 249 |
+
"count": 43400
|
| 250 |
+
}
|
| 251 |
+
],
|
| 252 |
+
"string_quality": {
|
| 253 |
+
"avg_length": 16.200269585966957,
|
| 254 |
+
"min_length": 3,
|
| 255 |
+
"max_length": 29,
|
| 256 |
+
"pct_leading_or_trailing_space": 0.0,
|
| 257 |
+
"pct_only_whitespace": 0.0,
|
| 258 |
+
"pct_non_printable_chars": 0.0,
|
| 259 |
+
"pct_null_like_tokens": 0.0
|
| 260 |
+
},
|
| 261 |
+
"boolean_like_detected": false,
|
| 262 |
+
"suggestions": []
|
| 263 |
+
},
|
| 264 |
+
"Hire_Date": {
|
| 265 |
+
"dtype": "object",
|
| 266 |
+
"non_null": 1097980,
|
| 267 |
+
"missing": 0,
|
| 268 |
+
"missing_pct": 0.0,
|
| 269 |
+
"unique": 2052,
|
| 270 |
+
"top_values": [
|
| 271 |
+
{
|
| 272 |
+
"value": "2022-10-31",
|
| 273 |
+
"count": 622
|
| 274 |
+
},
|
| 275 |
+
{
|
| 276 |
+
"value": "2023-02-08",
|
| 277 |
+
"count": 620
|
| 278 |
+
},
|
| 279 |
+
{
|
| 280 |
+
"value": "2020-09-10",
|
| 281 |
+
"count": 617
|
| 282 |
+
},
|
| 283 |
+
{
|
| 284 |
+
"value": "2020-11-13",
|
| 285 |
+
"count": 616
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"value": "2023-02-11",
|
| 289 |
+
"count": 614
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"value": "2023-12-11",
|
| 293 |
+
"count": 614
|
| 294 |
+
},
|
| 295 |
+
{
|
| 296 |
+
"value": "2024-01-20",
|
| 297 |
+
"count": 610
|
| 298 |
+
},
|
| 299 |
+
{
|
| 300 |
+
"value": "2021-04-02",
|
| 301 |
+
"count": 608
|
| 302 |
+
},
|
| 303 |
+
{
|
| 304 |
+
"value": "2022-07-23",
|
| 305 |
+
"count": 608
|
| 306 |
+
},
|
| 307 |
+
{
|
| 308 |
+
"value": "2021-06-09",
|
| 309 |
+
"count": 607
|
| 310 |
+
}
|
| 311 |
+
],
|
| 312 |
+
"string_quality": {
|
| 313 |
+
"avg_length": 10.0,
|
| 314 |
+
"min_length": 10,
|
| 315 |
+
"max_length": 10,
|
| 316 |
+
"pct_leading_or_trailing_space": 0.0,
|
| 317 |
+
"pct_only_whitespace": 0.0,
|
| 318 |
+
"pct_non_printable_chars": 0.0,
|
| 319 |
+
"pct_null_like_tokens": 0.0
|
| 320 |
+
},
|
| 321 |
+
"boolean_like_detected": false,
|
| 322 |
+
"suggestions": []
|
| 323 |
+
},
|
| 324 |
+
"Location": {
|
| 325 |
+
"dtype": "object",
|
| 326 |
+
"non_null": 1097980,
|
| 327 |
+
"missing": 0,
|
| 328 |
+
"missing_pct": 0.0,
|
| 329 |
+
"unique": 950899,
|
| 330 |
+
"top_values": [
|
| 331 |
+
{
|
| 332 |
+
"value": "Port Robert, Korea",
|
| 333 |
+
"count": 11
|
| 334 |
+
},
|
| 335 |
+
{
|
| 336 |
+
"value": "Lake David, Saint Lucia",
|
| 337 |
+
"count": 11
|
| 338 |
+
},
|
| 339 |
+
{
|
| 340 |
+
"value": "West Michael, Sao Tome And Principe",
|
| 341 |
+
"count": 11
|
| 342 |
+
},
|
| 343 |
+
{
|
| 344 |
+
"value": "New Christopher, Congo",
|
| 345 |
+
"count": 11
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"value": "East Michael, Tajikistan",
|
| 349 |
+
"count": 10
|
| 350 |
+
},
|
| 351 |
+
{
|
| 352 |
+
"value": "Port Michael, Oman",
|
| 353 |
+
"count": 10
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"value": "West Michael, Korea",
|
| 357 |
+
"count": 10
|
| 358 |
+
},
|
| 359 |
+
{
|
| 360 |
+
"value": "East Michael, Albania",
|
| 361 |
+
"count": 10
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"value": "East Michael, British Indian Ocean Territory (Chagos Archipelago)",
|
| 365 |
+
"count": 10
|
| 366 |
+
},
|
| 367 |
+
{
|
| 368 |
+
"value": "West Michael, Zambia",
|
| 369 |
+
"count": 10
|
| 370 |
+
}
|
| 371 |
+
],
|
| 372 |
+
"string_quality": {
|
| 373 |
+
"avg_length": 24.68841873258165,
|
| 374 |
+
"min_length": 11,
|
| 375 |
+
"max_length": 76,
|
| 376 |
+
"pct_leading_or_trailing_space": 0.0,
|
| 377 |
+
"pct_only_whitespace": 0.0,
|
| 378 |
+
"pct_non_printable_chars": 0.0,
|
| 379 |
+
"pct_null_like_tokens": 0.0
|
| 380 |
+
},
|
| 381 |
+
"boolean_like_detected": false,
|
| 382 |
+
"suggestions": []
|
| 383 |
+
},
|
| 384 |
+
"Performance_Rating": {
|
| 385 |
+
"dtype": "float64",
|
| 386 |
+
"non_null": 1097980,
|
| 387 |
+
"missing": 0,
|
| 388 |
+
"missing_pct": 0.0,
|
| 389 |
+
"unique": 5,
|
| 390 |
+
"top_values": [
|
| 391 |
+
{
|
| 392 |
+
"value": 4.0,
|
| 393 |
+
"count": 220046
|
| 394 |
+
},
|
| 395 |
+
{
|
| 396 |
+
"value": 3.0,
|
| 397 |
+
"count": 219536
|
| 398 |
+
},
|
| 399 |
+
{
|
| 400 |
+
"value": 2.0,
|
| 401 |
+
"count": 219520
|
| 402 |
+
},
|
| 403 |
+
{
|
| 404 |
+
"value": 1.0,
|
| 405 |
+
"count": 219447
|
| 406 |
+
},
|
| 407 |
+
{
|
| 408 |
+
"value": 5.0,
|
| 409 |
+
"count": 219431
|
| 410 |
+
}
|
| 411 |
+
],
|
| 412 |
+
"stats": {
|
| 413 |
+
"min": 1.0,
|
| 414 |
+
"max": 5.0,
|
| 415 |
+
"mean": 3.0004499171205303,
|
| 416 |
+
"std": 1.4139300990681227,
|
| 417 |
+
"p25": 2.0,
|
| 418 |
+
"p50": 3.0,
|
| 419 |
+
"p75": 4.0
|
| 420 |
+
},
|
| 421 |
+
"outliers_iqr_count": 0,
|
| 422 |
+
"suggestions": []
|
| 423 |
+
},
|
| 424 |
+
"Experience_Years": {
|
| 425 |
+
"dtype": "float64",
|
| 426 |
+
"non_null": 1097980,
|
| 427 |
+
"missing": 0,
|
| 428 |
+
"missing_pct": 0.0,
|
| 429 |
+
"unique": 6,
|
| 430 |
+
"top_values": [
|
| 431 |
+
{
|
| 432 |
+
"value": 3.0,
|
| 433 |
+
"count": 200522
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"value": 2.0,
|
| 437 |
+
"count": 199924
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"value": 4.0,
|
| 441 |
+
"count": 199866
|
| 442 |
+
},
|
| 443 |
+
{
|
| 444 |
+
"value": 1.0,
|
| 445 |
+
"count": 199162
|
| 446 |
+
},
|
| 447 |
+
{
|
| 448 |
+
"value": 0.0,
|
| 449 |
+
"count": 198775
|
| 450 |
+
},
|
| 451 |
+
{
|
| 452 |
+
"value": 5.0,
|
| 453 |
+
"count": 99731
|
| 454 |
+
}
|
| 455 |
+
],
|
| 456 |
+
"stats": {
|
| 457 |
+
"min": 0.0,
|
| 458 |
+
"max": 5.0,
|
| 459 |
+
"mean": 2.275719958469189,
|
| 460 |
+
"std": 1.599297042511558,
|
| 461 |
+
"p25": 1.0,
|
| 462 |
+
"p50": 2.0,
|
| 463 |
+
"p75": 4.0
|
| 464 |
+
},
|
| 465 |
+
"outliers_iqr_count": 0,
|
| 466 |
+
"suggestions": []
|
| 467 |
+
},
|
| 468 |
+
"Status": {
|
| 469 |
+
"dtype": "object",
|
| 470 |
+
"non_null": 1097980,
|
| 471 |
+
"missing": 0,
|
| 472 |
+
"missing_pct": 0.0,
|
| 473 |
+
"unique": 4,
|
| 474 |
+
"top_values": [
|
| 475 |
+
{
|
| 476 |
+
"value": "Active",
|
| 477 |
+
"count": 769236
|
| 478 |
+
},
|
| 479 |
+
{
|
| 480 |
+
"value": "Resigned",
|
| 481 |
+
"count": 218959
|
| 482 |
+
},
|
| 483 |
+
{
|
| 484 |
+
"value": "Terminated",
|
| 485 |
+
"count": 54983
|
| 486 |
+
},
|
| 487 |
+
{
|
| 488 |
+
"value": "Retired",
|
| 489 |
+
"count": 54802
|
| 490 |
+
}
|
| 491 |
+
],
|
| 492 |
+
"string_quality": {
|
| 493 |
+
"avg_length": 6.649057359879051,
|
| 494 |
+
"min_length": 6,
|
| 495 |
+
"max_length": 10,
|
| 496 |
+
"pct_leading_or_trailing_space": 0.0,
|
| 497 |
+
"pct_only_whitespace": 0.0,
|
| 498 |
+
"pct_non_printable_chars": 0.0,
|
| 499 |
+
"pct_null_like_tokens": 0.0
|
| 500 |
+
},
|
| 501 |
+
"boolean_like_detected": false,
|
| 502 |
+
"suggestions": []
|
| 503 |
+
},
|
| 504 |
+
"Work_Mode": {
|
| 505 |
+
"dtype": "object",
|
| 506 |
+
"non_null": 1097980,
|
| 507 |
+
"missing": 0,
|
| 508 |
+
"missing_pct": 0.0,
|
| 509 |
+
"unique": 2,
|
| 510 |
+
"top_values": [
|
| 511 |
+
{
|
| 512 |
+
"value": "On-Site",
|
| 513 |
+
"count": 658381
|
| 514 |
+
},
|
| 515 |
+
{
|
| 516 |
+
"value": "Remote",
|
| 517 |
+
"count": 439599
|
| 518 |
+
}
|
| 519 |
+
],
|
| 520 |
+
"string_quality": {
|
| 521 |
+
"avg_length": 6.599629319295434,
|
| 522 |
+
"min_length": 6,
|
| 523 |
+
"max_length": 7,
|
| 524 |
+
"pct_leading_or_trailing_space": 0.0,
|
| 525 |
+
"pct_only_whitespace": 0.0,
|
| 526 |
+
"pct_non_printable_chars": 0.0,
|
| 527 |
+
"pct_null_like_tokens": 0.0
|
| 528 |
+
},
|
| 529 |
+
"boolean_like_detected": false,
|
| 530 |
+
"suggestions": []
|
| 531 |
+
},
|
| 532 |
+
"Salary_INR": {
|
| 533 |
+
"dtype": "float64",
|
| 534 |
+
"non_null": 1097980,
|
| 535 |
+
"missing": 0,
|
| 536 |
+
"missing_pct": 0.0,
|
| 537 |
+
"unique": 700838,
|
| 538 |
+
"top_values": [
|
| 539 |
+
{
|
| 540 |
+
"value": 720272.0,
|
| 541 |
+
"count": 10
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"value": 619830.0,
|
| 545 |
+
"count": 10
|
| 546 |
+
},
|
| 547 |
+
{
|
| 548 |
+
"value": 806892.0,
|
| 549 |
+
"count": 9
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"value": 659914.0,
|
| 553 |
+
"count": 9
|
| 554 |
+
},
|
| 555 |
+
{
|
| 556 |
+
"value": 792446.0,
|
| 557 |
+
"count": 9
|
| 558 |
+
},
|
| 559 |
+
{
|
| 560 |
+
"value": 719356.0,
|
| 561 |
+
"count": 9
|
| 562 |
+
},
|
| 563 |
+
{
|
| 564 |
+
"value": 646723.0,
|
| 565 |
+
"count": 9
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"value": 572454.0,
|
| 569 |
+
"count": 9
|
| 570 |
+
},
|
| 571 |
+
{
|
| 572 |
+
"value": 893682.0,
|
| 573 |
+
"count": 8
|
| 574 |
+
},
|
| 575 |
+
{
|
| 576 |
+
"value": 429063.0,
|
| 577 |
+
"count": 8
|
| 578 |
+
}
|
| 579 |
+
],
|
| 580 |
+
"stats": {
|
| 581 |
+
"min": 300000.0,
|
| 582 |
+
"max": 2999831.0,
|
| 583 |
+
"mean": 896822.4502841582,
|
| 584 |
+
"std": 402728.69922005077,
|
| 585 |
+
"p25": 616378.0,
|
| 586 |
+
"p50": 810651.0,
|
| 587 |
+
"p75": 1073492.0
|
| 588 |
+
},
|
| 589 |
+
"outliers_iqr_count": 38181,
|
| 590 |
+
"suggestions": [
|
| 591 |
+
"Review IQR outliers; cap or winsorize if needed"
|
| 592 |
+
]
|
| 593 |
+
}
|
| 594 |
+
}
|
| 595 |
+
}
|
report/HR_Data_Clean_2020_2025_report.txt
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
== Dataset ==
|
| 2 |
+
Rows: 1097980 Columns: 11 Memory(bytes): 628684098
|
| 3 |
+
Duplicate rows: 0
|
| 4 |
+
Likely primary keys: Employee_ID
|
| 5 |
+
Near-unique columns: Employee_ID
|
| 6 |
+
|
| 7 |
+
== Correlations (top) ==
|
| 8 |
+
Performance_Rating ~ Experience_Years: -0.001
|
| 9 |
+
Experience_Years ~ Salary_INR: 0.001
|
| 10 |
+
Performance_Rating ~ Salary_INR: -0.000
|
| 11 |
+
|
| 12 |
+
== Columns ==
|
| 13 |
+
-- Employee_ID --
|
| 14 |
+
dtype: object missing: 0 (0.00%) unique: 1097980
|
| 15 |
+
string_quality: avg_len=10.00 min_len=10 max_len=10 pct_trim_needed=0.00% pct_only_ws=0.00% pct_non_print=0.00% pct_null_like=0.00%
|
| 16 |
+
top_values: EMP2000000(1), EMP0000003(1), EMP0000004(1), EMP0000005(1), EMP0000006(1), EMP0000008(1), EMP0000012(1), EMP0000014(1), EMP0000016(1), EMP0000017(1)
|
| 17 |
+
|
| 18 |
+
-- Full_Name --
|
| 19 |
+
dtype: object missing: 0 (0.00%) unique: 346775
|
| 20 |
+
string_quality: avg_len=13.25 min_len=5 max_len=29 pct_trim_needed=0.00% pct_only_ws=0.00% pct_non_print=0.00% pct_null_like=0.00%
|
| 21 |
+
top_values: Michael Smith(572), Michael Johnson(444), David Smith(363), James Smith(347), Jennifer Smith(343), Michael Williams(324), John Smith(322), Michael Brown(313), Robert Smith(309), James Johnson(291)
|
| 22 |
+
|
| 23 |
+
-- Department --
|
| 24 |
+
dtype: object missing: 0 (0.00%) unique: 7
|
| 25 |
+
string_quality: avg_len=5.19 min_len=2 max_len=10 pct_trim_needed=0.00% pct_only_ws=0.00% pct_non_print=0.00% pct_null_like=0.00%
|
| 26 |
+
top_values: It(330067), Sales(219403), Operations(164909), Marketing(132033), Finance(109424), Hr(87271), R&D(54873)
|
| 27 |
+
|
| 28 |
+
-- Job_Title --
|
| 29 |
+
dtype: object missing: 0 (0.00%) unique: 29
|
| 30 |
+
string_quality: avg_len=16.20 min_len=3 max_len=29 pct_trim_needed=0.00% pct_only_ws=0.00% pct_non_print=0.00% pct_null_like=0.00%
|
| 31 |
+
top_values: Software Engineer(164743), Sales Executive(109778), Operations Executive(82671), Marketing Executive(66145), Data Analyst(66037), Account Manager(65824), Accountant(55058), Devops Engineer(49565), Logistics Coordinator(49288), Hr Executive(43400)
|
| 32 |
+
|
| 33 |
+
-- Hire_Date --
|
| 34 |
+
dtype: object missing: 0 (0.00%) unique: 2052
|
| 35 |
+
string_quality: avg_len=10.00 min_len=10 max_len=10 pct_trim_needed=0.00% pct_only_ws=0.00% pct_non_print=0.00% pct_null_like=0.00%
|
| 36 |
+
top_values: 2022-10-31(622), 2023-02-08(620), 2020-09-10(617), 2020-11-13(616), 2023-02-11(614), 2023-12-11(614), 2024-01-20(610), 2021-04-02(608), 2022-07-23(608), 2021-06-09(607)
|
| 37 |
+
|
| 38 |
+
-- Location --
|
| 39 |
+
dtype: object missing: 0 (0.00%) unique: 950899
|
| 40 |
+
string_quality: avg_len=24.69 min_len=11 max_len=76 pct_trim_needed=0.00% pct_only_ws=0.00% pct_non_print=0.00% pct_null_like=0.00%
|
| 41 |
+
top_values: Port Robert, Korea(11), Lake David, Saint Lucia(11), West Michael, Sao Tome And Principe(11), New Christopher, Congo(11), East Michael, Tajikistan(10), Port Michael, Oman(10), West Michael, Korea(10), East Michael, Albania(10), East Michael, British Indian Ocean Territory (Chagos Archipelago)(10), West Michael, Zambia(10)
|
| 42 |
+
|
| 43 |
+
-- Performance_Rating --
|
| 44 |
+
dtype: float64 missing: 0 (0.00%) unique: 5
|
| 45 |
+
stats: min=1.0 max=5.0 mean=3.0004499171205303 std=1.4139300990681227 p25=2.0 p50=3.0 p75=4.0
|
| 46 |
+
IQR outliers: 0
|
| 47 |
+
top_values: 4.0(220046), 3.0(219536), 2.0(219520), 1.0(219447), 5.0(219431)
|
| 48 |
+
|
| 49 |
+
-- Experience_Years --
|
| 50 |
+
dtype: float64 missing: 0 (0.00%) unique: 6
|
| 51 |
+
stats: min=0.0 max=5.0 mean=2.275719958469189 std=1.599297042511558 p25=1.0 p50=2.0 p75=4.0
|
| 52 |
+
IQR outliers: 0
|
| 53 |
+
top_values: 3.0(200522), 2.0(199924), 4.0(199866), 1.0(199162), 0.0(198775), 5.0(99731)
|
| 54 |
+
|
| 55 |
+
-- Status --
|
| 56 |
+
dtype: object missing: 0 (0.00%) unique: 4
|
| 57 |
+
string_quality: avg_len=6.65 min_len=6 max_len=10 pct_trim_needed=0.00% pct_only_ws=0.00% pct_non_print=0.00% pct_null_like=0.00%
|
| 58 |
+
top_values: Active(769236), Resigned(218959), Terminated(54983), Retired(54802)
|
| 59 |
+
|
| 60 |
+
-- Work_Mode --
|
| 61 |
+
dtype: object missing: 0 (0.00%) unique: 2
|
| 62 |
+
string_quality: avg_len=6.60 min_len=6 max_len=7 pct_trim_needed=0.00% pct_only_ws=0.00% pct_non_print=0.00% pct_null_like=0.00%
|
| 63 |
+
top_values: On-Site(658381), Remote(439599)
|
| 64 |
+
|
| 65 |
+
-- Salary_INR --
|
| 66 |
+
dtype: float64 missing: 0 (0.00%) unique: 700838
|
| 67 |
+
stats: min=300000.0 max=2999831.0 mean=896822.4502841582 std=402728.69922005077 p25=616378.0 p50=810651.0 p75=1073492.0
|
| 68 |
+
IQR outliers: 38181
|
| 69 |
+
top_values: 720272.0(10), 619830.0(10), 806892.0(9), 659914.0(9), 792446.0(9), 719356.0(9), 646723.0(9), 572454.0(9), 893682.0(8), 429063.0(8)
|
| 70 |
+
suggestions: Review IQR outliers; cap or winsorize if needed
|
report/cities_by_country.json
ADDED
|
@@ -0,0 +1,5749 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"Andorra": [
|
| 3 |
+
"Andorra la Vella",
|
| 4 |
+
"les Escaldes",
|
| 5 |
+
"Encamp",
|
| 6 |
+
"Sant Julià de Lòria",
|
| 7 |
+
"la Massana",
|
| 8 |
+
"Canillo",
|
| 9 |
+
"Ordino",
|
| 10 |
+
"Pas de la Casa",
|
| 11 |
+
"Arinsal",
|
| 12 |
+
"Vila",
|
| 13 |
+
"El Tarter",
|
| 14 |
+
"Aixirivall",
|
| 15 |
+
"Anyós",
|
| 16 |
+
"Sispony",
|
| 17 |
+
"Soldeu",
|
| 18 |
+
"l'Aldosa"
|
| 19 |
+
],
|
| 20 |
+
"United Arab Emirates": [
|
| 21 |
+
"Dubai",
|
| 22 |
+
"Abu Dhabi",
|
| 23 |
+
"Sharjah",
|
| 24 |
+
"Al Ain City",
|
| 25 |
+
"Ajman City",
|
| 26 |
+
"Dayrah",
|
| 27 |
+
"Ras Al Khaimah City",
|
| 28 |
+
"Musaffah",
|
| 29 |
+
"Jebel Ali",
|
| 30 |
+
"Business Bay",
|
| 31 |
+
"Dubai Investments Park",
|
| 32 |
+
"International City",
|
| 33 |
+
"Dubai Marina",
|
| 34 |
+
"Al Fujairah City",
|
| 35 |
+
"Al Majaz",
|
| 36 |
+
"Warīsān",
|
| 37 |
+
"Dubai Silicon Oasis",
|
| 38 |
+
"Ar Rumaylah",
|
| 39 |
+
"Khalifah A City",
|
| 40 |
+
"Mohammed Bin Zayed City",
|
| 41 |
+
"Hawr al ‘Anz",
|
| 42 |
+
"Reef Al Fujairah City",
|
| 43 |
+
"Bani Yas City",
|
| 44 |
+
"Dubai Festival City",
|
| 45 |
+
"Al Karama"
|
| 46 |
+
],
|
| 47 |
+
"Afghanistan": [
|
| 48 |
+
"Kabul",
|
| 49 |
+
"Herāt",
|
| 50 |
+
"Mazār-e Sharīf",
|
| 51 |
+
"Kandahār",
|
| 52 |
+
"Jalālābād",
|
| 53 |
+
"Kunduz",
|
| 54 |
+
"Ghazni",
|
| 55 |
+
"Balkh",
|
| 56 |
+
"Baghlān",
|
| 57 |
+
"Gardez",
|
| 58 |
+
"Khōst",
|
| 59 |
+
"Maymana",
|
| 60 |
+
"Khanabad",
|
| 61 |
+
"Bāzār-e Yakāwlang",
|
| 62 |
+
"Bāzārak",
|
| 63 |
+
"Khulm",
|
| 64 |
+
"Taloqan",
|
| 65 |
+
"Bāmyān",
|
| 66 |
+
"Pul-e Khumrī",
|
| 67 |
+
"Shibirghān",
|
| 68 |
+
"Charikar",
|
| 69 |
+
"Sar-e Pul",
|
| 70 |
+
"Zaranj",
|
| 71 |
+
"Paghmān",
|
| 72 |
+
"Asadābād"
|
| 73 |
+
],
|
| 74 |
+
"Antigua and Barbuda": [
|
| 75 |
+
"Saint John’s",
|
| 76 |
+
"All Saints",
|
| 77 |
+
"Piggotts",
|
| 78 |
+
"Liberta",
|
| 79 |
+
"Bolands",
|
| 80 |
+
"Potters Village",
|
| 81 |
+
"Codrington",
|
| 82 |
+
"Willikies",
|
| 83 |
+
"Bendals",
|
| 84 |
+
"Parham",
|
| 85 |
+
"Freemans",
|
| 86 |
+
"Jolly Harbour",
|
| 87 |
+
"Carlisle",
|
| 88 |
+
"Sea View Farm",
|
| 89 |
+
"Cedar Grove",
|
| 90 |
+
"Urlings",
|
| 91 |
+
"Swetes",
|
| 92 |
+
"English Harbour Town",
|
| 93 |
+
"Old Road",
|
| 94 |
+
"Freetown",
|
| 95 |
+
"Falmouth",
|
| 96 |
+
"Jennings",
|
| 97 |
+
"Pares",
|
| 98 |
+
"Grays Hill",
|
| 99 |
+
"Barnes Hill"
|
| 100 |
+
],
|
| 101 |
+
"Anguilla": [
|
| 102 |
+
"The Valley",
|
| 103 |
+
"Blowing Point Village",
|
| 104 |
+
"Sandy Hill",
|
| 105 |
+
"East End Village",
|
| 106 |
+
"Sandy Ground Village",
|
| 107 |
+
"West End Village",
|
| 108 |
+
"The Quarter",
|
| 109 |
+
"Farrington",
|
| 110 |
+
"Stoney Ground",
|
| 111 |
+
"South Hill Village",
|
| 112 |
+
"North Side",
|
| 113 |
+
"North Hill Village",
|
| 114 |
+
"Island Harbour",
|
| 115 |
+
"George Hill"
|
| 116 |
+
],
|
| 117 |
+
"Albania": [
|
| 118 |
+
"Tirana",
|
| 119 |
+
"Durrës",
|
| 120 |
+
"Vlorë",
|
| 121 |
+
"Elbasan",
|
| 122 |
+
"Shkodër",
|
| 123 |
+
"Lushnjë",
|
| 124 |
+
"Berat",
|
| 125 |
+
"Fier-Çifçi",
|
| 126 |
+
"Korçë",
|
| 127 |
+
"Fier",
|
| 128 |
+
"Krujë",
|
| 129 |
+
"Pogradec",
|
| 130 |
+
"Kukës",
|
| 131 |
+
"Kuçovë",
|
| 132 |
+
"Kavajë",
|
| 133 |
+
"Bulqizë",
|
| 134 |
+
"Gjirokastër",
|
| 135 |
+
"Librazhd",
|
| 136 |
+
"Patos Fshat",
|
| 137 |
+
"Sarandë",
|
| 138 |
+
"Lezhë",
|
| 139 |
+
"Peqin",
|
| 140 |
+
"Patos",
|
| 141 |
+
"Peshkopi",
|
| 142 |
+
"Cërrik"
|
| 143 |
+
],
|
| 144 |
+
"Armenia": [
|
| 145 |
+
"Yerevan",
|
| 146 |
+
"Malatia-Sebastia",
|
| 147 |
+
"Shengavit",
|
| 148 |
+
"Nor Nork",
|
| 149 |
+
"Kentron",
|
| 150 |
+
"Erebuni",
|
| 151 |
+
"Ajapnyak",
|
| 152 |
+
"Arabkir",
|
| 153 |
+
"Gyumri",
|
| 154 |
+
"Vanadzor",
|
| 155 |
+
"Kanaker-Zeytun",
|
| 156 |
+
"Avan",
|
| 157 |
+
"Davtashen",
|
| 158 |
+
"Hrazdan",
|
| 159 |
+
"Abovyan",
|
| 160 |
+
"Vagharshapat",
|
| 161 |
+
"Kapan",
|
| 162 |
+
"Armavir",
|
| 163 |
+
"Artashat",
|
| 164 |
+
"Charentsavan",
|
| 165 |
+
"Masis",
|
| 166 |
+
"Ijevan",
|
| 167 |
+
"Sevan",
|
| 168 |
+
"Gavar",
|
| 169 |
+
"Artik"
|
| 170 |
+
],
|
| 171 |
+
"Angola": [
|
| 172 |
+
"Luanda",
|
| 173 |
+
"Lubango",
|
| 174 |
+
"Huambo",
|
| 175 |
+
"Benguela",
|
| 176 |
+
"Cabinda",
|
| 177 |
+
"Malanje",
|
| 178 |
+
"Saurimo",
|
| 179 |
+
"Lobito",
|
| 180 |
+
"Cuíto",
|
| 181 |
+
"Uíge",
|
| 182 |
+
"Luena",
|
| 183 |
+
"Mossamedes",
|
| 184 |
+
"Menongue",
|
| 185 |
+
"Chitato",
|
| 186 |
+
"Sumbe",
|
| 187 |
+
"Soyo",
|
| 188 |
+
"Dundo",
|
| 189 |
+
"N'dalatando",
|
| 190 |
+
"Mbanza Kongo",
|
| 191 |
+
"Caála",
|
| 192 |
+
"Ondjiva",
|
| 193 |
+
"Gabela",
|
| 194 |
+
"Lucapa",
|
| 195 |
+
"Catumbela",
|
| 196 |
+
"Negage"
|
| 197 |
+
],
|
| 198 |
+
"Argentina": [
|
| 199 |
+
"Buenos Aires",
|
| 200 |
+
"Córdoba",
|
| 201 |
+
"Rosario",
|
| 202 |
+
"Mar del Plata",
|
| 203 |
+
"San Miguel de Tucumán",
|
| 204 |
+
"Salta",
|
| 205 |
+
"Santa Fe",
|
| 206 |
+
"Corrientes",
|
| 207 |
+
"Posadas",
|
| 208 |
+
"Bahía Blanca",
|
| 209 |
+
"Resistencia",
|
| 210 |
+
"Merlo",
|
| 211 |
+
"Quilmes",
|
| 212 |
+
"San Salvador de Jujuy",
|
| 213 |
+
"Santiago del Estero",
|
| 214 |
+
"Paraná",
|
| 215 |
+
"Neuquén",
|
| 216 |
+
"José C. Paz",
|
| 217 |
+
"Formosa",
|
| 218 |
+
"La Plata",
|
| 219 |
+
"Berazategui",
|
| 220 |
+
"La Rioja",
|
| 221 |
+
"San Luis",
|
| 222 |
+
"San Miguel",
|
| 223 |
+
"Ituzaingó"
|
| 224 |
+
],
|
| 225 |
+
"American Samoa": [
|
| 226 |
+
"Pago Pago",
|
| 227 |
+
"Tāfuna",
|
| 228 |
+
"Nu‘uuli",
|
| 229 |
+
"Leone",
|
| 230 |
+
"Faleniu",
|
| 231 |
+
"Ili‘ili",
|
| 232 |
+
"Aūa",
|
| 233 |
+
"Mapusagafou",
|
| 234 |
+
"Fagatogo",
|
| 235 |
+
"Mapusaga",
|
| 236 |
+
"Vaitogi",
|
| 237 |
+
"Malaeimi",
|
| 238 |
+
"Vailoatai",
|
| 239 |
+
"Aoloau",
|
| 240 |
+
"Ta`ū",
|
| 241 |
+
"Taputimu",
|
| 242 |
+
"Faga‘alu",
|
| 243 |
+
"Malaeloa/Ituau",
|
| 244 |
+
"Utulei",
|
| 245 |
+
"Futiga",
|
| 246 |
+
"Malaeloa/Aitulagi",
|
| 247 |
+
"Mesepa",
|
| 248 |
+
"Leloaloa",
|
| 249 |
+
"Āfono",
|
| 250 |
+
"Alao"
|
| 251 |
+
],
|
| 252 |
+
"Austria": [
|
| 253 |
+
"Vienna",
|
| 254 |
+
"Graz",
|
| 255 |
+
"Linz",
|
| 256 |
+
"Favoriten",
|
| 257 |
+
"Donaustadt",
|
| 258 |
+
"Floridsdorf",
|
| 259 |
+
"Salzburg",
|
| 260 |
+
"Innsbruck",
|
| 261 |
+
"Ottakring",
|
| 262 |
+
"Simmering",
|
| 263 |
+
"Klagenfurt am Wörthersee",
|
| 264 |
+
"Landstraße",
|
| 265 |
+
"Penzing",
|
| 266 |
+
"Meidling",
|
| 267 |
+
"Brigittenau",
|
| 268 |
+
"Fünfhaus",
|
| 269 |
+
"Döbling",
|
| 270 |
+
"Villach",
|
| 271 |
+
"Hernals",
|
| 272 |
+
"Margareten",
|
| 273 |
+
"Hietzing",
|
| 274 |
+
"Währing",
|
| 275 |
+
"Aspern",
|
| 276 |
+
"Dornbirn",
|
| 277 |
+
"Wiener Neustadt"
|
| 278 |
+
],
|
| 279 |
+
"Australia": [
|
| 280 |
+
"Sydney",
|
| 281 |
+
"Melbourne",
|
| 282 |
+
"Brisbane",
|
| 283 |
+
"Perth",
|
| 284 |
+
"Adelaide",
|
| 285 |
+
"Gold Coast",
|
| 286 |
+
"Newcastle",
|
| 287 |
+
"Canberra",
|
| 288 |
+
"Sunshine Coast",
|
| 289 |
+
"Logan City",
|
| 290 |
+
"Wollongong",
|
| 291 |
+
"Geelong",
|
| 292 |
+
"Hobart",
|
| 293 |
+
"Townsville",
|
| 294 |
+
"Cairns",
|
| 295 |
+
"Toowoomba",
|
| 296 |
+
"Darwin",
|
| 297 |
+
"Mackay",
|
| 298 |
+
"Ballarat",
|
| 299 |
+
"City of Port Phillip",
|
| 300 |
+
"Bendigo",
|
| 301 |
+
"Launceston",
|
| 302 |
+
"Mandurah",
|
| 303 |
+
"Maitland",
|
| 304 |
+
"Tuggeranong Administrative District"
|
| 305 |
+
],
|
| 306 |
+
"Aruba": [
|
| 307 |
+
"Oranjestad",
|
| 308 |
+
"Noord",
|
| 309 |
+
"Tanki Leendert",
|
| 310 |
+
"San Nicolas",
|
| 311 |
+
"Santa Cruz",
|
| 312 |
+
"Paradera",
|
| 313 |
+
"Savaneta",
|
| 314 |
+
"Palm Beach",
|
| 315 |
+
"Pos Chiquito",
|
| 316 |
+
"Alto Vista",
|
| 317 |
+
"Moco",
|
| 318 |
+
"Washington"
|
| 319 |
+
],
|
| 320 |
+
"Aland Islands": [
|
| 321 |
+
"Mariehamn",
|
| 322 |
+
"Ytterby",
|
| 323 |
+
"Yomala",
|
| 324 |
+
"Jomala",
|
| 325 |
+
"Tjudö",
|
| 326 |
+
"Finström",
|
| 327 |
+
"Lemland",
|
| 328 |
+
"Saltvik",
|
| 329 |
+
"Hammarland",
|
| 330 |
+
"Godby",
|
| 331 |
+
"Eckerö",
|
| 332 |
+
"Sund",
|
| 333 |
+
"Bomarsund",
|
| 334 |
+
"Föglö",
|
| 335 |
+
"Brändö",
|
| 336 |
+
"Geta",
|
| 337 |
+
"Vårdö",
|
| 338 |
+
"Kumlinge",
|
| 339 |
+
"Kökar",
|
| 340 |
+
"Lumparland",
|
| 341 |
+
"Sottunga"
|
| 342 |
+
],
|
| 343 |
+
"Azerbaijan": [
|
| 344 |
+
"Baku",
|
| 345 |
+
"Sumqayıt",
|
| 346 |
+
"Ganja",
|
| 347 |
+
"Lankaran",
|
| 348 |
+
"Tovuz",
|
| 349 |
+
"Yevlakh",
|
| 350 |
+
"Mingachevir",
|
| 351 |
+
"Naxçıvan",
|
| 352 |
+
"Saatlı",
|
| 353 |
+
"Lerik",
|
| 354 |
+
"Qaraçuxur",
|
| 355 |
+
"Şirvan",
|
| 356 |
+
"Sheki",
|
| 357 |
+
"Bakıxanov",
|
| 358 |
+
"Agdzhabedy",
|
| 359 |
+
"Göyçay",
|
| 360 |
+
"Bilajari",
|
| 361 |
+
"Maştağa",
|
| 362 |
+
"Ağdam",
|
| 363 |
+
"Khirdalan",
|
| 364 |
+
"Barda",
|
| 365 |
+
"Xaçmaz",
|
| 366 |
+
"Salyan",
|
| 367 |
+
"Hövsan",
|
| 368 |
+
"Jalilabad"
|
| 369 |
+
],
|
| 370 |
+
"Bosnia and Herzegovina": [
|
| 371 |
+
"Sarajevo",
|
| 372 |
+
"Banja Luka",
|
| 373 |
+
"Zenica",
|
| 374 |
+
"Tuzla",
|
| 375 |
+
"Mostar",
|
| 376 |
+
"Bihać",
|
| 377 |
+
"Ilidža",
|
| 378 |
+
"Lukavac",
|
| 379 |
+
"Bugojno",
|
| 380 |
+
"Brčko",
|
| 381 |
+
"Bijeljina",
|
| 382 |
+
"Prijedor",
|
| 383 |
+
"Trebinje",
|
| 384 |
+
"Travnik",
|
| 385 |
+
"Doboj",
|
| 386 |
+
"Cazin",
|
| 387 |
+
"Velika Kladuša",
|
| 388 |
+
"Visoko",
|
| 389 |
+
"Goražde",
|
| 390 |
+
"Konjic",
|
| 391 |
+
"Gračanica",
|
| 392 |
+
"Gradačac",
|
| 393 |
+
"Bosanska Krupa",
|
| 394 |
+
"Mrkonjić Grad",
|
| 395 |
+
"Foča"
|
| 396 |
+
],
|
| 397 |
+
"Barbados": [
|
| 398 |
+
"Bridgetown",
|
| 399 |
+
"Speightstown",
|
| 400 |
+
"Oistins",
|
| 401 |
+
"Bathsheba",
|
| 402 |
+
"Hastings",
|
| 403 |
+
"Holetown",
|
| 404 |
+
"Six Cross Roads",
|
| 405 |
+
"Crane",
|
| 406 |
+
"Crab Hill",
|
| 407 |
+
"Greenland",
|
| 408 |
+
"Blackmans",
|
| 409 |
+
"Hillaby",
|
| 410 |
+
"Welchman Hall",
|
| 411 |
+
"Four Cross Roads",
|
| 412 |
+
"Checker Hall"
|
| 413 |
+
],
|
| 414 |
+
"Bangladesh": [
|
| 415 |
+
"Dhaka",
|
| 416 |
+
"Chattogram",
|
| 417 |
+
"Gazipur",
|
| 418 |
+
"Khulna",
|
| 419 |
+
"Rangpur",
|
| 420 |
+
"Comilla",
|
| 421 |
+
"Rajshahi",
|
| 422 |
+
"Pallabi",
|
| 423 |
+
"Mirpur Model Thana",
|
| 424 |
+
"Mohāmmadpur",
|
| 425 |
+
"Hāthazāri",
|
| 426 |
+
"Bāndarban",
|
| 427 |
+
"Shibganj",
|
| 428 |
+
"Natore",
|
| 429 |
+
"Kāfrul",
|
| 430 |
+
"Tungi",
|
| 431 |
+
"Bhātāra",
|
| 432 |
+
"Savar",
|
| 433 |
+
"Narsingdi",
|
| 434 |
+
"Nagar Naluākot",
|
| 435 |
+
"Bagerhat",
|
| 436 |
+
"Brāhmanbāria",
|
| 437 |
+
"Cox’s Bāzār",
|
| 438 |
+
"Jessore",
|
| 439 |
+
"Nāgarpur"
|
| 440 |
+
],
|
| 441 |
+
"Belgium": [
|
| 442 |
+
"Brussels",
|
| 443 |
+
"Antwerpen",
|
| 444 |
+
"Gent",
|
| 445 |
+
"Charleroi",
|
| 446 |
+
"Liège",
|
| 447 |
+
"Anderlecht",
|
| 448 |
+
"Schaerbeek",
|
| 449 |
+
"Brugge",
|
| 450 |
+
"Namur",
|
| 451 |
+
"Leuven",
|
| 452 |
+
"Molenbeek-Saint-Jean",
|
| 453 |
+
"Mons",
|
| 454 |
+
"Ixelles",
|
| 455 |
+
"Uccle",
|
| 456 |
+
"Deurne",
|
| 457 |
+
"Hasselt",
|
| 458 |
+
"Aalst",
|
| 459 |
+
"Mechelen",
|
| 460 |
+
"La Louvière",
|
| 461 |
+
"Kortrijk",
|
| 462 |
+
"Tournai",
|
| 463 |
+
"Ostend",
|
| 464 |
+
"Sint-Niklaas",
|
| 465 |
+
"Genk",
|
| 466 |
+
"Seraing"
|
| 467 |
+
],
|
| 468 |
+
"Burkina Faso": [
|
| 469 |
+
"Ouagadougou",
|
| 470 |
+
"Bobo-Dioulasso",
|
| 471 |
+
"Koudougou",
|
| 472 |
+
"Saaba",
|
| 473 |
+
"Ouahigouya",
|
| 474 |
+
"Kaya",
|
| 475 |
+
"Banfora",
|
| 476 |
+
"Pouytenga",
|
| 477 |
+
"Houndé",
|
| 478 |
+
"Fada N'gourma",
|
| 479 |
+
"Nioko I",
|
| 480 |
+
"Dédougou",
|
| 481 |
+
"Tenkodogo",
|
| 482 |
+
"Djibo",
|
| 483 |
+
"Kongoussi",
|
| 484 |
+
"Léo",
|
| 485 |
+
"Koupéla",
|
| 486 |
+
"Titao",
|
| 487 |
+
"Saonré",
|
| 488 |
+
"Dori",
|
| 489 |
+
"Aribinda",
|
| 490 |
+
"Gaoua",
|
| 491 |
+
"Garango",
|
| 492 |
+
"Gourcy",
|
| 493 |
+
"Yako"
|
| 494 |
+
],
|
| 495 |
+
"Bulgaria": [
|
| 496 |
+
"Sofia",
|
| 497 |
+
"Plovdiv",
|
| 498 |
+
"Varna",
|
| 499 |
+
"Burgas",
|
| 500 |
+
"Stara Zagora",
|
| 501 |
+
"Ruse",
|
| 502 |
+
"Pleven",
|
| 503 |
+
"Sliven",
|
| 504 |
+
"Pernik",
|
| 505 |
+
"Dobrich",
|
| 506 |
+
"Shumen",
|
| 507 |
+
"Blagoevgrad",
|
| 508 |
+
"Haskovo",
|
| 509 |
+
"Veliko Tŭrnovo",
|
| 510 |
+
"Gabrovo",
|
| 511 |
+
"Pazardzhik",
|
| 512 |
+
"Vratsa",
|
| 513 |
+
"Yambol",
|
| 514 |
+
"Asenovgrad",
|
| 515 |
+
"Kardzhali",
|
| 516 |
+
"Kazanlak",
|
| 517 |
+
"Montana",
|
| 518 |
+
"Vidin",
|
| 519 |
+
"Razgrad",
|
| 520 |
+
"Dimitrovgrad"
|
| 521 |
+
],
|
| 522 |
+
"Bahrain": [
|
| 523 |
+
"Ar Rifā‘",
|
| 524 |
+
"Manama",
|
| 525 |
+
"Al Muharraq",
|
| 526 |
+
"Dār Kulayb",
|
| 527 |
+
"Madīnat Ḩamad",
|
| 528 |
+
"Madīnat ‘Īsá",
|
| 529 |
+
"Sitrah",
|
| 530 |
+
"Jidd Ḩafş",
|
| 531 |
+
"Al Ḩadd",
|
| 532 |
+
"Sanābis"
|
| 533 |
+
],
|
| 534 |
+
"Burundi": [
|
| 535 |
+
"Bujumbura",
|
| 536 |
+
"Gitega",
|
| 537 |
+
"Ngozi",
|
| 538 |
+
"Rumonge",
|
| 539 |
+
"Cibitoke",
|
| 540 |
+
"Kayanza",
|
| 541 |
+
"Bubanza",
|
| 542 |
+
"Gatumba",
|
| 543 |
+
"Karuzi",
|
| 544 |
+
"Kirundo",
|
| 545 |
+
"Muyinga",
|
| 546 |
+
"Makamba",
|
| 547 |
+
"Ruyigi",
|
| 548 |
+
"Rutana",
|
| 549 |
+
"Muramvya",
|
| 550 |
+
"Isale",
|
| 551 |
+
"Bururi",
|
| 552 |
+
"Kanyosha",
|
| 553 |
+
"Bwambarangwe",
|
| 554 |
+
"Cankuzo",
|
| 555 |
+
"Kayogoro",
|
| 556 |
+
"Mabanda",
|
| 557 |
+
"Mwaro",
|
| 558 |
+
"Giteranyi",
|
| 559 |
+
"Mugongomanga"
|
| 560 |
+
],
|
| 561 |
+
"Benin": [
|
| 562 |
+
"Cotonou",
|
| 563 |
+
"Abomey-Calavi",
|
| 564 |
+
"Porto-Novo",
|
| 565 |
+
"Parakou",
|
| 566 |
+
"Godomè",
|
| 567 |
+
"Abomey",
|
| 568 |
+
"Djougou",
|
| 569 |
+
"Bohicon",
|
| 570 |
+
"Ekpé",
|
| 571 |
+
"Nikki",
|
| 572 |
+
"Malanville",
|
| 573 |
+
"Kandi",
|
| 574 |
+
"Kérou",
|
| 575 |
+
"Natitingou",
|
| 576 |
+
"Pobé",
|
| 577 |
+
"Ouidah",
|
| 578 |
+
"Lokossa",
|
| 579 |
+
"Bassila",
|
| 580 |
+
"Tchaourou",
|
| 581 |
+
"Cové",
|
| 582 |
+
"Sakété",
|
| 583 |
+
"Comé",
|
| 584 |
+
"Missérété",
|
| 585 |
+
"Dogbo",
|
| 586 |
+
"Kétou"
|
| 587 |
+
],
|
| 588 |
+
"Saint Barthelemy": [
|
| 589 |
+
"Gustavia"
|
| 590 |
+
],
|
| 591 |
+
"Bermuda": [
|
| 592 |
+
"Pembroke Parish",
|
| 593 |
+
"Warwick Parish",
|
| 594 |
+
"Sandys Parish",
|
| 595 |
+
"Devonshire Parish",
|
| 596 |
+
"Southampton Parish",
|
| 597 |
+
"Hamilton Parish",
|
| 598 |
+
"Paget Parish",
|
| 599 |
+
"St George's Parish",
|
| 600 |
+
"Smith's Parish",
|
| 601 |
+
"Saint George",
|
| 602 |
+
"Somerset",
|
| 603 |
+
"Hamilton"
|
| 604 |
+
],
|
| 605 |
+
"Brunei": [
|
| 606 |
+
"Bandar Seri Begawan",
|
| 607 |
+
"Sengkurong",
|
| 608 |
+
"Mentiri",
|
| 609 |
+
"Kuala Belait",
|
| 610 |
+
"Seria",
|
| 611 |
+
"Tutong",
|
| 612 |
+
"Serasa",
|
| 613 |
+
"Liang",
|
| 614 |
+
"Perumahan Negara Panchor",
|
| 615 |
+
"Telisai",
|
| 616 |
+
"Kota Batu",
|
| 617 |
+
"Kampong Tunah Jambu",
|
| 618 |
+
"Pengkalan Batu",
|
| 619 |
+
"Kampong Meragang",
|
| 620 |
+
"Keriam",
|
| 621 |
+
"Lumapas",
|
| 622 |
+
"Kampong Lambak A",
|
| 623 |
+
"Kampong Mata Mata",
|
| 624 |
+
"Kampong Beribi",
|
| 625 |
+
"Sungai Hanching",
|
| 626 |
+
"Kampong Mulaut",
|
| 627 |
+
"Kampong Lugu",
|
| 628 |
+
"Kampong Rimba",
|
| 629 |
+
"Kiudang",
|
| 630 |
+
"Kampong Kiajong"
|
| 631 |
+
],
|
| 632 |
+
"Bolivia": [
|
| 633 |
+
"La Paz",
|
| 634 |
+
"Santa Cruz de la Sierra",
|
| 635 |
+
"Cochabamba",
|
| 636 |
+
"Sucre",
|
| 637 |
+
"Oruro",
|
| 638 |
+
"Sacaba",
|
| 639 |
+
"Quillacollo",
|
| 640 |
+
"Tarija",
|
| 641 |
+
"Potosí",
|
| 642 |
+
"Riberalta",
|
| 643 |
+
"Montero",
|
| 644 |
+
"Viacha",
|
| 645 |
+
"Trinidad",
|
| 646 |
+
"Yacuiba",
|
| 647 |
+
"Tiquipaya",
|
| 648 |
+
"Vinto",
|
| 649 |
+
"Colcapirhua",
|
| 650 |
+
"Sipe Sipe",
|
| 651 |
+
"Caranavi",
|
| 652 |
+
"Villamontes",
|
| 653 |
+
"Guayaramerín",
|
| 654 |
+
"Bermejo",
|
| 655 |
+
"Mizque",
|
| 656 |
+
"Villazón",
|
| 657 |
+
"Llallagua"
|
| 658 |
+
],
|
| 659 |
+
"Bonaire, Saint Eustatius and Saba": [
|
| 660 |
+
"Kralendijk",
|
| 661 |
+
"Dorp Antriol",
|
| 662 |
+
"Dorp Nikiboko",
|
| 663 |
+
"Upper Hell's Gate",
|
| 664 |
+
"Dorp Rincon",
|
| 665 |
+
"Dorp Tera Kora",
|
| 666 |
+
"Oranjestad",
|
| 667 |
+
"Belnem",
|
| 668 |
+
"Golden Rock",
|
| 669 |
+
"The Bottom"
|
| 670 |
+
],
|
| 671 |
+
"Brazil": [
|
| 672 |
+
"São Paulo",
|
| 673 |
+
"Rio de Janeiro",
|
| 674 |
+
"Belo Horizonte",
|
| 675 |
+
"Salvador",
|
| 676 |
+
"Fortaleza",
|
| 677 |
+
"Manaus",
|
| 678 |
+
"Brasília",
|
| 679 |
+
"Curitiba",
|
| 680 |
+
"Recife",
|
| 681 |
+
"Goiânia",
|
| 682 |
+
"Belém",
|
| 683 |
+
"Porto Alegre",
|
| 684 |
+
"Guarulhos",
|
| 685 |
+
"Maceió",
|
| 686 |
+
"Campinas",
|
| 687 |
+
"São Luís",
|
| 688 |
+
"Campo Grande",
|
| 689 |
+
"Natal",
|
| 690 |
+
"Teresina",
|
| 691 |
+
"Nova Iguaçu",
|
| 692 |
+
"Duque de Caxias",
|
| 693 |
+
"João Pessoa",
|
| 694 |
+
"São Bernardo do Campo",
|
| 695 |
+
"São José dos Campos",
|
| 696 |
+
"Osasco"
|
| 697 |
+
],
|
| 698 |
+
"Bahamas": [
|
| 699 |
+
"Nassau",
|
| 700 |
+
"Lucaya",
|
| 701 |
+
"Freeport",
|
| 702 |
+
"Killarney",
|
| 703 |
+
"West End",
|
| 704 |
+
"Cooper’s Town",
|
| 705 |
+
"San Andros",
|
| 706 |
+
"George Town",
|
| 707 |
+
"Marsh Harbour",
|
| 708 |
+
"High Rock",
|
| 709 |
+
"Freetown",
|
| 710 |
+
"Andros Town",
|
| 711 |
+
"Clarence Town",
|
| 712 |
+
"Dunmore Town",
|
| 713 |
+
"Spanish Wells",
|
| 714 |
+
"Treasure Cay",
|
| 715 |
+
"Arthur’s Town",
|
| 716 |
+
"Alice Town",
|
| 717 |
+
"Cockburn Town",
|
| 718 |
+
"Matthew Town",
|
| 719 |
+
"Colonel Hill",
|
| 720 |
+
"Abraham’s Bay",
|
| 721 |
+
"Port Nelson",
|
| 722 |
+
"Duncan Town",
|
| 723 |
+
"Masons Bay"
|
| 724 |
+
],
|
| 725 |
+
"Bhutan": [
|
| 726 |
+
"Thimphu",
|
| 727 |
+
"Phuntsholing",
|
| 728 |
+
"Tsirang",
|
| 729 |
+
"Punākha",
|
| 730 |
+
"Pemagatshel",
|
| 731 |
+
"Paro",
|
| 732 |
+
"Sarpang",
|
| 733 |
+
"Geylegphug",
|
| 734 |
+
"Samdrup Jongkhar",
|
| 735 |
+
"Wangdue Phodrang",
|
| 736 |
+
"Jakar",
|
| 737 |
+
"Samtse",
|
| 738 |
+
"Pajo",
|
| 739 |
+
"Trashi Yangtse",
|
| 740 |
+
"Mongar",
|
| 741 |
+
"Tsimasham",
|
| 742 |
+
"Mebisa",
|
| 743 |
+
"Trongsa",
|
| 744 |
+
"Daga",
|
| 745 |
+
"Laya",
|
| 746 |
+
"Daphu",
|
| 747 |
+
"Ha",
|
| 748 |
+
"Panbang",
|
| 749 |
+
"Trashigang",
|
| 750 |
+
"Shemgang"
|
| 751 |
+
],
|
| 752 |
+
"Botswana": [
|
| 753 |
+
"Gaborone",
|
| 754 |
+
"Francistown",
|
| 755 |
+
"Mogoditshane",
|
| 756 |
+
"Maun",
|
| 757 |
+
"Molepolole",
|
| 758 |
+
"Serowe",
|
| 759 |
+
"Tlokweng",
|
| 760 |
+
"Palapye",
|
| 761 |
+
"Mochudi",
|
| 762 |
+
"Mahalapye",
|
| 763 |
+
"Kanye",
|
| 764 |
+
"Selebi-Phikwe",
|
| 765 |
+
"Letlhakane",
|
| 766 |
+
"Ramotswa",
|
| 767 |
+
"Lobatse",
|
| 768 |
+
"Mmopone",
|
| 769 |
+
"Thamaga",
|
| 770 |
+
"Mosopa",
|
| 771 |
+
"Tonota",
|
| 772 |
+
"Bobonong",
|
| 773 |
+
"Gabane",
|
| 774 |
+
"Ghanzi",
|
| 775 |
+
"Jwaneng",
|
| 776 |
+
"Tutume",
|
| 777 |
+
"Janeng"
|
| 778 |
+
],
|
| 779 |
+
"Belarus": [
|
| 780 |
+
"Minsk",
|
| 781 |
+
"Homyel'",
|
| 782 |
+
"Hrodna",
|
| 783 |
+
"Vitebsk",
|
| 784 |
+
"Mahilyow",
|
| 785 |
+
"Brest",
|
| 786 |
+
"Bobruysk",
|
| 787 |
+
"Baranovichi",
|
| 788 |
+
"Barysaw",
|
| 789 |
+
"Pinsk",
|
| 790 |
+
"Mazyr",
|
| 791 |
+
"Lida",
|
| 792 |
+
"Orsha",
|
| 793 |
+
"Soligorsk",
|
| 794 |
+
"Novopolotsk",
|
| 795 |
+
"Maladziečna",
|
| 796 |
+
"Polotsk",
|
| 797 |
+
"Zhlobin",
|
| 798 |
+
"Rechytsa",
|
| 799 |
+
"Horad Zhodzina",
|
| 800 |
+
"Svetlogorsk",
|
| 801 |
+
"Slutsk",
|
| 802 |
+
"Kobryn",
|
| 803 |
+
"Slonim",
|
| 804 |
+
"Volkovysk"
|
| 805 |
+
],
|
| 806 |
+
"Belize": [
|
| 807 |
+
"Belize City",
|
| 808 |
+
"San Pedro",
|
| 809 |
+
"Orange Walk",
|
| 810 |
+
"Belmopan",
|
| 811 |
+
"San Ignacio",
|
| 812 |
+
"Dangriga",
|
| 813 |
+
"Corozal",
|
| 814 |
+
"Santa Elena",
|
| 815 |
+
"Ladyville",
|
| 816 |
+
"Benque Viejo el Carmen",
|
| 817 |
+
"Bella Vista",
|
| 818 |
+
"Trial Farm",
|
| 819 |
+
"Punta Gorda",
|
| 820 |
+
"Independence and Mango Creek",
|
| 821 |
+
"Lord’s Bank",
|
| 822 |
+
"Placencia",
|
| 823 |
+
"Shipyard",
|
| 824 |
+
"Bullet Tree Falls",
|
| 825 |
+
"Guinea Grass",
|
| 826 |
+
"San Jose",
|
| 827 |
+
"Valley of Peace",
|
| 828 |
+
"Camelote",
|
| 829 |
+
"Spanish Lookout",
|
| 830 |
+
"Santa Cruz",
|
| 831 |
+
"Little Belize"
|
| 832 |
+
],
|
| 833 |
+
"Canada": [
|
| 834 |
+
"Toronto",
|
| 835 |
+
"Montréal",
|
| 836 |
+
"Calgary",
|
| 837 |
+
"Ottawa",
|
| 838 |
+
"Edmonton",
|
| 839 |
+
"Winnipeg",
|
| 840 |
+
"Mississauga",
|
| 841 |
+
"Vancouver",
|
| 842 |
+
"Brampton",
|
| 843 |
+
"Hamilton",
|
| 844 |
+
"Surrey",
|
| 845 |
+
"Québec",
|
| 846 |
+
"Halifax",
|
| 847 |
+
"Laval",
|
| 848 |
+
"London",
|
| 849 |
+
"Etobicoke",
|
| 850 |
+
"Markham",
|
| 851 |
+
"Vaughan",
|
| 852 |
+
"Victoria",
|
| 853 |
+
"Saskatoon",
|
| 854 |
+
"Kitchener",
|
| 855 |
+
"Burnaby",
|
| 856 |
+
"Gatineau",
|
| 857 |
+
"Windsor",
|
| 858 |
+
"Longueuil"
|
| 859 |
+
],
|
| 860 |
+
"Cocos Islands": [
|
| 861 |
+
"West Island"
|
| 862 |
+
],
|
| 863 |
+
"Democratic Republic of the Congo": [
|
| 864 |
+
"Kinshasa",
|
| 865 |
+
"Lubumbashi",
|
| 866 |
+
"Mbuji-Mayi",
|
| 867 |
+
"Kananga",
|
| 868 |
+
"Kisangani",
|
| 869 |
+
"Bukavu",
|
| 870 |
+
"Kolwezi",
|
| 871 |
+
"Likasi",
|
| 872 |
+
"Tshikapa",
|
| 873 |
+
"Kikwit",
|
| 874 |
+
"Masina",
|
| 875 |
+
"Mbandaka",
|
| 876 |
+
"Goma",
|
| 877 |
+
"Matadi",
|
| 878 |
+
"Uvira",
|
| 879 |
+
"Bunia",
|
| 880 |
+
"Boma",
|
| 881 |
+
"Mwene",
|
| 882 |
+
"Butembo",
|
| 883 |
+
"Isiro",
|
| 884 |
+
"Kindu",
|
| 885 |
+
"Kabinda",
|
| 886 |
+
"Gandajika",
|
| 887 |
+
"Bandundu Province",
|
| 888 |
+
"Kamina"
|
| 889 |
+
],
|
| 890 |
+
"Central African Republic": [
|
| 891 |
+
"Bangui",
|
| 892 |
+
"Bimbo",
|
| 893 |
+
"Bégoua",
|
| 894 |
+
"Carnot",
|
| 895 |
+
"Berbérati",
|
| 896 |
+
"Bambari",
|
| 897 |
+
"Bouar",
|
| 898 |
+
"Bossangoa",
|
| 899 |
+
"Kaga-Bandoro",
|
| 900 |
+
"Bangassou",
|
| 901 |
+
"Paoua",
|
| 902 |
+
"Bria",
|
| 903 |
+
"Kouango",
|
| 904 |
+
"Bocaranga",
|
| 905 |
+
"Baboua",
|
| 906 |
+
"Alindao",
|
| 907 |
+
"Sibut",
|
| 908 |
+
"Nola",
|
| 909 |
+
"Ippy",
|
| 910 |
+
"Ndélé",
|
| 911 |
+
"Batangafo",
|
| 912 |
+
"Mbaïki",
|
| 913 |
+
"Yaloké",
|
| 914 |
+
"Bozoum",
|
| 915 |
+
"Dekoa"
|
| 916 |
+
],
|
| 917 |
+
"Republic of the Congo": [
|
| 918 |
+
"Brazzaville",
|
| 919 |
+
"Pointe-Noire",
|
| 920 |
+
"Dolisie",
|
| 921 |
+
"Nkayi",
|
| 922 |
+
"Kayes",
|
| 923 |
+
"Impfondo",
|
| 924 |
+
"Ouesso",
|
| 925 |
+
"Owando",
|
| 926 |
+
"Sibiti",
|
| 927 |
+
"Loutété",
|
| 928 |
+
"Bouansa",
|
| 929 |
+
"Gamboma",
|
| 930 |
+
"Loandjili",
|
| 931 |
+
"Mossaka",
|
| 932 |
+
"Mindouli",
|
| 933 |
+
"Oyo",
|
| 934 |
+
"Makoua",
|
| 935 |
+
"Loudima",
|
| 936 |
+
"Mossendjo",
|
| 937 |
+
"Mouyondzi",
|
| 938 |
+
"Bétou",
|
| 939 |
+
"Djambala",
|
| 940 |
+
"Pokola",
|
| 941 |
+
"Ngo",
|
| 942 |
+
"Makabana"
|
| 943 |
+
],
|
| 944 |
+
"Switzerland": [
|
| 945 |
+
"Zürich",
|
| 946 |
+
"Genève",
|
| 947 |
+
"Basel",
|
| 948 |
+
"Lausanne",
|
| 949 |
+
"Bern",
|
| 950 |
+
"Winterthur",
|
| 951 |
+
"Luzern",
|
| 952 |
+
"Sankt Gallen",
|
| 953 |
+
"Lugano",
|
| 954 |
+
"Biel/Bienne",
|
| 955 |
+
"Zürich (Kreis 11)",
|
| 956 |
+
"Zürich (Kreis 3)",
|
| 957 |
+
"Zürich (Kreis 9)",
|
| 958 |
+
"Thun",
|
| 959 |
+
"Bellinzona",
|
| 960 |
+
"Köniz",
|
| 961 |
+
"Fribourg",
|
| 962 |
+
"La Chaux-de-Fonds",
|
| 963 |
+
"Schaffhausen",
|
| 964 |
+
"Zürich (Kreis 10)",
|
| 965 |
+
"Chur",
|
| 966 |
+
"Rapperswil",
|
| 967 |
+
"Uster",
|
| 968 |
+
"Sitten",
|
| 969 |
+
"Zürich (Kreis 7)"
|
| 970 |
+
],
|
| 971 |
+
"Ivory Coast": [
|
| 972 |
+
"Abidjan",
|
| 973 |
+
"Abobo",
|
| 974 |
+
"Bouaké",
|
| 975 |
+
"Korhogo",
|
| 976 |
+
"Daloa",
|
| 977 |
+
"Koumassi",
|
| 978 |
+
"San-Pédro",
|
| 979 |
+
"Gagnoa",
|
| 980 |
+
"Yamoussoukro",
|
| 981 |
+
"Sinfra",
|
| 982 |
+
"Man",
|
| 983 |
+
"Marcory",
|
| 984 |
+
"Bondoukou",
|
| 985 |
+
"Dabou",
|
| 986 |
+
"Divo",
|
| 987 |
+
"Anyama",
|
| 988 |
+
"Soubré",
|
| 989 |
+
"Abengourou",
|
| 990 |
+
"Bonon",
|
| 991 |
+
"Duekoué",
|
| 992 |
+
"Bouaflé",
|
| 993 |
+
"Séguéla",
|
| 994 |
+
"Daoukro",
|
| 995 |
+
"Grand-Bassam",
|
| 996 |
+
"Vavoua"
|
| 997 |
+
],
|
| 998 |
+
"Cook Islands": [
|
| 999 |
+
"Avarua",
|
| 1000 |
+
"Matavera"
|
| 1001 |
+
],
|
| 1002 |
+
"Chile": [
|
| 1003 |
+
"Santiago",
|
| 1004 |
+
"Puente Alto",
|
| 1005 |
+
"Maipú",
|
| 1006 |
+
"Antofagasta",
|
| 1007 |
+
"Viña del Mar",
|
| 1008 |
+
"Valparaíso",
|
| 1009 |
+
"Ñuñoa",
|
| 1010 |
+
"Talcahuano",
|
| 1011 |
+
"San Bernardo",
|
| 1012 |
+
"Puerto Montt",
|
| 1013 |
+
"Arica",
|
| 1014 |
+
"Peñalolén",
|
| 1015 |
+
"Temuco",
|
| 1016 |
+
"Concepción",
|
| 1017 |
+
"Rancagua",
|
| 1018 |
+
"Quilicura",
|
| 1019 |
+
"La Pintana",
|
| 1020 |
+
"Iquique",
|
| 1021 |
+
"Talca",
|
| 1022 |
+
"Calama",
|
| 1023 |
+
"Coquimbo",
|
| 1024 |
+
"La Serena",
|
| 1025 |
+
"Chillán",
|
| 1026 |
+
"Renca",
|
| 1027 |
+
"Colina"
|
| 1028 |
+
],
|
| 1029 |
+
"Cameroon": [
|
| 1030 |
+
"Douala",
|
| 1031 |
+
"Yaoundé",
|
| 1032 |
+
"Bamenda",
|
| 1033 |
+
"Bafoussam",
|
| 1034 |
+
"Maroua",
|
| 1035 |
+
"Ngaoundéré",
|
| 1036 |
+
"Kumba",
|
| 1037 |
+
"Nkongsamba",
|
| 1038 |
+
"Buea",
|
| 1039 |
+
"Kousséri",
|
| 1040 |
+
"Bertoua",
|
| 1041 |
+
"Limbe",
|
| 1042 |
+
"Foumban",
|
| 1043 |
+
"Kumbo",
|
| 1044 |
+
"Edéa",
|
| 1045 |
+
"Ébolowa",
|
| 1046 |
+
"Dschang",
|
| 1047 |
+
"Tiko",
|
| 1048 |
+
"Kribi",
|
| 1049 |
+
"Mbalmayo",
|
| 1050 |
+
"Guider",
|
| 1051 |
+
"Sangmélima",
|
| 1052 |
+
"Melong",
|
| 1053 |
+
"Foumbot",
|
| 1054 |
+
"Bafia"
|
| 1055 |
+
],
|
| 1056 |
+
"China": [
|
| 1057 |
+
"Shanghai",
|
| 1058 |
+
"Beijing",
|
| 1059 |
+
"Shenzhen",
|
| 1060 |
+
"Guangzhou",
|
| 1061 |
+
"Chengdu",
|
| 1062 |
+
"Tianjin",
|
| 1063 |
+
"Wuhan",
|
| 1064 |
+
"Dongguan",
|
| 1065 |
+
"Xi’an",
|
| 1066 |
+
"Nanjing",
|
| 1067 |
+
"Hangzhou",
|
| 1068 |
+
"Foshan",
|
| 1069 |
+
"Chongqing",
|
| 1070 |
+
"Qingdao",
|
| 1071 |
+
"Shenyang",
|
| 1072 |
+
"Suzhou",
|
| 1073 |
+
"Harbin",
|
| 1074 |
+
"Hefei",
|
| 1075 |
+
"Dalian",
|
| 1076 |
+
"Changchun",
|
| 1077 |
+
"Xiamen",
|
| 1078 |
+
"Bao'an",
|
| 1079 |
+
"Wuxi",
|
| 1080 |
+
"Jinan",
|
| 1081 |
+
"Taiyuan"
|
| 1082 |
+
],
|
| 1083 |
+
"Colombia": [
|
| 1084 |
+
"Bogotá",
|
| 1085 |
+
"Cali",
|
| 1086 |
+
"Medellín",
|
| 1087 |
+
"Barranquilla",
|
| 1088 |
+
"Cartagena",
|
| 1089 |
+
"Cúcuta",
|
| 1090 |
+
"Soacha",
|
| 1091 |
+
"Bucaramanga",
|
| 1092 |
+
"Ibagué",
|
| 1093 |
+
"Santa Marta",
|
| 1094 |
+
"Montería",
|
| 1095 |
+
"Valledupar",
|
| 1096 |
+
"Pereira",
|
| 1097 |
+
"Manizales",
|
| 1098 |
+
"Buenaventura",
|
| 1099 |
+
"Bello",
|
| 1100 |
+
"Pasto",
|
| 1101 |
+
"Neiva",
|
| 1102 |
+
"Soledad",
|
| 1103 |
+
"Villavicencio",
|
| 1104 |
+
"Popayán",
|
| 1105 |
+
"Palmira",
|
| 1106 |
+
"Armenia",
|
| 1107 |
+
"Itagüí",
|
| 1108 |
+
"Sincelejo"
|
| 1109 |
+
],
|
| 1110 |
+
"Costa Rica": [
|
| 1111 |
+
"San José",
|
| 1112 |
+
"Limón",
|
| 1113 |
+
"San Francisco",
|
| 1114 |
+
"Alajuela",
|
| 1115 |
+
"Liberia",
|
| 1116 |
+
"Paraíso",
|
| 1117 |
+
"Puntarenas",
|
| 1118 |
+
"San Isidro",
|
| 1119 |
+
"Curridabat",
|
| 1120 |
+
"San Vicente",
|
| 1121 |
+
"San Vicente de Moravia",
|
| 1122 |
+
"Purral",
|
| 1123 |
+
"Turrialba",
|
| 1124 |
+
"San Miguel",
|
| 1125 |
+
"San Pedro",
|
| 1126 |
+
"San Rafael Abajo",
|
| 1127 |
+
"Quesada",
|
| 1128 |
+
"Ipís",
|
| 1129 |
+
"Cartago",
|
| 1130 |
+
"Chacarita",
|
| 1131 |
+
"San Juan",
|
| 1132 |
+
"Mercedes Norte",
|
| 1133 |
+
"Guadalupe",
|
| 1134 |
+
"Aserrí",
|
| 1135 |
+
"San Rafael"
|
| 1136 |
+
],
|
| 1137 |
+
"Cuba": [
|
| 1138 |
+
"Havana",
|
| 1139 |
+
"Santiago de Cuba",
|
| 1140 |
+
"Camagüey",
|
| 1141 |
+
"Holguín",
|
| 1142 |
+
"Guantánamo",
|
| 1143 |
+
"Santa Clara",
|
| 1144 |
+
"Almendares",
|
| 1145 |
+
"Diez de Octubre",
|
| 1146 |
+
"Arroyo Naranjo",
|
| 1147 |
+
"Mantilla",
|
| 1148 |
+
"Las Tunas",
|
| 1149 |
+
"Bayamo",
|
| 1150 |
+
"Boyeros",
|
| 1151 |
+
"Pinar del Río",
|
| 1152 |
+
"Cienfuegos",
|
| 1153 |
+
"Fontanar",
|
| 1154 |
+
"Ciudad Camilo Cienfuegos",
|
| 1155 |
+
"San Miguel del Padrón",
|
| 1156 |
+
"Centro Habana",
|
| 1157 |
+
"Balcón de la Lisa",
|
| 1158 |
+
"Matanzas",
|
| 1159 |
+
"Ciego de Ávila",
|
| 1160 |
+
"Plaza de la Revolución",
|
| 1161 |
+
"Marianao",
|
| 1162 |
+
"Cerro"
|
| 1163 |
+
],
|
| 1164 |
+
"Cabo Verde": [
|
| 1165 |
+
"Praia",
|
| 1166 |
+
"Mindelo",
|
| 1167 |
+
"Espargos",
|
| 1168 |
+
"Assomada",
|
| 1169 |
+
"Tarrafal",
|
| 1170 |
+
"Porto Novo",
|
| 1171 |
+
"Sal Rei",
|
| 1172 |
+
"São Filipe",
|
| 1173 |
+
"Pedra Badejo",
|
| 1174 |
+
"Santa Cruz",
|
| 1175 |
+
"Santa Maria",
|
| 1176 |
+
"Calheta",
|
| 1177 |
+
"Vila do Maio",
|
| 1178 |
+
"Tarrafal de São Nicolau",
|
| 1179 |
+
"Igreja",
|
| 1180 |
+
"Cidade Velha",
|
| 1181 |
+
"Ponta do Sol",
|
| 1182 |
+
"Ribeira Grande",
|
| 1183 |
+
"São Domingos",
|
| 1184 |
+
"Ribeira Brava",
|
| 1185 |
+
"Nova Sintra",
|
| 1186 |
+
"Picos",
|
| 1187 |
+
"Pombas",
|
| 1188 |
+
"Cova Figueira",
|
| 1189 |
+
"João Teves"
|
| 1190 |
+
],
|
| 1191 |
+
"Curacao": [
|
| 1192 |
+
"Willemstad",
|
| 1193 |
+
"Bandariba",
|
| 1194 |
+
"Bandabou",
|
| 1195 |
+
"St. Michiel",
|
| 1196 |
+
"Santa Rosa",
|
| 1197 |
+
"Sint Michiel Liber",
|
| 1198 |
+
"Brievengat",
|
| 1199 |
+
"Barber",
|
| 1200 |
+
"Dorp Soto",
|
| 1201 |
+
"Otrabanda",
|
| 1202 |
+
"Sabana Westpunt"
|
| 1203 |
+
],
|
| 1204 |
+
"Christmas Island": [
|
| 1205 |
+
"Flying Fish Cove"
|
| 1206 |
+
],
|
| 1207 |
+
"Cyprus": [
|
| 1208 |
+
"Nicosia",
|
| 1209 |
+
"Limassol",
|
| 1210 |
+
"Larnaca",
|
| 1211 |
+
"Stróvolos",
|
| 1212 |
+
"Famagusta",
|
| 1213 |
+
"Káto Lakatámeia",
|
| 1214 |
+
"Paphos",
|
| 1215 |
+
"Kyrenia",
|
| 1216 |
+
"Mórfou",
|
| 1217 |
+
"Káto Polemídia",
|
| 1218 |
+
"Aradíppou",
|
| 1219 |
+
"Aglantziá",
|
| 1220 |
+
"Égkomi",
|
| 1221 |
+
"Protaras",
|
| 1222 |
+
"Germasógeia",
|
| 1223 |
+
"Pérgamos",
|
| 1224 |
+
"Ágios Dométios",
|
| 1225 |
+
"Dáli",
|
| 1226 |
+
"Paralímni",
|
| 1227 |
+
"Géri",
|
| 1228 |
+
"Geroskipou",
|
| 1229 |
+
"Léfka",
|
| 1230 |
+
"Ýpsonas",
|
| 1231 |
+
"Dhromolaxia",
|
| 1232 |
+
"Kolossi"
|
| 1233 |
+
],
|
| 1234 |
+
"Czechia": [
|
| 1235 |
+
"Prague",
|
| 1236 |
+
"Brno",
|
| 1237 |
+
"Ostrava",
|
| 1238 |
+
"Pilsen",
|
| 1239 |
+
"Liberec",
|
| 1240 |
+
"Olomouc",
|
| 1241 |
+
"České Budějovice",
|
| 1242 |
+
"Hradec Králové",
|
| 1243 |
+
"Ústí nad Labem",
|
| 1244 |
+
"Pardubice",
|
| 1245 |
+
"Havířov",
|
| 1246 |
+
"Zlín",
|
| 1247 |
+
"Most",
|
| 1248 |
+
"Kladno",
|
| 1249 |
+
"Karviná",
|
| 1250 |
+
"Stodůlky",
|
| 1251 |
+
"Opava",
|
| 1252 |
+
"Frýdek-Místek",
|
| 1253 |
+
"Žižkov",
|
| 1254 |
+
"Děčín",
|
| 1255 |
+
"Teplice",
|
| 1256 |
+
"Chomutov",
|
| 1257 |
+
"Jihlava",
|
| 1258 |
+
"Chodov",
|
| 1259 |
+
"Královské Vinohrady"
|
| 1260 |
+
],
|
| 1261 |
+
"Germany": [
|
| 1262 |
+
"Berlin",
|
| 1263 |
+
"Hamburg",
|
| 1264 |
+
"Munich",
|
| 1265 |
+
"Köln",
|
| 1266 |
+
"Frankfurt am Main",
|
| 1267 |
+
"Stuttgart",
|
| 1268 |
+
"Düsseldorf",
|
| 1269 |
+
"Essen",
|
| 1270 |
+
"Dortmund",
|
| 1271 |
+
"Dresden",
|
| 1272 |
+
"Bremen",
|
| 1273 |
+
"Nürnberg",
|
| 1274 |
+
"Hannover",
|
| 1275 |
+
"Leipzig",
|
| 1276 |
+
"Duisburg",
|
| 1277 |
+
"Wandsbek",
|
| 1278 |
+
"Bochum",
|
| 1279 |
+
"Wuppertal",
|
| 1280 |
+
"Bielefeld",
|
| 1281 |
+
"Bonn",
|
| 1282 |
+
"Hamburg-Nord",
|
| 1283 |
+
"Mannheim",
|
| 1284 |
+
"Hamburg-Mitte",
|
| 1285 |
+
"Marienthal",
|
| 1286 |
+
"Karlsruhe"
|
| 1287 |
+
],
|
| 1288 |
+
"Djibouti": [
|
| 1289 |
+
"Djibouti",
|
| 1290 |
+
"Ali Sabih",
|
| 1291 |
+
"Dikhil",
|
| 1292 |
+
"Tadjoura",
|
| 1293 |
+
"Arta",
|
| 1294 |
+
"Obock",
|
| 1295 |
+
"‘As ‘Êla",
|
| 1296 |
+
"Damêrdjôg",
|
| 1297 |
+
"Ouê‘a",
|
| 1298 |
+
"‘Ali ‘Addé",
|
| 1299 |
+
"Holhol",
|
| 1300 |
+
"Khôr Angar",
|
| 1301 |
+
"Waddi",
|
| 1302 |
+
"Yoboki",
|
| 1303 |
+
"Randa",
|
| 1304 |
+
"Goubétto",
|
| 1305 |
+
"Dorra",
|
| 1306 |
+
"Gâlâfi",
|
| 1307 |
+
"Loyada",
|
| 1308 |
+
"Alaïli Ḏaḏḏa‘",
|
| 1309 |
+
"Koûta Boûyya",
|
| 1310 |
+
"Airolaf",
|
| 1311 |
+
"Gorabous",
|
| 1312 |
+
"Guelile",
|
| 1313 |
+
"Adailou"
|
| 1314 |
+
],
|
| 1315 |
+
"Denmark": [
|
| 1316 |
+
"Copenhagen",
|
| 1317 |
+
"Århus",
|
| 1318 |
+
"Odense",
|
| 1319 |
+
"Aalborg",
|
| 1320 |
+
"Frederiksberg",
|
| 1321 |
+
"Esbjerg",
|
| 1322 |
+
"Randers",
|
| 1323 |
+
"Kolding",
|
| 1324 |
+
"Horsens",
|
| 1325 |
+
"Vejle",
|
| 1326 |
+
"Hvidovre",
|
| 1327 |
+
"Klinteby Frihed",
|
| 1328 |
+
"Avedøre",
|
| 1329 |
+
"Roskilde",
|
| 1330 |
+
"Herning",
|
| 1331 |
+
"Silkeborg",
|
| 1332 |
+
"Hørsholm",
|
| 1333 |
+
"Greve",
|
| 1334 |
+
"Hedensted",
|
| 1335 |
+
"Valby",
|
| 1336 |
+
"Næstved",
|
| 1337 |
+
"Viborg",
|
| 1338 |
+
"Fredericia",
|
| 1339 |
+
"Rødovre",
|
| 1340 |
+
"Charlottenlund"
|
| 1341 |
+
],
|
| 1342 |
+
"Dominica": [
|
| 1343 |
+
"Roseau",
|
| 1344 |
+
"Portsmouth",
|
| 1345 |
+
"Marigot",
|
| 1346 |
+
"Berekua",
|
| 1347 |
+
"Mahaut",
|
| 1348 |
+
"Saint Joseph",
|
| 1349 |
+
"Wesley",
|
| 1350 |
+
"Soufrière",
|
| 1351 |
+
"Salisbury",
|
| 1352 |
+
"Castle Bruce",
|
| 1353 |
+
"La Plaine",
|
| 1354 |
+
"Pointe Michel",
|
| 1355 |
+
"Woodford Hill",
|
| 1356 |
+
"Calibishie",
|
| 1357 |
+
"Colihaut",
|
| 1358 |
+
"Rosalie",
|
| 1359 |
+
"Castle Comfort",
|
| 1360 |
+
"Vieille Case",
|
| 1361 |
+
"Pont Cassé"
|
| 1362 |
+
],
|
| 1363 |
+
"Dominican Republic": [
|
| 1364 |
+
"Santo Domingo",
|
| 1365 |
+
"Santiago de los Caballeros",
|
| 1366 |
+
"Santo Domingo Oeste",
|
| 1367 |
+
"Santo Domingo Este",
|
| 1368 |
+
"San Pedro de Macorís",
|
| 1369 |
+
"La Romana",
|
| 1370 |
+
"Bella Vista",
|
| 1371 |
+
"San Cristóbal",
|
| 1372 |
+
"Puerto Plata",
|
| 1373 |
+
"San Francisco de Macorís",
|
| 1374 |
+
"Salvaleón de Higüey",
|
| 1375 |
+
"La Vega",
|
| 1376 |
+
"Punta Cana",
|
| 1377 |
+
"Santa Cruz de Barahona",
|
| 1378 |
+
"Bonao",
|
| 1379 |
+
"San Juan de la Maguana",
|
| 1380 |
+
"Bajos de Haina",
|
| 1381 |
+
"Baní",
|
| 1382 |
+
"Moca",
|
| 1383 |
+
"Azua",
|
| 1384 |
+
"Cristo Rey",
|
| 1385 |
+
"Villa Francisca",
|
| 1386 |
+
"Mao",
|
| 1387 |
+
"Boca Chica",
|
| 1388 |
+
"Salcedo"
|
| 1389 |
+
],
|
| 1390 |
+
"Algeria": [
|
| 1391 |
+
"Algiers",
|
| 1392 |
+
"Oran",
|
| 1393 |
+
"Constantine",
|
| 1394 |
+
"Annaba",
|
| 1395 |
+
"Blida",
|
| 1396 |
+
"Batna City",
|
| 1397 |
+
"Bab Ezzouar",
|
| 1398 |
+
"Djelfa",
|
| 1399 |
+
"Sétif",
|
| 1400 |
+
"Sidi Bel Abbes",
|
| 1401 |
+
"Biskra",
|
| 1402 |
+
"Tébessa",
|
| 1403 |
+
"El Oued",
|
| 1404 |
+
"Skikda",
|
| 1405 |
+
"Tiaret",
|
| 1406 |
+
"Chlef",
|
| 1407 |
+
"Béjaïa",
|
| 1408 |
+
"Tlemcen",
|
| 1409 |
+
"Ouargla",
|
| 1410 |
+
"Béchar",
|
| 1411 |
+
"Mostaganem",
|
| 1412 |
+
"Bordj Bou Arreridj",
|
| 1413 |
+
"El Achir",
|
| 1414 |
+
"Souk Ahras",
|
| 1415 |
+
"Médéa"
|
| 1416 |
+
],
|
| 1417 |
+
"Ecuador": [
|
| 1418 |
+
"Quito",
|
| 1419 |
+
"Guayaquil",
|
| 1420 |
+
"Cuenca",
|
| 1421 |
+
"Santo Domingo de los Colorados",
|
| 1422 |
+
"Ambato",
|
| 1423 |
+
"Portoviejo",
|
| 1424 |
+
"Eloy Alfaro",
|
| 1425 |
+
"Machala",
|
| 1426 |
+
"Loja",
|
| 1427 |
+
"Manta",
|
| 1428 |
+
"Riobamba",
|
| 1429 |
+
"Ibarra",
|
| 1430 |
+
"Esmeraldas",
|
| 1431 |
+
"Quevedo",
|
| 1432 |
+
"Latacunga",
|
| 1433 |
+
"Daule",
|
| 1434 |
+
"Milagro",
|
| 1435 |
+
"Tulcán",
|
| 1436 |
+
"Babahoyo",
|
| 1437 |
+
"La Libertad",
|
| 1438 |
+
"El Empalme",
|
| 1439 |
+
"Puerto Francisco de Orellana",
|
| 1440 |
+
"Pasaje",
|
| 1441 |
+
"Chone",
|
| 1442 |
+
"Salinas"
|
| 1443 |
+
],
|
| 1444 |
+
"Estonia": [
|
| 1445 |
+
"Tallinn",
|
| 1446 |
+
"Tartu",
|
| 1447 |
+
"Narva",
|
| 1448 |
+
"Pärnu",
|
| 1449 |
+
"Nõmme",
|
| 1450 |
+
"Kohtla-Järve",
|
| 1451 |
+
"Viljandi",
|
| 1452 |
+
"Maardu",
|
| 1453 |
+
"Rakvere",
|
| 1454 |
+
"Kuressaare",
|
| 1455 |
+
"Sillamäe",
|
| 1456 |
+
"Võru",
|
| 1457 |
+
"Tori",
|
| 1458 |
+
"Haapsalu",
|
| 1459 |
+
"Valga",
|
| 1460 |
+
"Jõhvi",
|
| 1461 |
+
"Keila",
|
| 1462 |
+
"Paide",
|
| 1463 |
+
"Kuusalu",
|
| 1464 |
+
"Jõgeva",
|
| 1465 |
+
"Saue",
|
| 1466 |
+
"Elva",
|
| 1467 |
+
"Tapa",
|
| 1468 |
+
"Laagri",
|
| 1469 |
+
"Raasiku"
|
| 1470 |
+
],
|
| 1471 |
+
"Egypt": [
|
| 1472 |
+
"Cairo",
|
| 1473 |
+
"Alexandria",
|
| 1474 |
+
"Giza",
|
| 1475 |
+
"Shubrā al Khaymah",
|
| 1476 |
+
"Port Said",
|
| 1477 |
+
"Suez",
|
| 1478 |
+
"Madīnat an Naşr",
|
| 1479 |
+
"Al Mansurah",
|
| 1480 |
+
"Al Maḩallah al Kubrá",
|
| 1481 |
+
"Tanta",
|
| 1482 |
+
"Assiut",
|
| 1483 |
+
"Al Fayyum",
|
| 1484 |
+
"Al Khuşūş",
|
| 1485 |
+
"Zagazig",
|
| 1486 |
+
"Ismailia",
|
| 1487 |
+
"Luxor",
|
| 1488 |
+
"Aswān",
|
| 1489 |
+
"6th of October City",
|
| 1490 |
+
"Ḩadā’iq al Qubbah",
|
| 1491 |
+
"Damanhur",
|
| 1492 |
+
"New Cairo",
|
| 1493 |
+
"Al Qāhirah al Jadīdah",
|
| 1494 |
+
"Damietta",
|
| 1495 |
+
"Minya",
|
| 1496 |
+
"Banī Suwayf"
|
| 1497 |
+
],
|
| 1498 |
+
"Western Sahara": [
|
| 1499 |
+
"Laayoune",
|
| 1500 |
+
"Dakhla",
|
| 1501 |
+
"Boujdour",
|
| 1502 |
+
"Laayoune Plage",
|
| 1503 |
+
"Tichla",
|
| 1504 |
+
"El Aargub",
|
| 1505 |
+
"Uad Guenifa",
|
| 1506 |
+
"Tifariti",
|
| 1507 |
+
"Bu Craa",
|
| 1508 |
+
"Bir Anzarane",
|
| 1509 |
+
"Daoura",
|
| 1510 |
+
"Zug",
|
| 1511 |
+
"Hasi Gueleita"
|
| 1512 |
+
],
|
| 1513 |
+
"Eritrea": [
|
| 1514 |
+
"Asmara",
|
| 1515 |
+
"Keren",
|
| 1516 |
+
"Himora",
|
| 1517 |
+
"Massawa",
|
| 1518 |
+
"Assab",
|
| 1519 |
+
"Mendefera",
|
| 1520 |
+
"Barentu",
|
| 1521 |
+
"Adi Keyh",
|
| 1522 |
+
"Edd",
|
| 1523 |
+
"Dek’emhāre",
|
| 1524 |
+
"Ak’ordat",
|
| 1525 |
+
"Dbarwa",
|
| 1526 |
+
"Teseney",
|
| 1527 |
+
"Dehalak’ Kebīr",
|
| 1528 |
+
"Quandeba",
|
| 1529 |
+
"Mai-Mne"
|
| 1530 |
+
],
|
| 1531 |
+
"Spain": [
|
| 1532 |
+
"Madrid",
|
| 1533 |
+
"Barcelona",
|
| 1534 |
+
"Valencia",
|
| 1535 |
+
"Sevilla",
|
| 1536 |
+
"Zaragoza",
|
| 1537 |
+
"Málaga",
|
| 1538 |
+
"Murcia",
|
| 1539 |
+
"Palma",
|
| 1540 |
+
"Las Palmas de Gran Canaria",
|
| 1541 |
+
"Alicante",
|
| 1542 |
+
"Bilbao",
|
| 1543 |
+
"Córdoba",
|
| 1544 |
+
"Valladolid",
|
| 1545 |
+
"Vigo",
|
| 1546 |
+
"Gijón",
|
| 1547 |
+
"Eixample",
|
| 1548 |
+
"L'Hospitalet de Llobregat",
|
| 1549 |
+
"Latina",
|
| 1550 |
+
"Carabanchel",
|
| 1551 |
+
"A Coruña",
|
| 1552 |
+
"Gasteiz / Vitoria",
|
| 1553 |
+
"Puente de Vallecas",
|
| 1554 |
+
"Fuencarral",
|
| 1555 |
+
"Sant Martí",
|
| 1556 |
+
"Elche"
|
| 1557 |
+
],
|
| 1558 |
+
"Ethiopia": [
|
| 1559 |
+
"Addis Ababa",
|
| 1560 |
+
"Jijiga",
|
| 1561 |
+
"Gonder",
|
| 1562 |
+
"Mek'ele",
|
| 1563 |
+
"Nazrēt",
|
| 1564 |
+
"Awasa",
|
| 1565 |
+
"Bahir Dar",
|
| 1566 |
+
"Dire Dawa",
|
| 1567 |
+
"Dessie",
|
| 1568 |
+
"Jimma",
|
| 1569 |
+
"Shashamane",
|
| 1570 |
+
"Bishoftu",
|
| 1571 |
+
"Sodo",
|
| 1572 |
+
"Arba Minch",
|
| 1573 |
+
"Hosa’ina",
|
| 1574 |
+
"Dīla",
|
| 1575 |
+
"Harar",
|
| 1576 |
+
"Nek’emtē",
|
| 1577 |
+
"Ārabī",
|
| 1578 |
+
"Debre Birhan",
|
| 1579 |
+
"Debre Mark’os",
|
| 1580 |
+
"Āsela",
|
| 1581 |
+
"Kombolcha",
|
| 1582 |
+
"Debre Tabor",
|
| 1583 |
+
"Ādīgrat"
|
| 1584 |
+
],
|
| 1585 |
+
"Finland": [
|
| 1586 |
+
"Helsinki",
|
| 1587 |
+
"Espoo",
|
| 1588 |
+
"Tampere",
|
| 1589 |
+
"Oulu",
|
| 1590 |
+
"Turku",
|
| 1591 |
+
"Vantaa",
|
| 1592 |
+
"East Helsinki",
|
| 1593 |
+
"Jyväskylä",
|
| 1594 |
+
"Kuopio",
|
| 1595 |
+
"Lahti",
|
| 1596 |
+
"Pori",
|
| 1597 |
+
"Kouvola",
|
| 1598 |
+
"Joensuu",
|
| 1599 |
+
"Lappeenranta",
|
| 1600 |
+
"Hämeenlinna",
|
| 1601 |
+
"Vaasa",
|
| 1602 |
+
"Seinäjoki",
|
| 1603 |
+
"Rovaniemi",
|
| 1604 |
+
"Kotka",
|
| 1605 |
+
"Mikkeli",
|
| 1606 |
+
"Porvoo",
|
| 1607 |
+
"Kokkola",
|
| 1608 |
+
"Nurmijärvi",
|
| 1609 |
+
"Hyvinge",
|
| 1610 |
+
"Järvenpää"
|
| 1611 |
+
],
|
| 1612 |
+
"Fiji": [
|
| 1613 |
+
"Nasinu",
|
| 1614 |
+
"Suva",
|
| 1615 |
+
"Lautoka",
|
| 1616 |
+
"Nadi",
|
| 1617 |
+
"Labasa",
|
| 1618 |
+
"Lami",
|
| 1619 |
+
"Sigatoka",
|
| 1620 |
+
"Ba",
|
| 1621 |
+
"Tavua",
|
| 1622 |
+
"Levuka",
|
| 1623 |
+
"Savusavu",
|
| 1624 |
+
"Vaileka",
|
| 1625 |
+
"Navua",
|
| 1626 |
+
"Vatukoula",
|
| 1627 |
+
"Ahau",
|
| 1628 |
+
"Tubou"
|
| 1629 |
+
],
|
| 1630 |
+
"Falkland Islands": [
|
| 1631 |
+
"Stanley"
|
| 1632 |
+
],
|
| 1633 |
+
"Micronesia": [
|
| 1634 |
+
"Weno",
|
| 1635 |
+
"Tofol",
|
| 1636 |
+
"Colonia",
|
| 1637 |
+
"Palikir",
|
| 1638 |
+
"Kolonia",
|
| 1639 |
+
"Kolonia Town",
|
| 1640 |
+
"Nema",
|
| 1641 |
+
"Satowan Village",
|
| 1642 |
+
"Lukunor Village",
|
| 1643 |
+
"Pulap Village",
|
| 1644 |
+
"Kuttu Village",
|
| 1645 |
+
"Moch Village",
|
| 1646 |
+
"Nomwin Village",
|
| 1647 |
+
"Ngatik",
|
| 1648 |
+
"Murilo",
|
| 1649 |
+
"Onoun",
|
| 1650 |
+
"Ifalik Village",
|
| 1651 |
+
"Satawal Village",
|
| 1652 |
+
"Oneop Village",
|
| 1653 |
+
"Fais",
|
| 1654 |
+
"Rumung",
|
| 1655 |
+
"Kapingamarangi",
|
| 1656 |
+
"Nukuoro",
|
| 1657 |
+
"Pingelap",
|
| 1658 |
+
"Namoluk"
|
| 1659 |
+
],
|
| 1660 |
+
"Faroe Islands": [
|
| 1661 |
+
"Tórshavn",
|
| 1662 |
+
"Klaksvík",
|
| 1663 |
+
"Hoyvík",
|
| 1664 |
+
"Argir",
|
| 1665 |
+
"Fuglafjørður",
|
| 1666 |
+
"Vágur",
|
| 1667 |
+
"Vestmanna",
|
| 1668 |
+
"Við Sjógv",
|
| 1669 |
+
"Sørvágur",
|
| 1670 |
+
"Saltangará",
|
| 1671 |
+
"Leirvík",
|
| 1672 |
+
"Miðvágur",
|
| 1673 |
+
"Strendur",
|
| 1674 |
+
"Toftir",
|
| 1675 |
+
"Tvøroyri",
|
| 1676 |
+
"Kollafjørður",
|
| 1677 |
+
"Sandavágur",
|
| 1678 |
+
"Skáli",
|
| 1679 |
+
"Hvalba",
|
| 1680 |
+
"Norðragøta",
|
| 1681 |
+
"Eiði",
|
| 1682 |
+
"Ytri Skáli",
|
| 1683 |
+
"Sandur",
|
| 1684 |
+
"Kvívík",
|
| 1685 |
+
"Runavík"
|
| 1686 |
+
],
|
| 1687 |
+
"France": [
|
| 1688 |
+
"Paris",
|
| 1689 |
+
"Marseille",
|
| 1690 |
+
"Lyon",
|
| 1691 |
+
"Toulouse",
|
| 1692 |
+
"Nice",
|
| 1693 |
+
"Nantes",
|
| 1694 |
+
"Marne La Vallée",
|
| 1695 |
+
"Strasbourg",
|
| 1696 |
+
"Bordeaux",
|
| 1697 |
+
"Montpellier",
|
| 1698 |
+
"Rouen",
|
| 1699 |
+
"Lille",
|
| 1700 |
+
"Rennes",
|
| 1701 |
+
"Reims",
|
| 1702 |
+
"Le Havre",
|
| 1703 |
+
"Cergy-Pontoise",
|
| 1704 |
+
"Paris 13e Arrondissement",
|
| 1705 |
+
"Saint-Étienne",
|
| 1706 |
+
"Toulon",
|
| 1707 |
+
"Angers",
|
| 1708 |
+
"Grenoble",
|
| 1709 |
+
"Dijon",
|
| 1710 |
+
"Nîmes",
|
| 1711 |
+
"Clermont-Ferrand",
|
| 1712 |
+
"Aix-en-Provence"
|
| 1713 |
+
],
|
| 1714 |
+
"Gabon": [
|
| 1715 |
+
"Libreville",
|
| 1716 |
+
"Port-Gentil",
|
| 1717 |
+
"Franceville",
|
| 1718 |
+
"Owendo",
|
| 1719 |
+
"Oyem",
|
| 1720 |
+
"Moanda",
|
| 1721 |
+
"Ntoum",
|
| 1722 |
+
"Lambaréné",
|
| 1723 |
+
"Mouila",
|
| 1724 |
+
"Akanda",
|
| 1725 |
+
"Tchibanga",
|
| 1726 |
+
"Bitam",
|
| 1727 |
+
"Koulamoutou",
|
| 1728 |
+
"Makokou",
|
| 1729 |
+
"Lastoursville",
|
| 1730 |
+
"Okondja",
|
| 1731 |
+
"Gamba",
|
| 1732 |
+
"Mitzic",
|
| 1733 |
+
"Lébamba",
|
| 1734 |
+
"Lékoni",
|
| 1735 |
+
"Mounana",
|
| 1736 |
+
"Fougamou",
|
| 1737 |
+
"Ndjolé",
|
| 1738 |
+
"Akiéni",
|
| 1739 |
+
"Mékambo"
|
| 1740 |
+
],
|
| 1741 |
+
"United Kingdom": [
|
| 1742 |
+
"London",
|
| 1743 |
+
"Birmingham",
|
| 1744 |
+
"Glasgow",
|
| 1745 |
+
"Manchester",
|
| 1746 |
+
"Sheffield",
|
| 1747 |
+
"Leeds",
|
| 1748 |
+
"Edinburgh",
|
| 1749 |
+
"Liverpool",
|
| 1750 |
+
"Bristol",
|
| 1751 |
+
"Cardiff",
|
| 1752 |
+
"Leicester",
|
| 1753 |
+
"Bradford",
|
| 1754 |
+
"Belfast",
|
| 1755 |
+
"Coventry",
|
| 1756 |
+
"Brent",
|
| 1757 |
+
"Birkenhead",
|
| 1758 |
+
"Nottingham",
|
| 1759 |
+
"Islington",
|
| 1760 |
+
"Reading",
|
| 1761 |
+
"Kingston upon Hull",
|
| 1762 |
+
"Preston",
|
| 1763 |
+
"Swansea",
|
| 1764 |
+
"Newcastle upon Tyne",
|
| 1765 |
+
"Southend-on-Sea",
|
| 1766 |
+
"Brighton"
|
| 1767 |
+
],
|
| 1768 |
+
"Grenada": [
|
| 1769 |
+
"Saint George's",
|
| 1770 |
+
"Gouyave",
|
| 1771 |
+
"Grenville",
|
| 1772 |
+
"Grand Roy",
|
| 1773 |
+
"Victoria",
|
| 1774 |
+
"Saint David’s",
|
| 1775 |
+
"Sauteurs",
|
| 1776 |
+
"Upper La Taste",
|
| 1777 |
+
"Hillsborough",
|
| 1778 |
+
"Tivoli"
|
| 1779 |
+
],
|
| 1780 |
+
"Georgia": [
|
| 1781 |
+
"Tbilisi",
|
| 1782 |
+
"Batumi",
|
| 1783 |
+
"Kutaisi",
|
| 1784 |
+
"Rustavi",
|
| 1785 |
+
"Sokhumi",
|
| 1786 |
+
"Gori",
|
| 1787 |
+
"Poti",
|
| 1788 |
+
"Zugdidi",
|
| 1789 |
+
"Ts’khinvali",
|
| 1790 |
+
"Stantsiya Novyy Afon",
|
| 1791 |
+
"Marneuli",
|
| 1792 |
+
"Khashuri",
|
| 1793 |
+
"Samtredia",
|
| 1794 |
+
"Zestaponi",
|
| 1795 |
+
"Telavi",
|
| 1796 |
+
"Kobuleti",
|
| 1797 |
+
"Akhaltsikhe",
|
| 1798 |
+
"Senaki",
|
| 1799 |
+
"Ozurgeti",
|
| 1800 |
+
"Gardabani",
|
| 1801 |
+
"Kaspi",
|
| 1802 |
+
"Chiatura",
|
| 1803 |
+
"Gagra",
|
| 1804 |
+
"Borjomi",
|
| 1805 |
+
"Kvareli"
|
| 1806 |
+
],
|
| 1807 |
+
"French Guiana": [
|
| 1808 |
+
"Cayenne",
|
| 1809 |
+
"Matoury",
|
| 1810 |
+
"Saint-Laurent-du-Maroni",
|
| 1811 |
+
"Kourou",
|
| 1812 |
+
"Rémire-Montjoly",
|
| 1813 |
+
"Apatou",
|
| 1814 |
+
"Grand-Santi",
|
| 1815 |
+
"Macouria",
|
| 1816 |
+
"Maripasoula",
|
| 1817 |
+
"Mana",
|
| 1818 |
+
"Sinnamary",
|
| 1819 |
+
"Saint-Georges",
|
| 1820 |
+
"Roura",
|
| 1821 |
+
"Régina",
|
| 1822 |
+
"Awala-Yalimapo",
|
| 1823 |
+
"Iracoubo",
|
| 1824 |
+
"Tonate",
|
| 1825 |
+
"Rémire"
|
| 1826 |
+
],
|
| 1827 |
+
"Guernsey": [
|
| 1828 |
+
"Saint Peter Port",
|
| 1829 |
+
"Vale Parish",
|
| 1830 |
+
"Saint Sampson",
|
| 1831 |
+
"Castel Parish",
|
| 1832 |
+
"Saint Martin Parish",
|
| 1833 |
+
"Saint Saviour Parish",
|
| 1834 |
+
"Saint Andrew Parish",
|
| 1835 |
+
"Saint Pierre du Bois Parish",
|
| 1836 |
+
"Forest Parish",
|
| 1837 |
+
"Torteval Parish",
|
| 1838 |
+
"Sark",
|
| 1839 |
+
"Torteval",
|
| 1840 |
+
"St Anne",
|
| 1841 |
+
"Saint Saviour",
|
| 1842 |
+
"Castel",
|
| 1843 |
+
"Saint Andrew",
|
| 1844 |
+
"St Martin"
|
| 1845 |
+
],
|
| 1846 |
+
"Ghana": [
|
| 1847 |
+
"Kumasi",
|
| 1848 |
+
"Accra",
|
| 1849 |
+
"Tamale",
|
| 1850 |
+
"Takoradi",
|
| 1851 |
+
"Sekondi",
|
| 1852 |
+
"Cape Coast",
|
| 1853 |
+
"Atsiaman",
|
| 1854 |
+
"Ashaiman",
|
| 1855 |
+
"Obuase",
|
| 1856 |
+
"Tema",
|
| 1857 |
+
"Koforidua",
|
| 1858 |
+
"Teshi Old Town",
|
| 1859 |
+
"Sekondi-Takoradi",
|
| 1860 |
+
"Ho",
|
| 1861 |
+
"Amanfrom",
|
| 1862 |
+
"Medina Estates",
|
| 1863 |
+
"Twifu Praso",
|
| 1864 |
+
"Japekrom",
|
| 1865 |
+
"Tema New Town",
|
| 1866 |
+
"Sunyani",
|
| 1867 |
+
"Hohoe",
|
| 1868 |
+
"Jirapa",
|
| 1869 |
+
"Kasoa",
|
| 1870 |
+
"Gbawe",
|
| 1871 |
+
"Techiman"
|
| 1872 |
+
],
|
| 1873 |
+
"Gibraltar": [
|
| 1874 |
+
"Gibraltar",
|
| 1875 |
+
"Reclamation Areas",
|
| 1876 |
+
"South District",
|
| 1877 |
+
"Town Area",
|
| 1878 |
+
"Upper Town",
|
| 1879 |
+
"Sandpits",
|
| 1880 |
+
"Catalan Bay"
|
| 1881 |
+
],
|
| 1882 |
+
"Greenland": [
|
| 1883 |
+
"Nuuk",
|
| 1884 |
+
"Sisimiut",
|
| 1885 |
+
"Ilulissat",
|
| 1886 |
+
"Qaqortoq",
|
| 1887 |
+
"Aasiaat",
|
| 1888 |
+
"Maniitsoq",
|
| 1889 |
+
"Tasiilaq",
|
| 1890 |
+
"Uummannaq",
|
| 1891 |
+
"Narsaq",
|
| 1892 |
+
"Paamiut",
|
| 1893 |
+
"Nanortalik",
|
| 1894 |
+
"Upernavik",
|
| 1895 |
+
"Qasigiannguit",
|
| 1896 |
+
"Qeqertarsuaq",
|
| 1897 |
+
"Qaanaaq",
|
| 1898 |
+
"Kangaatsiaq",
|
| 1899 |
+
"Kangerlussuaq"
|
| 1900 |
+
],
|
| 1901 |
+
"Gambia": [
|
| 1902 |
+
"Serekunda",
|
| 1903 |
+
"Brikama",
|
| 1904 |
+
"Bununka Kunda",
|
| 1905 |
+
"Sukuta",
|
| 1906 |
+
"Talinding",
|
| 1907 |
+
"Faji Kunda",
|
| 1908 |
+
"Bakau",
|
| 1909 |
+
"Banjul",
|
| 1910 |
+
"Nema Kunku",
|
| 1911 |
+
"Farafenni",
|
| 1912 |
+
"Bakau New Town",
|
| 1913 |
+
"Busumbala",
|
| 1914 |
+
"Lamin",
|
| 1915 |
+
"Welingara",
|
| 1916 |
+
"Brufut",
|
| 1917 |
+
"Ibo Town",
|
| 1918 |
+
"Sanchaba",
|
| 1919 |
+
"Latri Kunda",
|
| 1920 |
+
"Gunjur",
|
| 1921 |
+
"Manjai Kunda",
|
| 1922 |
+
"Dippa Kunda",
|
| 1923 |
+
"New Jeshwang",
|
| 1924 |
+
"Bakoti",
|
| 1925 |
+
"Kunkujang",
|
| 1926 |
+
"Sinchu Alagi"
|
| 1927 |
+
],
|
| 1928 |
+
"Guinea": [
|
| 1929 |
+
"Conakry",
|
| 1930 |
+
"Camayenne",
|
| 1931 |
+
"Nzérékoré",
|
| 1932 |
+
"Kankan",
|
| 1933 |
+
"Manéah",
|
| 1934 |
+
"Dubréka",
|
| 1935 |
+
"Kindia",
|
| 1936 |
+
"Siguiri",
|
| 1937 |
+
"Kissidougou",
|
| 1938 |
+
"Kamsar",
|
| 1939 |
+
"Labé",
|
| 1940 |
+
"Gueckedou",
|
| 1941 |
+
"Mamou",
|
| 1942 |
+
"Coyah",
|
| 1943 |
+
"Faranah",
|
| 1944 |
+
"Macenta",
|
| 1945 |
+
"Fria",
|
| 1946 |
+
"Boké",
|
| 1947 |
+
"Sangarédi",
|
| 1948 |
+
"Kouroussa",
|
| 1949 |
+
"Lola",
|
| 1950 |
+
"Télimélé",
|
| 1951 |
+
"Dabola",
|
| 1952 |
+
"Kintinian",
|
| 1953 |
+
"Kérouané"
|
| 1954 |
+
],
|
| 1955 |
+
"Guadeloupe": [
|
| 1956 |
+
"Les Abymes",
|
| 1957 |
+
"Baie-Mahault",
|
| 1958 |
+
"Le Gosier",
|
| 1959 |
+
"Petit-Bourg",
|
| 1960 |
+
"Sainte-Anne",
|
| 1961 |
+
"Le Moule",
|
| 1962 |
+
"Sainte-Rose",
|
| 1963 |
+
"Capesterre-Belle-Eau",
|
| 1964 |
+
"Pointe-à-Pitre",
|
| 1965 |
+
"Lamentin",
|
| 1966 |
+
"Saint-François",
|
| 1967 |
+
"Basse-Terre",
|
| 1968 |
+
"Saint-Claude",
|
| 1969 |
+
"Trois-Rivières",
|
| 1970 |
+
"Gourbeyre",
|
| 1971 |
+
"Petit-Canal",
|
| 1972 |
+
"Pointe-Noire",
|
| 1973 |
+
"Vieux-Habitants",
|
| 1974 |
+
"Grand-Bourg",
|
| 1975 |
+
"Baillif",
|
| 1976 |
+
"Port-Louis",
|
| 1977 |
+
"Anse-Bertrand",
|
| 1978 |
+
"Beauséjour",
|
| 1979 |
+
"Petites Anses"
|
| 1980 |
+
],
|
| 1981 |
+
"Equatorial Guinea": [
|
| 1982 |
+
"Bata",
|
| 1983 |
+
"Malabo",
|
| 1984 |
+
"Ebebiyin",
|
| 1985 |
+
"Aconibe",
|
| 1986 |
+
"Añisoc",
|
| 1987 |
+
"Luba",
|
| 1988 |
+
"Evinayong",
|
| 1989 |
+
"Mongomo",
|
| 1990 |
+
"Aual",
|
| 1991 |
+
"Mikomeseng",
|
| 1992 |
+
"Rebola",
|
| 1993 |
+
"Cogo",
|
| 1994 |
+
"San Antonio de Palé",
|
| 1995 |
+
"Mbini",
|
| 1996 |
+
"Nsok",
|
| 1997 |
+
"Ayene",
|
| 1998 |
+
"Machinda",
|
| 1999 |
+
"Acurenam",
|
| 2000 |
+
"Santiago de Baney",
|
| 2001 |
+
"Bicurga",
|
| 2002 |
+
"Nsang",
|
| 2003 |
+
"Ncue",
|
| 2004 |
+
"Bitica",
|
| 2005 |
+
"Río Campo",
|
| 2006 |
+
"Moca"
|
| 2007 |
+
],
|
| 2008 |
+
"Greece": [
|
| 2009 |
+
"Athens",
|
| 2010 |
+
"Thessaloníki",
|
| 2011 |
+
"Pátra",
|
| 2012 |
+
"Piraeus",
|
| 2013 |
+
"Lárisa",
|
| 2014 |
+
"Peristéri",
|
| 2015 |
+
"Irákleion",
|
| 2016 |
+
"Kallithéa",
|
| 2017 |
+
"Acharnés",
|
| 2018 |
+
"Kalamariá",
|
| 2019 |
+
"Níkaia",
|
| 2020 |
+
"Glyfáda",
|
| 2021 |
+
"Volos",
|
| 2022 |
+
"Ílion",
|
| 2023 |
+
"Ilioúpoli",
|
| 2024 |
+
"Keratsíni",
|
| 2025 |
+
"Évosmos",
|
| 2026 |
+
"Khalándrion",
|
| 2027 |
+
"Néa Smýrni",
|
| 2028 |
+
"Maroúsi",
|
| 2029 |
+
"Agios Dimitrios",
|
| 2030 |
+
"Zográfos",
|
| 2031 |
+
"Aigáleo",
|
| 2032 |
+
"Néa Ionía",
|
| 2033 |
+
"Ioánnina"
|
| 2034 |
+
],
|
| 2035 |
+
"South Georgia and the South Sandwich Islands": [
|
| 2036 |
+
"Grytviken"
|
| 2037 |
+
],
|
| 2038 |
+
"Guatemala": [
|
| 2039 |
+
"Guatemala City",
|
| 2040 |
+
"Villa Nueva",
|
| 2041 |
+
"Mixco",
|
| 2042 |
+
"Cobán",
|
| 2043 |
+
"Quetzaltenango",
|
| 2044 |
+
"Jalapa",
|
| 2045 |
+
"Escuintla",
|
| 2046 |
+
"Villa Canales",
|
| 2047 |
+
"Jutiapa",
|
| 2048 |
+
"Chichicastenango",
|
| 2049 |
+
"San Juan Sacatepéquez",
|
| 2050 |
+
"Petapa",
|
| 2051 |
+
"Santa Lucía Cotzumalguapa",
|
| 2052 |
+
"Chiquimula",
|
| 2053 |
+
"Coatepeque",
|
| 2054 |
+
"Chinautla",
|
| 2055 |
+
"Totonicapán",
|
| 2056 |
+
"Puerto Barrios",
|
| 2057 |
+
"Chimaltenango",
|
| 2058 |
+
"Malacatán",
|
| 2059 |
+
"Retalhuleu",
|
| 2060 |
+
"Santa Catarina Pinula",
|
| 2061 |
+
"San José Pinula",
|
| 2062 |
+
"Huehuetenango",
|
| 2063 |
+
"Santa Cruz del Quiché"
|
| 2064 |
+
],
|
| 2065 |
+
"Guam": [
|
| 2066 |
+
"Dededo Village",
|
| 2067 |
+
"Yigo Village",
|
| 2068 |
+
"Tamuning-Tumon-Harmon Village",
|
| 2069 |
+
"Tamuning",
|
| 2070 |
+
"Mangilao Village",
|
| 2071 |
+
"Barrigada Village",
|
| 2072 |
+
"Santa Rita Village",
|
| 2073 |
+
"Mongmong-Toto-Maite Village",
|
| 2074 |
+
"Chalan Pago-Ordot Village",
|
| 2075 |
+
"Yona Village",
|
| 2076 |
+
"Apotgan",
|
| 2077 |
+
"Agana Heights Village",
|
| 2078 |
+
"Adacao",
|
| 2079 |
+
"Agat Village",
|
| 2080 |
+
"Talofofo Village",
|
| 2081 |
+
"Inarajan Village",
|
| 2082 |
+
"Apra Harbor",
|
| 2083 |
+
"Sinajana Village",
|
| 2084 |
+
"Chaguian",
|
| 2085 |
+
"Anao",
|
| 2086 |
+
"Merizo Village",
|
| 2087 |
+
"Asan-Maina Village",
|
| 2088 |
+
"Piti Village",
|
| 2089 |
+
"Hagåtña",
|
| 2090 |
+
"Hagåtña Village"
|
| 2091 |
+
],
|
| 2092 |
+
"Guinea-Bissau": [
|
| 2093 |
+
"Bissau",
|
| 2094 |
+
"Gabú",
|
| 2095 |
+
"Bafatá",
|
| 2096 |
+
"Canchungo",
|
| 2097 |
+
"Bissorã",
|
| 2098 |
+
"Jabicunda",
|
| 2099 |
+
"Madina do Boé",
|
| 2100 |
+
"Bolama",
|
| 2101 |
+
"Cacheu",
|
| 2102 |
+
"Bula",
|
| 2103 |
+
"Farim",
|
| 2104 |
+
"Catió",
|
| 2105 |
+
"Mansôa",
|
| 2106 |
+
"Bubaque",
|
| 2107 |
+
"Ingoré",
|
| 2108 |
+
"Buba",
|
| 2109 |
+
"Bambadinca",
|
| 2110 |
+
"Quebo",
|
| 2111 |
+
"Quinhámel",
|
| 2112 |
+
"São Domingos",
|
| 2113 |
+
"Mansabá",
|
| 2114 |
+
"Pitche",
|
| 2115 |
+
"Contuboel",
|
| 2116 |
+
"Prábis",
|
| 2117 |
+
"Safim"
|
| 2118 |
+
],
|
| 2119 |
+
"Guyana": [
|
| 2120 |
+
"Georgetown",
|
| 2121 |
+
"Linden",
|
| 2122 |
+
"New Amsterdam",
|
| 2123 |
+
"Anna Regina",
|
| 2124 |
+
"Bartica",
|
| 2125 |
+
"Rose Hall",
|
| 2126 |
+
"Skeldon",
|
| 2127 |
+
"Rosignol",
|
| 2128 |
+
"Mahaica Village",
|
| 2129 |
+
"Mahdia",
|
| 2130 |
+
"Parika",
|
| 2131 |
+
"Vreed-en-Hoop",
|
| 2132 |
+
"Mahaicony Village",
|
| 2133 |
+
"Helena Number One",
|
| 2134 |
+
"Mabaruma",
|
| 2135 |
+
"Lethem",
|
| 2136 |
+
"Fort Wellington"
|
| 2137 |
+
],
|
| 2138 |
+
"Hong Kong": [
|
| 2139 |
+
"Hong Kong",
|
| 2140 |
+
"New Territories",
|
| 2141 |
+
"Kowloon",
|
| 2142 |
+
"Hong Kong Island",
|
| 2143 |
+
"Victoria",
|
| 2144 |
+
"Tuen Mun",
|
| 2145 |
+
"Sha Tin",
|
| 2146 |
+
"Sham Shui Po",
|
| 2147 |
+
"Wong Tai Sin",
|
| 2148 |
+
"Kowloon City",
|
| 2149 |
+
"Tseung Kwan O",
|
| 2150 |
+
"Kwai Chung",
|
| 2151 |
+
"Tsuen Wan",
|
| 2152 |
+
"Tin Shui Wai",
|
| 2153 |
+
"Tai Po",
|
| 2154 |
+
"Fanling",
|
| 2155 |
+
"Ma On Shan",
|
| 2156 |
+
"Yuen Long San Hui",
|
| 2157 |
+
"Yuen Long",
|
| 2158 |
+
"Kowloon City Centre",
|
| 2159 |
+
"Tsing Yi Town",
|
| 2160 |
+
"Yuen Long Kau Hui",
|
| 2161 |
+
"Wan Chai",
|
| 2162 |
+
"Aberdeen",
|
| 2163 |
+
"San Tung Chung Hang"
|
| 2164 |
+
],
|
| 2165 |
+
"Honduras": [
|
| 2166 |
+
"Tegucigalpa",
|
| 2167 |
+
"San Pedro Sula",
|
| 2168 |
+
"La Ceiba",
|
| 2169 |
+
"Choloma",
|
| 2170 |
+
"El Progreso",
|
| 2171 |
+
"Ciudad Choluteca",
|
| 2172 |
+
"Comayagua",
|
| 2173 |
+
"Puerto Cortez",
|
| 2174 |
+
"La Lima",
|
| 2175 |
+
"Danlí",
|
| 2176 |
+
"Siguatepeque",
|
| 2177 |
+
"Juticalpa",
|
| 2178 |
+
"Villanueva",
|
| 2179 |
+
"Tocoa",
|
| 2180 |
+
"Tela",
|
| 2181 |
+
"Santa Rosa de Copán",
|
| 2182 |
+
"Olanchito",
|
| 2183 |
+
"San Lorenzo",
|
| 2184 |
+
"Cofradía",
|
| 2185 |
+
"El Paraíso",
|
| 2186 |
+
"La Paz",
|
| 2187 |
+
"Yoro",
|
| 2188 |
+
"Potrerillos",
|
| 2189 |
+
"Santa Bárbara",
|
| 2190 |
+
"La Entrada"
|
| 2191 |
+
],
|
| 2192 |
+
"Croatia": [
|
| 2193 |
+
"Zagreb",
|
| 2194 |
+
"Split",
|
| 2195 |
+
"Rijeka",
|
| 2196 |
+
"Osijek",
|
| 2197 |
+
"Zadar",
|
| 2198 |
+
"Sesvete",
|
| 2199 |
+
"Pula",
|
| 2200 |
+
"Slavonski Brod",
|
| 2201 |
+
"Karlovac",
|
| 2202 |
+
"Centar",
|
| 2203 |
+
"Varaždin",
|
| 2204 |
+
"Šibenik",
|
| 2205 |
+
"Velika Gorica",
|
| 2206 |
+
"Vinkovci",
|
| 2207 |
+
"Sisak",
|
| 2208 |
+
"Dubrovnik",
|
| 2209 |
+
"Bjelovar",
|
| 2210 |
+
"Koprivnica",
|
| 2211 |
+
"Vukovar",
|
| 2212 |
+
"Solin",
|
| 2213 |
+
"Zaprešić",
|
| 2214 |
+
"Samobor",
|
| 2215 |
+
"Đakovo",
|
| 2216 |
+
"Požega",
|
| 2217 |
+
"Čakovec"
|
| 2218 |
+
],
|
| 2219 |
+
"Haiti": [
|
| 2220 |
+
"Port-au-Prince",
|
| 2221 |
+
"Carrefour",
|
| 2222 |
+
"Delmas",
|
| 2223 |
+
"Port-de-Paix",
|
| 2224 |
+
"Pétionville",
|
| 2225 |
+
"Croix-des-Bouquets",
|
| 2226 |
+
"Jacmel",
|
| 2227 |
+
"Cap-Haïtien",
|
| 2228 |
+
"Léogâne",
|
| 2229 |
+
"Les Cayes",
|
| 2230 |
+
"Tigwav",
|
| 2231 |
+
"Jérémie",
|
| 2232 |
+
"Saint-Michel de l'Atalaye",
|
| 2233 |
+
"Miragoâne",
|
| 2234 |
+
"Gonaïves",
|
| 2235 |
+
"Saint-Marc",
|
| 2236 |
+
"Thomazeau",
|
| 2237 |
+
"Grangwav",
|
| 2238 |
+
"Verrettes",
|
| 2239 |
+
"Kenscoff",
|
| 2240 |
+
"Saint-Raphaël",
|
| 2241 |
+
"Ti Port-de-Paix",
|
| 2242 |
+
"Lenbe",
|
| 2243 |
+
"Gressier",
|
| 2244 |
+
"Hinche"
|
| 2245 |
+
],
|
| 2246 |
+
"Hungary": [
|
| 2247 |
+
"Budapest",
|
| 2248 |
+
"Debrecen",
|
| 2249 |
+
"Szeged",
|
| 2250 |
+
"Miskolc",
|
| 2251 |
+
"Pécs",
|
| 2252 |
+
"Budapest XI. kerület",
|
| 2253 |
+
"Zugló",
|
| 2254 |
+
"Győr",
|
| 2255 |
+
"Budapest III. kerület",
|
| 2256 |
+
"Nyíregyháza",
|
| 2257 |
+
"Budapest XIII. kerület",
|
| 2258 |
+
"Kecskemét",
|
| 2259 |
+
"Székesfehérvár",
|
| 2260 |
+
"Budapest IV. kerület",
|
| 2261 |
+
"Budapest XVIII. kerület",
|
| 2262 |
+
"Budapest II. kerület",
|
| 2263 |
+
"Budapest VIII. kerület",
|
| 2264 |
+
"Budapest XV. kerület",
|
| 2265 |
+
"Kőbánya",
|
| 2266 |
+
"Budapest XVII. kerület",
|
| 2267 |
+
"Szombathely",
|
| 2268 |
+
"Józsefváros",
|
| 2269 |
+
"Budapest XXI. kerület",
|
| 2270 |
+
"Szolnok",
|
| 2271 |
+
"Budapest XVI. kerület"
|
| 2272 |
+
],
|
| 2273 |
+
"Indonesia": [
|
| 2274 |
+
"Jakarta",
|
| 2275 |
+
"Surabaya",
|
| 2276 |
+
"Bekasi",
|
| 2277 |
+
"Bandung",
|
| 2278 |
+
"Medan",
|
| 2279 |
+
"Depok",
|
| 2280 |
+
"Tangerang",
|
| 2281 |
+
"Palembang",
|
| 2282 |
+
"Semarang",
|
| 2283 |
+
"Makassar",
|
| 2284 |
+
"South Tangerang",
|
| 2285 |
+
"Jepara",
|
| 2286 |
+
"Bandar Lampung",
|
| 2287 |
+
"Batam",
|
| 2288 |
+
"Bogor",
|
| 2289 |
+
"Pekanbaru",
|
| 2290 |
+
"Padang",
|
| 2291 |
+
"Malang",
|
| 2292 |
+
"Samarinda",
|
| 2293 |
+
"Tasikmalaya",
|
| 2294 |
+
"Denpasar",
|
| 2295 |
+
"Balikpapan",
|
| 2296 |
+
"Serang",
|
| 2297 |
+
"Situbondo",
|
| 2298 |
+
"Pontianak"
|
| 2299 |
+
],
|
| 2300 |
+
"Ireland": [
|
| 2301 |
+
"Dublin",
|
| 2302 |
+
"South Dublin",
|
| 2303 |
+
"Cork",
|
| 2304 |
+
"Limerick",
|
| 2305 |
+
"Galway",
|
| 2306 |
+
"Tallaght",
|
| 2307 |
+
"Waterford",
|
| 2308 |
+
"Swords",
|
| 2309 |
+
"Drogheda",
|
| 2310 |
+
"Dundalk",
|
| 2311 |
+
"Bray",
|
| 2312 |
+
"Douglas",
|
| 2313 |
+
"Dún Laoghaire",
|
| 2314 |
+
"Ennis",
|
| 2315 |
+
"Navan",
|
| 2316 |
+
"Carlow",
|
| 2317 |
+
"Tralee",
|
| 2318 |
+
"Droichead Nua",
|
| 2319 |
+
"Sandyford",
|
| 2320 |
+
"Balbriggan",
|
| 2321 |
+
"Kilkenny",
|
| 2322 |
+
"Athlone",
|
| 2323 |
+
"Naas",
|
| 2324 |
+
"Celbridge",
|
| 2325 |
+
"Wexford"
|
| 2326 |
+
],
|
| 2327 |
+
"Israel": [
|
| 2328 |
+
"Jerusalem",
|
| 2329 |
+
"Tel Aviv",
|
| 2330 |
+
"West Jerusalem",
|
| 2331 |
+
"Haifa",
|
| 2332 |
+
"Rishon LeTsiyyon",
|
| 2333 |
+
"Petaẖ Tiqva",
|
| 2334 |
+
"Netanya",
|
| 2335 |
+
"Ashdod",
|
| 2336 |
+
"Bnei Brak",
|
| 2337 |
+
"H̱olon",
|
| 2338 |
+
"Beersheba",
|
| 2339 |
+
"Ramat Gan",
|
| 2340 |
+
"Reẖovot",
|
| 2341 |
+
"Ashkelon",
|
| 2342 |
+
"Bat Yam",
|
| 2343 |
+
"Bet Shemesh",
|
| 2344 |
+
"Kfar Saba",
|
| 2345 |
+
"Jaffa",
|
| 2346 |
+
"Herzliya",
|
| 2347 |
+
"Hadera",
|
| 2348 |
+
"Modi‘in Makkabbim Re‘ut",
|
| 2349 |
+
"Nazareth",
|
| 2350 |
+
"Lod",
|
| 2351 |
+
"Modiin Ilit",
|
| 2352 |
+
"Ramla"
|
| 2353 |
+
],
|
| 2354 |
+
"Isle of Man": [
|
| 2355 |
+
"Douglas",
|
| 2356 |
+
"Ramsey",
|
| 2357 |
+
"Peel",
|
| 2358 |
+
"Port Erin",
|
| 2359 |
+
"Castletown",
|
| 2360 |
+
"Laxey",
|
| 2361 |
+
"Santon",
|
| 2362 |
+
"Port Saint Mary",
|
| 2363 |
+
"Patrick",
|
| 2364 |
+
"Onchan",
|
| 2365 |
+
"Maughold",
|
| 2366 |
+
"Lezayre",
|
| 2367 |
+
"Kirkmichael",
|
| 2368 |
+
"Kirk Braddan",
|
| 2369 |
+
"Jurby",
|
| 2370 |
+
"Crosby",
|
| 2371 |
+
"Bride",
|
| 2372 |
+
"Ballasalla",
|
| 2373 |
+
"Ballabeg",
|
| 2374 |
+
"Andreas",
|
| 2375 |
+
"Ballaugh"
|
| 2376 |
+
],
|
| 2377 |
+
"India": [
|
| 2378 |
+
"Mumbai",
|
| 2379 |
+
"Delhi",
|
| 2380 |
+
"Bengaluru",
|
| 2381 |
+
"Hyderabad",
|
| 2382 |
+
"Ahmedabad",
|
| 2383 |
+
"Chennai",
|
| 2384 |
+
"Kolkata",
|
| 2385 |
+
"Surat",
|
| 2386 |
+
"Pune",
|
| 2387 |
+
"Jaipur",
|
| 2388 |
+
"Kanpur",
|
| 2389 |
+
"Navi Mumbai",
|
| 2390 |
+
"Lucknow",
|
| 2391 |
+
"Nagpur",
|
| 2392 |
+
"Coimbatore",
|
| 2393 |
+
"Indore",
|
| 2394 |
+
"Thāne",
|
| 2395 |
+
"Vadodara",
|
| 2396 |
+
"Bhopal",
|
| 2397 |
+
"Rasapūdipalem",
|
| 2398 |
+
"Pimpri-Chinchwad",
|
| 2399 |
+
"Patna",
|
| 2400 |
+
"Kallakurichi",
|
| 2401 |
+
"Ludhiana",
|
| 2402 |
+
"Nashik"
|
| 2403 |
+
],
|
| 2404 |
+
"British Indian Ocean Territory": [
|
| 2405 |
+
"Downtown"
|
| 2406 |
+
],
|
| 2407 |
+
"Iraq": [
|
| 2408 |
+
"Baghdad",
|
| 2409 |
+
"Al Mawşil al Jadīdah",
|
| 2410 |
+
"Al Başrah al Qadīmah",
|
| 2411 |
+
"Mosul",
|
| 2412 |
+
"Erbil",
|
| 2413 |
+
"Basrah",
|
| 2414 |
+
"Karbala",
|
| 2415 |
+
"Kirkuk",
|
| 2416 |
+
"Abū Ghurayb",
|
| 2417 |
+
"As Sulaymānīyah",
|
| 2418 |
+
"Nasiriyah",
|
| 2419 |
+
"Najaf",
|
| 2420 |
+
"Al Ḩillah",
|
| 2421 |
+
"Al Maḩmūdīyah",
|
| 2422 |
+
"Dihok",
|
| 2423 |
+
"Al ‘Amārah",
|
| 2424 |
+
"Ad Dīwānīyah",
|
| 2425 |
+
"Al Kūt",
|
| 2426 |
+
"Al Qurnah",
|
| 2427 |
+
"Al Madīnah",
|
| 2428 |
+
"Kelar",
|
| 2429 |
+
"Ramadi",
|
| 2430 |
+
"Al Fallūjah",
|
| 2431 |
+
"Sāmarrā’",
|
| 2432 |
+
"As Samawah"
|
| 2433 |
+
],
|
| 2434 |
+
"Iran": [
|
| 2435 |
+
"Tehran",
|
| 2436 |
+
"Mashhad",
|
| 2437 |
+
"Isfahan",
|
| 2438 |
+
"Karaj",
|
| 2439 |
+
"Tabriz",
|
| 2440 |
+
"Shiraz",
|
| 2441 |
+
"Qom",
|
| 2442 |
+
"Ahvaz",
|
| 2443 |
+
"Pasragad Branch",
|
| 2444 |
+
"Kermanshah",
|
| 2445 |
+
"Rasht",
|
| 2446 |
+
"Kerman",
|
| 2447 |
+
"Orūmīyeh",
|
| 2448 |
+
"Zahedan",
|
| 2449 |
+
"Hamadān",
|
| 2450 |
+
"Āzādshahr",
|
| 2451 |
+
"Arāk",
|
| 2452 |
+
"Yazd",
|
| 2453 |
+
"Eslamshahr",
|
| 2454 |
+
"Ardabīl",
|
| 2455 |
+
"Abadan",
|
| 2456 |
+
"Zanjan",
|
| 2457 |
+
"Bandar Abbas",
|
| 2458 |
+
"Sanandaj",
|
| 2459 |
+
"Qazvin"
|
| 2460 |
+
],
|
| 2461 |
+
"Iceland": [
|
| 2462 |
+
"Reykjavík",
|
| 2463 |
+
"Kópavogur",
|
| 2464 |
+
"Hafnarfjörður",
|
| 2465 |
+
"Reykjanesbær",
|
| 2466 |
+
"Akureyri",
|
| 2467 |
+
"Keflavík",
|
| 2468 |
+
"Mosfellsbær",
|
| 2469 |
+
"Garðabær",
|
| 2470 |
+
"Selfoss",
|
| 2471 |
+
"Akranes",
|
| 2472 |
+
"Seltjarnarnes",
|
| 2473 |
+
"Vestmannaeyjar",
|
| 2474 |
+
"Grindavík",
|
| 2475 |
+
"Ísafjörður",
|
| 2476 |
+
"Sauðárkrókur",
|
| 2477 |
+
"Egilsstaðir",
|
| 2478 |
+
"Álftanes",
|
| 2479 |
+
"Hveragerði",
|
| 2480 |
+
"Norðurþing",
|
| 2481 |
+
"Borgarnes",
|
| 2482 |
+
"Höfn",
|
| 2483 |
+
"Þorlákshöfn",
|
| 2484 |
+
"Sandgerði",
|
| 2485 |
+
"Neskaupstaður",
|
| 2486 |
+
"Garður"
|
| 2487 |
+
],
|
| 2488 |
+
"Italy": [
|
| 2489 |
+
"Rome",
|
| 2490 |
+
"Milan",
|
| 2491 |
+
"Naples",
|
| 2492 |
+
"Turin",
|
| 2493 |
+
"Palermo",
|
| 2494 |
+
"Genoa",
|
| 2495 |
+
"Bologna",
|
| 2496 |
+
"Florence",
|
| 2497 |
+
"Bari",
|
| 2498 |
+
"Catania",
|
| 2499 |
+
"Verona",
|
| 2500 |
+
"Messina",
|
| 2501 |
+
"Trieste",
|
| 2502 |
+
"Padova",
|
| 2503 |
+
"Brescia",
|
| 2504 |
+
"Taranto",
|
| 2505 |
+
"Parma",
|
| 2506 |
+
"Prato",
|
| 2507 |
+
"Modena",
|
| 2508 |
+
"Reggio Calabria",
|
| 2509 |
+
"Quarto Oggiaro",
|
| 2510 |
+
"Reggio nell'Emilia",
|
| 2511 |
+
"Livorno",
|
| 2512 |
+
"Cagliari",
|
| 2513 |
+
"Rimini"
|
| 2514 |
+
],
|
| 2515 |
+
"Jersey": [
|
| 2516 |
+
"Saint Helier",
|
| 2517 |
+
"Trinity",
|
| 2518 |
+
"Saint John",
|
| 2519 |
+
"Le Hocq"
|
| 2520 |
+
],
|
| 2521 |
+
"Jamaica": [
|
| 2522 |
+
"Kingston",
|
| 2523 |
+
"New Kingston",
|
| 2524 |
+
"Spanish Town",
|
| 2525 |
+
"Portmore",
|
| 2526 |
+
"Montego Bay",
|
| 2527 |
+
"Mandeville",
|
| 2528 |
+
"May Pen",
|
| 2529 |
+
"Old Harbour",
|
| 2530 |
+
"Linstead",
|
| 2531 |
+
"Half Way Tree",
|
| 2532 |
+
"Savanna-la-Mar",
|
| 2533 |
+
"Port Antonio",
|
| 2534 |
+
"Saint Ann’s Bay",
|
| 2535 |
+
"Bog Walk",
|
| 2536 |
+
"Constant Spring",
|
| 2537 |
+
"Ewarton",
|
| 2538 |
+
"Tower Hill",
|
| 2539 |
+
"Torrington Park",
|
| 2540 |
+
"Penwood",
|
| 2541 |
+
"Barbican",
|
| 2542 |
+
"Mountain View Gardens",
|
| 2543 |
+
"Hayes",
|
| 2544 |
+
"Ocho Rios",
|
| 2545 |
+
"Morant Bay",
|
| 2546 |
+
"Stony Hill"
|
| 2547 |
+
],
|
| 2548 |
+
"Jordan": [
|
| 2549 |
+
"Amman",
|
| 2550 |
+
"Zarqa",
|
| 2551 |
+
"Irbid",
|
| 2552 |
+
"Russeifa",
|
| 2553 |
+
"Ḩayy Khildā",
|
| 2554 |
+
"Khuraybat as Sūq",
|
| 2555 |
+
"Wādī as Sīr",
|
| 2556 |
+
"Ar Ramthā",
|
| 2557 |
+
"Ṣuwayliḥ",
|
| 2558 |
+
"‘Ajlūn",
|
| 2559 |
+
"As Salţ",
|
| 2560 |
+
"Aqaba",
|
| 2561 |
+
"Rukban",
|
| 2562 |
+
"Marj Al Hamam",
|
| 2563 |
+
"Mādabā",
|
| 2564 |
+
"Mafraq",
|
| 2565 |
+
"Az̧ Z̧ulayl",
|
| 2566 |
+
"Ma'an",
|
| 2567 |
+
"Al Jubayhah",
|
| 2568 |
+
"Saḩāb",
|
| 2569 |
+
"Ḩayy al Quwaysimah",
|
| 2570 |
+
"Jarash",
|
| 2571 |
+
"Aţ Ţafīlah",
|
| 2572 |
+
"‘Izrā",
|
| 2573 |
+
"Qīr Moāv"
|
| 2574 |
+
],
|
| 2575 |
+
"Japan": [
|
| 2576 |
+
"Tokyo",
|
| 2577 |
+
"Yokohama",
|
| 2578 |
+
"Osaka",
|
| 2579 |
+
"Nagoya",
|
| 2580 |
+
"Sapporo",
|
| 2581 |
+
"Fukuoka",
|
| 2582 |
+
"Kawasaki",
|
| 2583 |
+
"Kobe",
|
| 2584 |
+
"Kyoto",
|
| 2585 |
+
"Saitama",
|
| 2586 |
+
"Hiroshima",
|
| 2587 |
+
"Sendai",
|
| 2588 |
+
"Chiba",
|
| 2589 |
+
"Kitakyushu",
|
| 2590 |
+
"Setagaya",
|
| 2591 |
+
"Sakai",
|
| 2592 |
+
"Niigata",
|
| 2593 |
+
"Hamamatsu",
|
| 2594 |
+
"Ōta",
|
| 2595 |
+
"Kumamoto",
|
| 2596 |
+
"Aihara",
|
| 2597 |
+
"Okayama",
|
| 2598 |
+
"Sagamihara",
|
| 2599 |
+
"Edogawe",
|
| 2600 |
+
"Adachi"
|
| 2601 |
+
],
|
| 2602 |
+
"Kenya": [
|
| 2603 |
+
"Nairobi",
|
| 2604 |
+
"Kakamega",
|
| 2605 |
+
"Mombasa",
|
| 2606 |
+
"Nakuru",
|
| 2607 |
+
"Ruiru",
|
| 2608 |
+
"Eldoret",
|
| 2609 |
+
"Kisumu",
|
| 2610 |
+
"Kikuyu",
|
| 2611 |
+
"Thika",
|
| 2612 |
+
"Naivasha",
|
| 2613 |
+
"Karuri",
|
| 2614 |
+
"Ongata Rongai",
|
| 2615 |
+
"Lang'ata",
|
| 2616 |
+
"Garissa",
|
| 2617 |
+
"Kitale",
|
| 2618 |
+
"Limuru",
|
| 2619 |
+
"Juja",
|
| 2620 |
+
"Kitengela",
|
| 2621 |
+
"Kiambu",
|
| 2622 |
+
"Mlolongo",
|
| 2623 |
+
"Malindi",
|
| 2624 |
+
"Mandera",
|
| 2625 |
+
"Khwisero",
|
| 2626 |
+
"Kisii",
|
| 2627 |
+
"Ngong"
|
| 2628 |
+
],
|
| 2629 |
+
"Kyrgyzstan": [
|
| 2630 |
+
"Bishkek",
|
| 2631 |
+
"Osh",
|
| 2632 |
+
"Jalal-Abad",
|
| 2633 |
+
"Karakol",
|
| 2634 |
+
"Tokmok",
|
| 2635 |
+
"Uzgen",
|
| 2636 |
+
"Kara-Balta",
|
| 2637 |
+
"Balykchy",
|
| 2638 |
+
"Naryn",
|
| 2639 |
+
"Bazar-Korgon",
|
| 2640 |
+
"Talas",
|
| 2641 |
+
"Razzakov",
|
| 2642 |
+
"Kyzyl-Kyya",
|
| 2643 |
+
"Suzak",
|
| 2644 |
+
"Batken",
|
| 2645 |
+
"Kara Suu",
|
| 2646 |
+
"Iradan",
|
| 2647 |
+
"Tash-Kumyr",
|
| 2648 |
+
"Belovodskoye",
|
| 2649 |
+
"Kant",
|
| 2650 |
+
"Lebedinovka",
|
| 2651 |
+
"Toktogul",
|
| 2652 |
+
"Massy",
|
| 2653 |
+
"Nookat",
|
| 2654 |
+
"Ivanovka"
|
| 2655 |
+
],
|
| 2656 |
+
"Cambodia": [
|
| 2657 |
+
"Phnom Penh",
|
| 2658 |
+
"Takeo",
|
| 2659 |
+
"Siem Reap",
|
| 2660 |
+
"Battambang",
|
| 2661 |
+
"Paoy Paet",
|
| 2662 |
+
"Kampong Chhnang",
|
| 2663 |
+
"Sihanoukville",
|
| 2664 |
+
"Kampong Cham",
|
| 2665 |
+
"Pursat",
|
| 2666 |
+
"Ta Khmau",
|
| 2667 |
+
"Phumĭ Véal Srê",
|
| 2668 |
+
"Bavet",
|
| 2669 |
+
"Kampong Speu",
|
| 2670 |
+
"Koh Kong",
|
| 2671 |
+
"Prey Veng",
|
| 2672 |
+
"Suong",
|
| 2673 |
+
"Smach Mean Chey",
|
| 2674 |
+
"Stung Treng",
|
| 2675 |
+
"Boeng Kak Pir",
|
| 2676 |
+
"Tbeng Meanchey",
|
| 2677 |
+
"Svay Rieng",
|
| 2678 |
+
"Sisophon",
|
| 2679 |
+
"Chrang Chamreh Muoy",
|
| 2680 |
+
"Kampot",
|
| 2681 |
+
"Kratié"
|
| 2682 |
+
],
|
| 2683 |
+
"Kiribati": [
|
| 2684 |
+
"Tarawa",
|
| 2685 |
+
"Betio Village",
|
| 2686 |
+
"Bikenibeu Village",
|
| 2687 |
+
"Teaoraereke Village",
|
| 2688 |
+
"Bairiki Village",
|
| 2689 |
+
"Eita Village",
|
| 2690 |
+
"Bonriki Village",
|
| 2691 |
+
"Temaiku Village",
|
| 2692 |
+
"Tabwakea Village",
|
| 2693 |
+
"Makin Village",
|
| 2694 |
+
"London Village",
|
| 2695 |
+
"Banraeaba Village",
|
| 2696 |
+
"Nawerewere Village",
|
| 2697 |
+
"Ambo Village",
|
| 2698 |
+
"Buota Village",
|
| 2699 |
+
"Banana",
|
| 2700 |
+
"Banana Village",
|
| 2701 |
+
"Rawannawi Village",
|
| 2702 |
+
"Taborio Village",
|
| 2703 |
+
"Rungata",
|
| 2704 |
+
"Abarao Village",
|
| 2705 |
+
"Nanikai Village",
|
| 2706 |
+
"Roreti Village",
|
| 2707 |
+
"Toboiaki Village",
|
| 2708 |
+
"Kuma Village"
|
| 2709 |
+
],
|
| 2710 |
+
"Comoros": [
|
| 2711 |
+
"Moroni",
|
| 2712 |
+
"Moutsamoudou",
|
| 2713 |
+
"Fomboni",
|
| 2714 |
+
"Tsimbeo",
|
| 2715 |
+
"Domoni",
|
| 2716 |
+
"Mirontsi",
|
| 2717 |
+
"Adda-Douéni",
|
| 2718 |
+
"Ouani",
|
| 2719 |
+
"Sima",
|
| 2720 |
+
"Koni-Djodjo",
|
| 2721 |
+
"Moya",
|
| 2722 |
+
"Barakani",
|
| 2723 |
+
"Chandra",
|
| 2724 |
+
"Ouellah",
|
| 2725 |
+
"Ikoni",
|
| 2726 |
+
"Mrémani",
|
| 2727 |
+
"Mbéni",
|
| 2728 |
+
"Mramani",
|
| 2729 |
+
"Koki",
|
| 2730 |
+
"Mitsamiouli",
|
| 2731 |
+
"Mvouni",
|
| 2732 |
+
"Tsidjé",
|
| 2733 |
+
"Kangani",
|
| 2734 |
+
"Lingoni",
|
| 2735 |
+
"Ntsoudjini"
|
| 2736 |
+
],
|
| 2737 |
+
"Saint Kitts and Nevis": [
|
| 2738 |
+
"Basseterre",
|
| 2739 |
+
"Sandy Point Town",
|
| 2740 |
+
"Fig Tree",
|
| 2741 |
+
"Market Shop",
|
| 2742 |
+
"Saint Paul’s",
|
| 2743 |
+
"Middle Island",
|
| 2744 |
+
"Nicola Town",
|
| 2745 |
+
"Trinity",
|
| 2746 |
+
"Old Road Town",
|
| 2747 |
+
"Charlestown",
|
| 2748 |
+
"Sadlers",
|
| 2749 |
+
"Cayon",
|
| 2750 |
+
"Mansion",
|
| 2751 |
+
"Monkey Hill",
|
| 2752 |
+
"Dieppe Bay Town",
|
| 2753 |
+
"Boyd’s",
|
| 2754 |
+
"Newcastle",
|
| 2755 |
+
"Cotton Ground"
|
| 2756 |
+
],
|
| 2757 |
+
"North Korea": [
|
| 2758 |
+
"Pyongyang",
|
| 2759 |
+
"Hamhŭng",
|
| 2760 |
+
"Namp’o",
|
| 2761 |
+
"Sunch’ŏn",
|
| 2762 |
+
"Hŭngnam",
|
| 2763 |
+
"Kaesŏng",
|
| 2764 |
+
"Wŏnsan",
|
| 2765 |
+
"Chongjin",
|
| 2766 |
+
"Man’gyŏngdae-ri",
|
| 2767 |
+
"Kaech’ŏn",
|
| 2768 |
+
"Sariwŏn-si",
|
| 2769 |
+
"Sinŭiju",
|
| 2770 |
+
"Tŏkch’ŏn",
|
| 2771 |
+
"Haeju",
|
| 2772 |
+
"Kanggye",
|
| 2773 |
+
"Changam-ch’on",
|
| 2774 |
+
"Hyesan",
|
| 2775 |
+
"Paech’ŏn-ŭp",
|
| 2776 |
+
"Songnim-ni",
|
| 2777 |
+
"Ch’ŏngdan-ŭp",
|
| 2778 |
+
"Sinch’ŏn-ŭp",
|
| 2779 |
+
"Paek'ak",
|
| 2780 |
+
"Chaeryŏng-ni",
|
| 2781 |
+
"Manp’o",
|
| 2782 |
+
"Ŭllyul"
|
| 2783 |
+
],
|
| 2784 |
+
"South Korea": [
|
| 2785 |
+
"Seoul",
|
| 2786 |
+
"Busan",
|
| 2787 |
+
"Incheon",
|
| 2788 |
+
"Daegu",
|
| 2789 |
+
"Daejeon",
|
| 2790 |
+
"Gwangju",
|
| 2791 |
+
"Suwon",
|
| 2792 |
+
"Ulsan",
|
| 2793 |
+
"Goyang-si",
|
| 2794 |
+
"Changwon",
|
| 2795 |
+
"Seongnam-si",
|
| 2796 |
+
"Cheongju-si",
|
| 2797 |
+
"Bucheon-si",
|
| 2798 |
+
"Cheonan",
|
| 2799 |
+
"Hwaseong-si",
|
| 2800 |
+
"Jeonju",
|
| 2801 |
+
"Ansan-si",
|
| 2802 |
+
"Anyang-si",
|
| 2803 |
+
"Kimhae",
|
| 2804 |
+
"Pohang",
|
| 2805 |
+
"Jeju City",
|
| 2806 |
+
"Uijeongbu-si",
|
| 2807 |
+
"Masan",
|
| 2808 |
+
"Gumi",
|
| 2809 |
+
"Sejong"
|
| 2810 |
+
],
|
| 2811 |
+
"Kuwait": [
|
| 2812 |
+
"Al Aḩmadī",
|
| 2813 |
+
"Ḩawallī",
|
| 2814 |
+
"As Sālimīyah",
|
| 2815 |
+
"Şabāḩ as Sālim",
|
| 2816 |
+
"Al Farwānīyah",
|
| 2817 |
+
"Al Faḩāḩīl",
|
| 2818 |
+
"Kuwait City",
|
| 2819 |
+
"Ar Rumaythīyah",
|
| 2820 |
+
"Ar Riqqah",
|
| 2821 |
+
"Salwá",
|
| 2822 |
+
"Al Manqaf",
|
| 2823 |
+
"Ar Rābiyah",
|
| 2824 |
+
"Bayān",
|
| 2825 |
+
"Al Jahrā’",
|
| 2826 |
+
"Al Finţās",
|
| 2827 |
+
"Janūb as Surrah",
|
| 2828 |
+
"Al Mahbūlah",
|
| 2829 |
+
"Ad Dasmah",
|
| 2830 |
+
"Ash Shāmīyah",
|
| 2831 |
+
"Al Wafrah",
|
| 2832 |
+
"Mazāri‘ al ‘Abdalī",
|
| 2833 |
+
"Az Zawr",
|
| 2834 |
+
"Al Murqāb",
|
| 2835 |
+
"Al-Masayel",
|
| 2836 |
+
"Al Funayţīs"
|
| 2837 |
+
],
|
| 2838 |
+
"Cayman Islands": [
|
| 2839 |
+
"George Town",
|
| 2840 |
+
"West Bay",
|
| 2841 |
+
"Bodden Town",
|
| 2842 |
+
"Channel Land",
|
| 2843 |
+
"Midland Acres",
|
| 2844 |
+
"The Mountain",
|
| 2845 |
+
"Further Ground",
|
| 2846 |
+
"North Sound Estates",
|
| 2847 |
+
"Breakers",
|
| 2848 |
+
"Frank Sound",
|
| 2849 |
+
"Whitehall Estates",
|
| 2850 |
+
"Pedro",
|
| 2851 |
+
"North Ward",
|
| 2852 |
+
"Lower Valley",
|
| 2853 |
+
"Driftwood Village",
|
| 2854 |
+
"Brinkleys",
|
| 2855 |
+
"Hutland",
|
| 2856 |
+
"Old Man Bay",
|
| 2857 |
+
"Savannah Acres",
|
| 2858 |
+
"Newlands",
|
| 2859 |
+
"Ally Land",
|
| 2860 |
+
"Cayman Palms",
|
| 2861 |
+
"Savannah",
|
| 2862 |
+
"Saint James",
|
| 2863 |
+
"Omega Gardens"
|
| 2864 |
+
],
|
| 2865 |
+
"Kazakhstan": [
|
| 2866 |
+
"Almaty",
|
| 2867 |
+
"Shymkent",
|
| 2868 |
+
"Aktobe",
|
| 2869 |
+
"Karagandy",
|
| 2870 |
+
"Taraz",
|
| 2871 |
+
"Kyzylorda",
|
| 2872 |
+
"Astana",
|
| 2873 |
+
"Oral",
|
| 2874 |
+
"Pavlodar",
|
| 2875 |
+
"Ust-Kamenogorsk",
|
| 2876 |
+
"Semey",
|
| 2877 |
+
"Atyrau",
|
| 2878 |
+
"Turkestan",
|
| 2879 |
+
"Kostanay",
|
| 2880 |
+
"Petropavl",
|
| 2881 |
+
"Temirtau",
|
| 2882 |
+
"Kokshetau",
|
| 2883 |
+
"Shevchenko",
|
| 2884 |
+
"Rudnyy",
|
| 2885 |
+
"Ekibastuz",
|
| 2886 |
+
"Taldykorgan",
|
| 2887 |
+
"Zhezqazghan",
|
| 2888 |
+
"Zhanaozen",
|
| 2889 |
+
"Balqash",
|
| 2890 |
+
"Sarqant"
|
| 2891 |
+
],
|
| 2892 |
+
"Laos": [
|
| 2893 |
+
"Vientiane",
|
| 2894 |
+
"Savannakhet",
|
| 2895 |
+
"Pakse",
|
| 2896 |
+
"Thakhèk",
|
| 2897 |
+
"Ban Napè",
|
| 2898 |
+
"Luang Prabang",
|
| 2899 |
+
"Xam Nua",
|
| 2900 |
+
"Muang Phônsavan",
|
| 2901 |
+
"Sekong",
|
| 2902 |
+
"Ban Xénô",
|
| 2903 |
+
"Muang Xay",
|
| 2904 |
+
"Vang Vieng",
|
| 2905 |
+
"Muang Sing",
|
| 2906 |
+
"Pakxan",
|
| 2907 |
+
"Borikhan",
|
| 2908 |
+
"Ban Houakhoua",
|
| 2909 |
+
"Muang Không",
|
| 2910 |
+
"Phôngsali",
|
| 2911 |
+
"Sainyabuli",
|
| 2912 |
+
"Champasak",
|
| 2913 |
+
"Ban Houayxay",
|
| 2914 |
+
"Ban Bachiang",
|
| 2915 |
+
"Muang Phôn-Hông",
|
| 2916 |
+
"Salavan",
|
| 2917 |
+
"Pakxong"
|
| 2918 |
+
],
|
| 2919 |
+
"Lebanon": [
|
| 2920 |
+
"Beirut",
|
| 2921 |
+
"Ra’s Bayrūt",
|
| 2922 |
+
"Tripoli",
|
| 2923 |
+
"Sidon",
|
| 2924 |
+
"Tyre",
|
| 2925 |
+
"Aley",
|
| 2926 |
+
"Nabatîyé et Tahta",
|
| 2927 |
+
"Habboûch",
|
| 2928 |
+
"Jounieh",
|
| 2929 |
+
"Zahlé",
|
| 2930 |
+
"Ghazieh",
|
| 2931 |
+
"Baalbek",
|
| 2932 |
+
"En Nâqoûra",
|
| 2933 |
+
"Byblos",
|
| 2934 |
+
"Bsharri",
|
| 2935 |
+
"Sarafand",
|
| 2936 |
+
"Batroûn",
|
| 2937 |
+
"Qâna",
|
| 2938 |
+
"Aajaltoûn",
|
| 2939 |
+
"Baabda",
|
| 2940 |
+
"Hrajel",
|
| 2941 |
+
"Aaïtanît",
|
| 2942 |
+
"Bhamdoûn el Mhatta",
|
| 2943 |
+
"Tebnine",
|
| 2944 |
+
"Halba"
|
| 2945 |
+
],
|
| 2946 |
+
"Saint Lucia": [
|
| 2947 |
+
"Gros Islet",
|
| 2948 |
+
"Castries",
|
| 2949 |
+
"Bisee",
|
| 2950 |
+
"Dennery",
|
| 2951 |
+
"Laborie",
|
| 2952 |
+
"Choiseul",
|
| 2953 |
+
"Vieux Fort",
|
| 2954 |
+
"Micoud",
|
| 2955 |
+
"Soufrière",
|
| 2956 |
+
"Ciceron",
|
| 2957 |
+
"Praslin",
|
| 2958 |
+
"Canaries",
|
| 2959 |
+
"Augier",
|
| 2960 |
+
"Balata",
|
| 2961 |
+
"Beauséjour",
|
| 2962 |
+
"Corinthe",
|
| 2963 |
+
"La Resource",
|
| 2964 |
+
"Anse Ger",
|
| 2965 |
+
"Pierrot",
|
| 2966 |
+
"Bocage",
|
| 2967 |
+
"Au Leon",
|
| 2968 |
+
"Ti Rocher",
|
| 2969 |
+
"L’Abbayée",
|
| 2970 |
+
"La Pointe",
|
| 2971 |
+
"Anse La Raye"
|
| 2972 |
+
],
|
| 2973 |
+
"Liechtenstein": [
|
| 2974 |
+
"Schaan",
|
| 2975 |
+
"Triesen",
|
| 2976 |
+
"Vaduz",
|
| 2977 |
+
"Balzers",
|
| 2978 |
+
"Eschen",
|
| 2979 |
+
"Mauren",
|
| 2980 |
+
"Triesenberg",
|
| 2981 |
+
"Ruggell",
|
| 2982 |
+
"Gamprin",
|
| 2983 |
+
"Nendeln",
|
| 2984 |
+
"Schellenberg",
|
| 2985 |
+
"Planken"
|
| 2986 |
+
],
|
| 2987 |
+
"Sri Lanka": [
|
| 2988 |
+
"Colombo",
|
| 2989 |
+
"Dehiwala-Mount Lavinia",
|
| 2990 |
+
"Maharagama",
|
| 2991 |
+
"Jaffna",
|
| 2992 |
+
"Moratuwa",
|
| 2993 |
+
"Negombo",
|
| 2994 |
+
"Pita Kotte",
|
| 2995 |
+
"Sri Jayewardenepura Kotte",
|
| 2996 |
+
"Kandy",
|
| 2997 |
+
"Trincomalee",
|
| 2998 |
+
"Kalmunai",
|
| 2999 |
+
"Galle",
|
| 3000 |
+
"Point Pedro",
|
| 3001 |
+
"Batticaloa",
|
| 3002 |
+
"Katunayaka",
|
| 3003 |
+
"Valvedditturai",
|
| 3004 |
+
"Matara",
|
| 3005 |
+
"Battaramulla South",
|
| 3006 |
+
"Dambulla",
|
| 3007 |
+
"Kolonnawa",
|
| 3008 |
+
"Kotikawatta",
|
| 3009 |
+
"Anuradhapura",
|
| 3010 |
+
"Vavuniya",
|
| 3011 |
+
"Hendala",
|
| 3012 |
+
"Ambalangoda"
|
| 3013 |
+
],
|
| 3014 |
+
"Liberia": [
|
| 3015 |
+
"Monrovia",
|
| 3016 |
+
"Gbarnga",
|
| 3017 |
+
"Buchanan",
|
| 3018 |
+
"Ganta",
|
| 3019 |
+
"Kakata",
|
| 3020 |
+
"Zwedru",
|
| 3021 |
+
"Harbel",
|
| 3022 |
+
"Harper",
|
| 3023 |
+
"Pleebo City",
|
| 3024 |
+
"Foya Kamara",
|
| 3025 |
+
"New Yekepa",
|
| 3026 |
+
"Voinjama",
|
| 3027 |
+
"Tubmanburg",
|
| 3028 |
+
"Saclepea",
|
| 3029 |
+
"Greenville",
|
| 3030 |
+
"Sanniquellie",
|
| 3031 |
+
"Karnplay",
|
| 3032 |
+
"Zorzor",
|
| 3033 |
+
"River Gbeh",
|
| 3034 |
+
"Fish Town",
|
| 3035 |
+
"Robertsport",
|
| 3036 |
+
"Barclayville",
|
| 3037 |
+
"Bopolu",
|
| 3038 |
+
"River Cess",
|
| 3039 |
+
"Bensonville"
|
| 3040 |
+
],
|
| 3041 |
+
"Lesotho": [
|
| 3042 |
+
"Maseru",
|
| 3043 |
+
"Maputsoe",
|
| 3044 |
+
"Mohale's Hoek",
|
| 3045 |
+
"Mafeteng",
|
| 3046 |
+
"Hlotse",
|
| 3047 |
+
"Butha-Buthe",
|
| 3048 |
+
"Quthing",
|
| 3049 |
+
"Teyateyaneng",
|
| 3050 |
+
"Qacha’s Nek",
|
| 3051 |
+
"Thaba-Tseka",
|
| 3052 |
+
"Mokhotlong",
|
| 3053 |
+
"Roma",
|
| 3054 |
+
"Mapoteng",
|
| 3055 |
+
"Nako",
|
| 3056 |
+
"Mazenod",
|
| 3057 |
+
"Mantsebo",
|
| 3058 |
+
"Semonkong",
|
| 3059 |
+
"Phamong",
|
| 3060 |
+
"Mamathes",
|
| 3061 |
+
"Mount Moorosi",
|
| 3062 |
+
"Pitseng",
|
| 3063 |
+
"Thabana Morena",
|
| 3064 |
+
"Mantsonyane",
|
| 3065 |
+
"Peka",
|
| 3066 |
+
"Kolo"
|
| 3067 |
+
],
|
| 3068 |
+
"Lithuania": [
|
| 3069 |
+
"Vilnius",
|
| 3070 |
+
"Kaunas",
|
| 3071 |
+
"Klaipėda",
|
| 3072 |
+
"Šiauliai",
|
| 3073 |
+
"Panevėžys",
|
| 3074 |
+
"Dainava (Kaunas)",
|
| 3075 |
+
"Alytus",
|
| 3076 |
+
"Šilainiai",
|
| 3077 |
+
"Eiguliai",
|
| 3078 |
+
"Antakalnis",
|
| 3079 |
+
"Fabijoniškės",
|
| 3080 |
+
"Naujoji Vilnia",
|
| 3081 |
+
"Šeškinė",
|
| 3082 |
+
"Marijampolė",
|
| 3083 |
+
"Naujininkai",
|
| 3084 |
+
"Pašilaičiai",
|
| 3085 |
+
"Mazeikiai",
|
| 3086 |
+
"Karoliniškės",
|
| 3087 |
+
"Lazdynai",
|
| 3088 |
+
"Justiniškės",
|
| 3089 |
+
"Naujamiestis",
|
| 3090 |
+
"Jonava",
|
| 3091 |
+
"Utena",
|
| 3092 |
+
"Aleksotas",
|
| 3093 |
+
"Kėdainiai"
|
| 3094 |
+
],
|
| 3095 |
+
"Luxembourg": [
|
| 3096 |
+
"Luxembourg",
|
| 3097 |
+
"Esch-sur-Alzette",
|
| 3098 |
+
"Dudelange",
|
| 3099 |
+
"Bonnevoie-Sud",
|
| 3100 |
+
"Belair",
|
| 3101 |
+
"Limpertsberg",
|
| 3102 |
+
"Gare",
|
| 3103 |
+
"Kirchberg",
|
| 3104 |
+
"Gasperich",
|
| 3105 |
+
"Belvaux",
|
| 3106 |
+
"Schifflange",
|
| 3107 |
+
"Walferdange",
|
| 3108 |
+
"Hollerich",
|
| 3109 |
+
"Rodange",
|
| 3110 |
+
"Bettembourg",
|
| 3111 |
+
"Diekirch",
|
| 3112 |
+
"Pétange",
|
| 3113 |
+
"Neudorf-Weimershof",
|
| 3114 |
+
"Merl",
|
| 3115 |
+
"Cents",
|
| 3116 |
+
"Soleuvre",
|
| 3117 |
+
"Ettelbruck",
|
| 3118 |
+
"Strassen",
|
| 3119 |
+
"Howald",
|
| 3120 |
+
"Bertrange"
|
| 3121 |
+
],
|
| 3122 |
+
"Latvia": [
|
| 3123 |
+
"Riga",
|
| 3124 |
+
"Daugavpils",
|
| 3125 |
+
"Liepāja",
|
| 3126 |
+
"Jelgava",
|
| 3127 |
+
"Jūrmala",
|
| 3128 |
+
"Ventspils",
|
| 3129 |
+
"Jēkabpils",
|
| 3130 |
+
"Rēzekne",
|
| 3131 |
+
"Ogre",
|
| 3132 |
+
"Valmiera",
|
| 3133 |
+
"Salaspils",
|
| 3134 |
+
"Mārupe",
|
| 3135 |
+
"Dārzciems",
|
| 3136 |
+
"Tukums",
|
| 3137 |
+
"Bolderaja",
|
| 3138 |
+
"Cēsis",
|
| 3139 |
+
"Talsi",
|
| 3140 |
+
"Sigulda",
|
| 3141 |
+
"Daugavgrīva",
|
| 3142 |
+
"Kuldīga",
|
| 3143 |
+
"Olaine",
|
| 3144 |
+
"Bauska",
|
| 3145 |
+
"Saldus",
|
| 3146 |
+
"Aizkraukle",
|
| 3147 |
+
"Dobele"
|
| 3148 |
+
],
|
| 3149 |
+
"Libya": [
|
| 3150 |
+
"Tripoli",
|
| 3151 |
+
"Benghazi",
|
| 3152 |
+
"Misratah",
|
| 3153 |
+
"Zliten",
|
| 3154 |
+
"Al Khums",
|
| 3155 |
+
"Az Zāwīyah",
|
| 3156 |
+
"Zawiya",
|
| 3157 |
+
"Janzūr",
|
| 3158 |
+
"Sabha",
|
| 3159 |
+
"Tobruk",
|
| 3160 |
+
"Ajdabiya",
|
| 3161 |
+
"Al Ajaylat",
|
| 3162 |
+
"Al Bayḑā’",
|
| 3163 |
+
"Al Jadīd",
|
| 3164 |
+
"Sirte",
|
| 3165 |
+
"Darnah",
|
| 3166 |
+
"Al Jumayl",
|
| 3167 |
+
"Qaşr Bin Ghashīr",
|
| 3168 |
+
"Tājūrā’",
|
| 3169 |
+
"Al Marj",
|
| 3170 |
+
"Şabrātah",
|
| 3171 |
+
"Al Ḩurshah",
|
| 3172 |
+
"Şurmān",
|
| 3173 |
+
"Msalātah",
|
| 3174 |
+
"As Sawānī"
|
| 3175 |
+
],
|
| 3176 |
+
"Morocco": [
|
| 3177 |
+
"Casablanca",
|
| 3178 |
+
"Rabat",
|
| 3179 |
+
"Fes",
|
| 3180 |
+
"Tangier",
|
| 3181 |
+
"Marrakesh",
|
| 3182 |
+
"Salé",
|
| 3183 |
+
"Agadir",
|
| 3184 |
+
"Meknes",
|
| 3185 |
+
"Oujda",
|
| 3186 |
+
"Kenitra",
|
| 3187 |
+
"Tétouan",
|
| 3188 |
+
"Al Hoceïma",
|
| 3189 |
+
"Temara",
|
| 3190 |
+
"Safi",
|
| 3191 |
+
"Mohammedia",
|
| 3192 |
+
"Khouribga",
|
| 3193 |
+
"El Jadida",
|
| 3194 |
+
"Beni Mellal",
|
| 3195 |
+
"Salé Al Jadida",
|
| 3196 |
+
"Ait Melloul",
|
| 3197 |
+
"Nador",
|
| 3198 |
+
"Dar Bouazza",
|
| 3199 |
+
"Taza",
|
| 3200 |
+
"Fès al Bali",
|
| 3201 |
+
"Settat"
|
| 3202 |
+
],
|
| 3203 |
+
"Monaco": [
|
| 3204 |
+
"Monaco",
|
| 3205 |
+
"Monte-Carlo",
|
| 3206 |
+
"La Condamine",
|
| 3207 |
+
"La Rousse",
|
| 3208 |
+
"Jardin Exotique",
|
| 3209 |
+
"Fontvieille",
|
| 3210 |
+
"Saint-Roman",
|
| 3211 |
+
"Moneghetti",
|
| 3212 |
+
"Larvotto",
|
| 3213 |
+
"Monaco-Ville"
|
| 3214 |
+
],
|
| 3215 |
+
"Moldova": [
|
| 3216 |
+
"Chisinau",
|
| 3217 |
+
"Tiraspol",
|
| 3218 |
+
"Bălţi",
|
| 3219 |
+
"Bender",
|
| 3220 |
+
"Rîbniţa",
|
| 3221 |
+
"Cahul",
|
| 3222 |
+
"Ungheni",
|
| 3223 |
+
"Soroca",
|
| 3224 |
+
"Orhei",
|
| 3225 |
+
"Dubăsari",
|
| 3226 |
+
"Comrat",
|
| 3227 |
+
"Edineţ",
|
| 3228 |
+
"Ceadîr-Lunga",
|
| 3229 |
+
"Căuşeni",
|
| 3230 |
+
"Strășeni",
|
| 3231 |
+
"Hînceşti",
|
| 3232 |
+
"Floreşti",
|
| 3233 |
+
"Drochia",
|
| 3234 |
+
"Codru",
|
| 3235 |
+
"Bilicenii Vechi",
|
| 3236 |
+
"Slobozia",
|
| 3237 |
+
"Ialoveni",
|
| 3238 |
+
"Sîngerei",
|
| 3239 |
+
"Fălești",
|
| 3240 |
+
"Vulcăneşti"
|
| 3241 |
+
],
|
| 3242 |
+
"Montenegro": [
|
| 3243 |
+
"Podgorica",
|
| 3244 |
+
"Nikšić",
|
| 3245 |
+
"Herceg Novi",
|
| 3246 |
+
"Pljevlja",
|
| 3247 |
+
"Budva",
|
| 3248 |
+
"Bar",
|
| 3249 |
+
"Bijelo Polje",
|
| 3250 |
+
"Cetinje",
|
| 3251 |
+
"Berane",
|
| 3252 |
+
"Ulcinj",
|
| 3253 |
+
"Rožaje",
|
| 3254 |
+
"Tivat",
|
| 3255 |
+
"Dobrota",
|
| 3256 |
+
"Kotor",
|
| 3257 |
+
"Danilovgrad",
|
| 3258 |
+
"Mojkovac",
|
| 3259 |
+
"Tuzi",
|
| 3260 |
+
"Igalo",
|
| 3261 |
+
"Plav",
|
| 3262 |
+
"Golubovci",
|
| 3263 |
+
"Kolašin",
|
| 3264 |
+
"Šušanj",
|
| 3265 |
+
"Bijela",
|
| 3266 |
+
"Risan",
|
| 3267 |
+
"Žabljak"
|
| 3268 |
+
],
|
| 3269 |
+
"Saint Martin": [
|
| 3270 |
+
"Marigot",
|
| 3271 |
+
"Grand-Case"
|
| 3272 |
+
],
|
| 3273 |
+
"Madagascar": [
|
| 3274 |
+
"Antananarivo",
|
| 3275 |
+
"Toamasina",
|
| 3276 |
+
"Antsirabe",
|
| 3277 |
+
"Mahajanga",
|
| 3278 |
+
"Fianarantsoa",
|
| 3279 |
+
"Toliara",
|
| 3280 |
+
"Antsiranana",
|
| 3281 |
+
"Sambava",
|
| 3282 |
+
"Imerintsiatosika",
|
| 3283 |
+
"Antalaha",
|
| 3284 |
+
"Tôlanaro",
|
| 3285 |
+
"Antanifotsy",
|
| 3286 |
+
"Ambovombe",
|
| 3287 |
+
"Ambilobe",
|
| 3288 |
+
"Ambanja",
|
| 3289 |
+
"Moramanga",
|
| 3290 |
+
"Antsalova",
|
| 3291 |
+
"Morondava",
|
| 3292 |
+
"Hell-Ville",
|
| 3293 |
+
"Ivato",
|
| 3294 |
+
"Ambatondrazaka",
|
| 3295 |
+
"Amboasary",
|
| 3296 |
+
"Tsiroanomandidy",
|
| 3297 |
+
"Manakara",
|
| 3298 |
+
"Ambalavao"
|
| 3299 |
+
],
|
| 3300 |
+
"Marshall Islands": [
|
| 3301 |
+
"Majuro",
|
| 3302 |
+
"Ebaye",
|
| 3303 |
+
"Arno",
|
| 3304 |
+
"Jabor",
|
| 3305 |
+
"Wotje",
|
| 3306 |
+
"Mili",
|
| 3307 |
+
"Namdrik",
|
| 3308 |
+
"Ebon",
|
| 3309 |
+
"Kili",
|
| 3310 |
+
"Likiep",
|
| 3311 |
+
"Ailuk",
|
| 3312 |
+
"Ujae",
|
| 3313 |
+
"Aur",
|
| 3314 |
+
"Utrik",
|
| 3315 |
+
"Lae",
|
| 3316 |
+
"Mejit",
|
| 3317 |
+
"Wotho",
|
| 3318 |
+
"Lib",
|
| 3319 |
+
"Jabat",
|
| 3320 |
+
"Rongelap",
|
| 3321 |
+
"Taroa",
|
| 3322 |
+
"Enewetak",
|
| 3323 |
+
"Airuk",
|
| 3324 |
+
"Loen"
|
| 3325 |
+
],
|
| 3326 |
+
"North Macedonia": [
|
| 3327 |
+
"Skopje",
|
| 3328 |
+
"Kumanovo",
|
| 3329 |
+
"Prilep",
|
| 3330 |
+
"Bitola",
|
| 3331 |
+
"Čair",
|
| 3332 |
+
"Tetovo",
|
| 3333 |
+
"Kisela Voda",
|
| 3334 |
+
"Veles",
|
| 3335 |
+
"Gostivar",
|
| 3336 |
+
"Shtip",
|
| 3337 |
+
"Centar Župa",
|
| 3338 |
+
"Ohrid",
|
| 3339 |
+
"Gjorče Petro",
|
| 3340 |
+
"Kavadarci",
|
| 3341 |
+
"Struga",
|
| 3342 |
+
"Butel",
|
| 3343 |
+
"Kochani",
|
| 3344 |
+
"Strumica",
|
| 3345 |
+
"Kičevo",
|
| 3346 |
+
"Lipkovo",
|
| 3347 |
+
"Zelino",
|
| 3348 |
+
"Saraj",
|
| 3349 |
+
"Radovis",
|
| 3350 |
+
"Tearce",
|
| 3351 |
+
"Kriva Palanka"
|
| 3352 |
+
],
|
| 3353 |
+
"Mali": [
|
| 3354 |
+
"Bamako",
|
| 3355 |
+
"Sikasso",
|
| 3356 |
+
"Koutiala",
|
| 3357 |
+
"Ségou",
|
| 3358 |
+
"Kayes",
|
| 3359 |
+
"Mopti",
|
| 3360 |
+
"Kalaban Koro",
|
| 3361 |
+
"Gao",
|
| 3362 |
+
"Kati",
|
| 3363 |
+
"San",
|
| 3364 |
+
"Bougouni",
|
| 3365 |
+
"Timbuktu",
|
| 3366 |
+
"Kita",
|
| 3367 |
+
"Dialakorodji",
|
| 3368 |
+
"Koulikoro",
|
| 3369 |
+
"Fana",
|
| 3370 |
+
"Markala",
|
| 3371 |
+
"Niono",
|
| 3372 |
+
"Nioro",
|
| 3373 |
+
"Pèlèngana",
|
| 3374 |
+
"Kolokani",
|
| 3375 |
+
"Bourem",
|
| 3376 |
+
"Sangarébougou",
|
| 3377 |
+
"Massiogo",
|
| 3378 |
+
"Djenné"
|
| 3379 |
+
],
|
| 3380 |
+
"Myanmar": [
|
| 3381 |
+
"Yangon",
|
| 3382 |
+
"Mandalay",
|
| 3383 |
+
"Nay Pyi Taw",
|
| 3384 |
+
"Mawlamyine",
|
| 3385 |
+
"Kalemyo",
|
| 3386 |
+
"Insein",
|
| 3387 |
+
"Kyain Seikgyi Township",
|
| 3388 |
+
"Bago",
|
| 3389 |
+
"Amarapura",
|
| 3390 |
+
"Pathein",
|
| 3391 |
+
"Yawnghwe",
|
| 3392 |
+
"Monywa",
|
| 3393 |
+
"Kyaukpyu",
|
| 3394 |
+
"Sittwe",
|
| 3395 |
+
"Meiktila",
|
| 3396 |
+
"Myeik",
|
| 3397 |
+
"Kēng Tung",
|
| 3398 |
+
"Mu-se",
|
| 3399 |
+
"Taunggyi",
|
| 3400 |
+
"Myingyan",
|
| 3401 |
+
"Dawei",
|
| 3402 |
+
"Pyay",
|
| 3403 |
+
"Hinthada",
|
| 3404 |
+
"Lashio",
|
| 3405 |
+
"Pakokku"
|
| 3406 |
+
],
|
| 3407 |
+
"Mongolia": [
|
| 3408 |
+
"Ulan Bator",
|
| 3409 |
+
"Erdenet",
|
| 3410 |
+
"Darhan",
|
| 3411 |
+
"Choibalsan",
|
| 3412 |
+
"Mörön",
|
| 3413 |
+
"Bayanhongor",
|
| 3414 |
+
"Ulaangom",
|
| 3415 |
+
"Khovd",
|
| 3416 |
+
"Arvayheer",
|
| 3417 |
+
"Ölgii",
|
| 3418 |
+
"Bogd",
|
| 3419 |
+
"Dalandzadgad",
|
| 3420 |
+
"Sühbaatar",
|
| 3421 |
+
"Undurkhaan",
|
| 3422 |
+
"Tsetserleg",
|
| 3423 |
+
"Saynshand",
|
| 3424 |
+
"Dzüünharaa",
|
| 3425 |
+
"Baruun-Urt",
|
| 3426 |
+
"Altai",
|
| 3427 |
+
"Bulgan",
|
| 3428 |
+
"Dzuunmod",
|
| 3429 |
+
"Zuunmod",
|
| 3430 |
+
"Uliastay",
|
| 3431 |
+
"Mandalgovi",
|
| 3432 |
+
"Zamiin Uud"
|
| 3433 |
+
],
|
| 3434 |
+
"Macao": [
|
| 3435 |
+
"Macau",
|
| 3436 |
+
"Taipa",
|
| 3437 |
+
"Sé",
|
| 3438 |
+
"Luhuan",
|
| 3439 |
+
"Zhuojiacun",
|
| 3440 |
+
"Lai Chi Van",
|
| 3441 |
+
"Jiu’ao",
|
| 3442 |
+
"Cotai"
|
| 3443 |
+
],
|
| 3444 |
+
"Northern Mariana Islands": [
|
| 3445 |
+
"Saipan",
|
| 3446 |
+
"San Jose Village",
|
| 3447 |
+
"Garapan",
|
| 3448 |
+
"China Town Village",
|
| 3449 |
+
"Capitol Hill Village",
|
| 3450 |
+
"Songsong"
|
| 3451 |
+
],
|
| 3452 |
+
"Martinique": [
|
| 3453 |
+
"Fort-de-France",
|
| 3454 |
+
"Le Lamentin",
|
| 3455 |
+
"Le Robert",
|
| 3456 |
+
"Sainte-Marie",
|
| 3457 |
+
"Le François",
|
| 3458 |
+
"Ducos",
|
| 3459 |
+
"Saint-Joseph",
|
| 3460 |
+
"La Trinité",
|
| 3461 |
+
"Rivière-Pilote",
|
| 3462 |
+
"Le Gros-Morne",
|
| 3463 |
+
"Sainte-Luce",
|
| 3464 |
+
"Saint-Esprit",
|
| 3465 |
+
"Le Lorrain",
|
| 3466 |
+
"Le Marin",
|
| 3467 |
+
"Le Vauclin",
|
| 3468 |
+
"Les Trois-Îlets",
|
| 3469 |
+
"Le Morne-Rouge",
|
| 3470 |
+
"Saint-Pierre",
|
| 3471 |
+
"Basse-Pointe",
|
| 3472 |
+
"L'Ajoupa-Bouillon",
|
| 3473 |
+
"Grand'Rivière",
|
| 3474 |
+
"Schoelcher"
|
| 3475 |
+
],
|
| 3476 |
+
"Mauritania": [
|
| 3477 |
+
"Nouakchott",
|
| 3478 |
+
"Nouadhibou",
|
| 3479 |
+
"Kiffa",
|
| 3480 |
+
"Dar Naim",
|
| 3481 |
+
"Néma",
|
| 3482 |
+
"Mbera",
|
| 3483 |
+
"Kaédi",
|
| 3484 |
+
"Zouérat",
|
| 3485 |
+
"Tevragh Zeina",
|
| 3486 |
+
"Sélibaby",
|
| 3487 |
+
"Atar",
|
| 3488 |
+
"Ayoun El Atrous",
|
| 3489 |
+
"Guerou",
|
| 3490 |
+
"Boutilimitt",
|
| 3491 |
+
"Tékane",
|
| 3492 |
+
"Bogué",
|
| 3493 |
+
"Aleg",
|
| 3494 |
+
"Tembedgha",
|
| 3495 |
+
"Rosso",
|
| 3496 |
+
"Akjoujt",
|
| 3497 |
+
"Ṭinṭâne",
|
| 3498 |
+
"Magṭa‘ Laḥjar",
|
| 3499 |
+
"Maghama",
|
| 3500 |
+
"Tidjikja",
|
| 3501 |
+
"Basseknou"
|
| 3502 |
+
],
|
| 3503 |
+
"Montserrat": [
|
| 3504 |
+
"Salem",
|
| 3505 |
+
"Brades",
|
| 3506 |
+
"Cork Hill",
|
| 3507 |
+
"Saint John's Village",
|
| 3508 |
+
"Saint Peters",
|
| 3509 |
+
"Plymouth"
|
| 3510 |
+
],
|
| 3511 |
+
"Malta": [
|
| 3512 |
+
"San Pawl il-Baħar",
|
| 3513 |
+
"Birkirkara",
|
| 3514 |
+
"Mosta",
|
| 3515 |
+
"Sliema",
|
| 3516 |
+
"Qormi",
|
| 3517 |
+
"Żabbar",
|
| 3518 |
+
"Naxxar",
|
| 3519 |
+
"San Ġwann",
|
| 3520 |
+
"Swieqi",
|
| 3521 |
+
"San Ġiljan",
|
| 3522 |
+
"Imsida",
|
| 3523 |
+
"Birżebbuġa",
|
| 3524 |
+
"Fgura",
|
| 3525 |
+
"Rabat",
|
| 3526 |
+
"Gżira",
|
| 3527 |
+
"Żejtun",
|
| 3528 |
+
"Mellieħa",
|
| 3529 |
+
"Attard",
|
| 3530 |
+
"Haz-Zebbug",
|
| 3531 |
+
"Żurrieq",
|
| 3532 |
+
"Marsaskala",
|
| 3533 |
+
"Ħamrun",
|
| 3534 |
+
"Siġġiewi",
|
| 3535 |
+
"Paola",
|
| 3536 |
+
"Tarxien"
|
| 3537 |
+
],
|
| 3538 |
+
"Mauritius": [
|
| 3539 |
+
"Port Louis",
|
| 3540 |
+
"Vacoas",
|
| 3541 |
+
"Beau Bassin-Rose Hill",
|
| 3542 |
+
"Curepipe",
|
| 3543 |
+
"Quatre Bornes",
|
| 3544 |
+
"Triolet",
|
| 3545 |
+
"Goodlands",
|
| 3546 |
+
"Bel Air Rivière Sèche",
|
| 3547 |
+
"Bambous",
|
| 3548 |
+
"Centre de Flacq",
|
| 3549 |
+
"Mahébourg",
|
| 3550 |
+
"Saint Pierre",
|
| 3551 |
+
"Le Hochet",
|
| 3552 |
+
"Baie du Tombeau",
|
| 3553 |
+
"Trou aux Biches",
|
| 3554 |
+
"Rose Belle",
|
| 3555 |
+
"Chemin Grenier",
|
| 3556 |
+
"Grand Baie",
|
| 3557 |
+
"Lallmatie",
|
| 3558 |
+
"Terre Rouge",
|
| 3559 |
+
"New Grove",
|
| 3560 |
+
"Rivière du Rempart",
|
| 3561 |
+
"Plaine Magnien",
|
| 3562 |
+
"Rouge Terre",
|
| 3563 |
+
"Lalmatie"
|
| 3564 |
+
],
|
| 3565 |
+
"Maldives": [
|
| 3566 |
+
"Male",
|
| 3567 |
+
"Fuvahmulah",
|
| 3568 |
+
"Hithadhoo",
|
| 3569 |
+
"Kulhudhuffushi",
|
| 3570 |
+
"Thinadhoo",
|
| 3571 |
+
"Naifaru",
|
| 3572 |
+
"Hulhumale",
|
| 3573 |
+
"Dhihdhoo",
|
| 3574 |
+
"Maafushi",
|
| 3575 |
+
"Viligili",
|
| 3576 |
+
"Funadhoo",
|
| 3577 |
+
"Eydhafushi",
|
| 3578 |
+
"Mahibadhoo",
|
| 3579 |
+
"Vilufushi",
|
| 3580 |
+
"Guraidhoo",
|
| 3581 |
+
"Fonadhoo",
|
| 3582 |
+
"Meedhoo",
|
| 3583 |
+
"Manadhoo",
|
| 3584 |
+
"Un’goofaaru",
|
| 3585 |
+
"Kudahuvadhoo",
|
| 3586 |
+
"Vaadhoo",
|
| 3587 |
+
"Open Stage",
|
| 3588 |
+
"Madifushi",
|
| 3589 |
+
"Veymandoo",
|
| 3590 |
+
"Muli"
|
| 3591 |
+
],
|
| 3592 |
+
"Malawi": [
|
| 3593 |
+
"Lilongwe",
|
| 3594 |
+
"Blantyre",
|
| 3595 |
+
"Mzuzu",
|
| 3596 |
+
"Zomba",
|
| 3597 |
+
"Karonga",
|
| 3598 |
+
"Kasungu",
|
| 3599 |
+
"Mangochi",
|
| 3600 |
+
"Salima",
|
| 3601 |
+
"Liwonde",
|
| 3602 |
+
"Balaka",
|
| 3603 |
+
"Dedza",
|
| 3604 |
+
"Nkhotakota",
|
| 3605 |
+
"Mchinji",
|
| 3606 |
+
"Nsanje",
|
| 3607 |
+
"Mzimba",
|
| 3608 |
+
"Mponela",
|
| 3609 |
+
"Rumphi",
|
| 3610 |
+
"Ntcheu",
|
| 3611 |
+
"Mwanza",
|
| 3612 |
+
"Chitipa",
|
| 3613 |
+
"Monkey Bay",
|
| 3614 |
+
"Mulanje",
|
| 3615 |
+
"Nkhata Bay",
|
| 3616 |
+
"Luchenza",
|
| 3617 |
+
"Chipeni"
|
| 3618 |
+
],
|
| 3619 |
+
"Mexico": [
|
| 3620 |
+
"Mexico City",
|
| 3621 |
+
"Tijuana",
|
| 3622 |
+
"Iztapalapa",
|
| 3623 |
+
"Puebla",
|
| 3624 |
+
"Ecatepec de Morelos",
|
| 3625 |
+
"Santiago de Querétaro",
|
| 3626 |
+
"León de los Aldama",
|
| 3627 |
+
"Ciudad Juárez",
|
| 3628 |
+
"Zapopan",
|
| 3629 |
+
"Guadalajara",
|
| 3630 |
+
"Mérida",
|
| 3631 |
+
"Gustavo Adolfo Madero",
|
| 3632 |
+
"Monterrey",
|
| 3633 |
+
"Ciudad Nezahualcoyotl",
|
| 3634 |
+
"Mexicali",
|
| 3635 |
+
"Chihuahua",
|
| 3636 |
+
"Naucalpan de Juárez",
|
| 3637 |
+
"Hermosillo",
|
| 3638 |
+
"Culiacán",
|
| 3639 |
+
"Morelia",
|
| 3640 |
+
"Torreón",
|
| 3641 |
+
"Álvaro Obregón",
|
| 3642 |
+
"San Luis Potosí",
|
| 3643 |
+
"Aguascalientes",
|
| 3644 |
+
"Saltillo"
|
| 3645 |
+
],
|
| 3646 |
+
"Malaysia": [
|
| 3647 |
+
"Kuala Lumpur",
|
| 3648 |
+
"Klang",
|
| 3649 |
+
"Johor Bahru",
|
| 3650 |
+
"Kampung Baru Subang",
|
| 3651 |
+
"Petaling Jaya",
|
| 3652 |
+
"Ipoh",
|
| 3653 |
+
"Shah Alam",
|
| 3654 |
+
"Subang Jaya",
|
| 3655 |
+
"Bukit Rahman Putra",
|
| 3656 |
+
"Pelentong",
|
| 3657 |
+
"Malacca",
|
| 3658 |
+
"Iskandar Puteri",
|
| 3659 |
+
"Kota Bharu",
|
| 3660 |
+
"Kuantan",
|
| 3661 |
+
"Kota Kuala Muda",
|
| 3662 |
+
"Selayang Baru Utara",
|
| 3663 |
+
"Mukim Pulai",
|
| 3664 |
+
"Kota Kinabalu",
|
| 3665 |
+
"Kampung Larkin Lama",
|
| 3666 |
+
"Kota Damansara",
|
| 3667 |
+
"Sandakan",
|
| 3668 |
+
"Kuala Terengganu",
|
| 3669 |
+
"Taman Petaling",
|
| 3670 |
+
"Alor Setar",
|
| 3671 |
+
"Kampung Kangkar Teberau"
|
| 3672 |
+
],
|
| 3673 |
+
"Mozambique": [
|
| 3674 |
+
"Maputo",
|
| 3675 |
+
"Matola",
|
| 3676 |
+
"Nampula",
|
| 3677 |
+
"Beira",
|
| 3678 |
+
"Chimoio",
|
| 3679 |
+
"Tete",
|
| 3680 |
+
"Quelimane",
|
| 3681 |
+
"Lichinga",
|
| 3682 |
+
"Nacala",
|
| 3683 |
+
"Pemba",
|
| 3684 |
+
"Mocuba",
|
| 3685 |
+
"Gurúè",
|
| 3686 |
+
"Xai-Xai",
|
| 3687 |
+
"Maxixe",
|
| 3688 |
+
"Mandimba",
|
| 3689 |
+
"Ressano Garcia",
|
| 3690 |
+
"Angoche",
|
| 3691 |
+
"Inhambane",
|
| 3692 |
+
"Cuamba",
|
| 3693 |
+
"Montepuez",
|
| 3694 |
+
"Dondo",
|
| 3695 |
+
"Chibuto",
|
| 3696 |
+
"Manhiça",
|
| 3697 |
+
"Chokwé",
|
| 3698 |
+
"Mozambique"
|
| 3699 |
+
],
|
| 3700 |
+
"Namibia": [
|
| 3701 |
+
"Windhoek",
|
| 3702 |
+
"Rundu",
|
| 3703 |
+
"Walvis Bay",
|
| 3704 |
+
"Swakopmund",
|
| 3705 |
+
"Oshakati",
|
| 3706 |
+
"Rehoboth",
|
| 3707 |
+
"Katima Mulilo",
|
| 3708 |
+
"Otjiwarongo",
|
| 3709 |
+
"Ondangwa",
|
| 3710 |
+
"Okahandja",
|
| 3711 |
+
"Grootfontein",
|
| 3712 |
+
"Ongwediva",
|
| 3713 |
+
"Keetmanshoop",
|
| 3714 |
+
"Helao Nafidi",
|
| 3715 |
+
"Tsumeb",
|
| 3716 |
+
"Gobabis",
|
| 3717 |
+
"Katutura",
|
| 3718 |
+
"Lüderitz",
|
| 3719 |
+
"Mariental",
|
| 3720 |
+
"Khorixas",
|
| 3721 |
+
"Omaruru",
|
| 3722 |
+
"Bethanie",
|
| 3723 |
+
"Outjo",
|
| 3724 |
+
"Usakos",
|
| 3725 |
+
"Opuwo"
|
| 3726 |
+
],
|
| 3727 |
+
"New Caledonia": [
|
| 3728 |
+
"Nouméa",
|
| 3729 |
+
"Mont-Dore",
|
| 3730 |
+
"Dumbéa",
|
| 3731 |
+
"Païta",
|
| 3732 |
+
"Wé",
|
| 3733 |
+
"Vallée des Colons",
|
| 3734 |
+
"Tadine",
|
| 3735 |
+
"Magenta",
|
| 3736 |
+
"Rivière-Salée",
|
| 3737 |
+
"Bourail",
|
| 3738 |
+
"Poindimié",
|
| 3739 |
+
"Koné",
|
| 3740 |
+
"Houaïlou",
|
| 3741 |
+
"Portes de Fer",
|
| 3742 |
+
"Aérodrome",
|
| 3743 |
+
"Septième Kilomètre",
|
| 3744 |
+
"Anse-Vata",
|
| 3745 |
+
"Val Plaisance",
|
| 3746 |
+
"N'Géa",
|
| 3747 |
+
"Canala",
|
| 3748 |
+
"Nouville",
|
| 3749 |
+
"Ouvéa",
|
| 3750 |
+
"Normandie",
|
| 3751 |
+
"Kaméré",
|
| 3752 |
+
"Koumac"
|
| 3753 |
+
],
|
| 3754 |
+
"Niger": [
|
| 3755 |
+
"Niamey",
|
| 3756 |
+
"Maradi",
|
| 3757 |
+
"Zinder",
|
| 3758 |
+
"Tahoua",
|
| 3759 |
+
"Agadez",
|
| 3760 |
+
"Arlit",
|
| 3761 |
+
"Alaghsas",
|
| 3762 |
+
"Birni N Konni",
|
| 3763 |
+
"Dosso",
|
| 3764 |
+
"Gaya",
|
| 3765 |
+
"Tessaoua",
|
| 3766 |
+
"Diffa",
|
| 3767 |
+
"Dogondoutchi",
|
| 3768 |
+
"Dakoro",
|
| 3769 |
+
"Téra",
|
| 3770 |
+
"Mirriah",
|
| 3771 |
+
"Madaoua",
|
| 3772 |
+
"Matamey",
|
| 3773 |
+
"Magaria",
|
| 3774 |
+
"Tibiri",
|
| 3775 |
+
"Nguigmi",
|
| 3776 |
+
"Tillabéri",
|
| 3777 |
+
"Illéla",
|
| 3778 |
+
"Abalak",
|
| 3779 |
+
"Tanout"
|
| 3780 |
+
],
|
| 3781 |
+
"Norfolk Island": [
|
| 3782 |
+
"Kingston"
|
| 3783 |
+
],
|
| 3784 |
+
"Nigeria": [
|
| 3785 |
+
"Lagos",
|
| 3786 |
+
"Kano",
|
| 3787 |
+
"Ibadan",
|
| 3788 |
+
"Abuja",
|
| 3789 |
+
"Port Harcourt",
|
| 3790 |
+
"Kaduna",
|
| 3791 |
+
"Benin City",
|
| 3792 |
+
"Onitsha",
|
| 3793 |
+
"Aba",
|
| 3794 |
+
"Maiduguri",
|
| 3795 |
+
"Ilorin",
|
| 3796 |
+
"Sokoto",
|
| 3797 |
+
"Jos",
|
| 3798 |
+
"Zaria",
|
| 3799 |
+
"Enugu",
|
| 3800 |
+
"Warri",
|
| 3801 |
+
"Oyo",
|
| 3802 |
+
"Abeokuta",
|
| 3803 |
+
"Akure",
|
| 3804 |
+
"Bauchi",
|
| 3805 |
+
"Katsina",
|
| 3806 |
+
"Osogbo",
|
| 3807 |
+
"Ile-Ife",
|
| 3808 |
+
"Gombe",
|
| 3809 |
+
"Ajegunle"
|
| 3810 |
+
],
|
| 3811 |
+
"Nicaragua": [
|
| 3812 |
+
"Managua",
|
| 3813 |
+
"León",
|
| 3814 |
+
"Masaya",
|
| 3815 |
+
"Chinandega",
|
| 3816 |
+
"Matagalpa",
|
| 3817 |
+
"Estelí",
|
| 3818 |
+
"Granada",
|
| 3819 |
+
"Mateare",
|
| 3820 |
+
"Jinotega",
|
| 3821 |
+
"El Viejo",
|
| 3822 |
+
"Nueva Guinea",
|
| 3823 |
+
"Tipitapa",
|
| 3824 |
+
"Juigalpa",
|
| 3825 |
+
"Ciudad Sandino",
|
| 3826 |
+
"Bluefields",
|
| 3827 |
+
"Diriamba",
|
| 3828 |
+
"Ocotal",
|
| 3829 |
+
"Puerto Cabezas",
|
| 3830 |
+
"Chichigalpa",
|
| 3831 |
+
"Rivas",
|
| 3832 |
+
"San Rafael del Sur",
|
| 3833 |
+
"Jinotepe",
|
| 3834 |
+
"Boaco",
|
| 3835 |
+
"Nagarote",
|
| 3836 |
+
"Jalapa"
|
| 3837 |
+
],
|
| 3838 |
+
"The Netherlands": [
|
| 3839 |
+
"Amsterdam",
|
| 3840 |
+
"Rotterdam",
|
| 3841 |
+
"The Hague",
|
| 3842 |
+
"Utrecht",
|
| 3843 |
+
"Groningen",
|
| 3844 |
+
"Eindhoven",
|
| 3845 |
+
"Tilburg",
|
| 3846 |
+
"Almere Stad",
|
| 3847 |
+
"Breda",
|
| 3848 |
+
"Nijmegen",
|
| 3849 |
+
"Enschede",
|
| 3850 |
+
"Haarlem",
|
| 3851 |
+
"Arnhem",
|
| 3852 |
+
"Zaanstad",
|
| 3853 |
+
"Amersfoort",
|
| 3854 |
+
"Apeldoorn",
|
| 3855 |
+
"'s-Hertogenbosch",
|
| 3856 |
+
"Hoofddorp",
|
| 3857 |
+
"Zwolle",
|
| 3858 |
+
"Maastricht",
|
| 3859 |
+
"Leiden",
|
| 3860 |
+
"Dordrecht",
|
| 3861 |
+
"Zoetermeer",
|
| 3862 |
+
"Hengelo",
|
| 3863 |
+
"Venlo"
|
| 3864 |
+
],
|
| 3865 |
+
"Norway": [
|
| 3866 |
+
"Oslo",
|
| 3867 |
+
"Bergen",
|
| 3868 |
+
"Trondheim",
|
| 3869 |
+
"Stavanger",
|
| 3870 |
+
"Kristiansand",
|
| 3871 |
+
"Drammen",
|
| 3872 |
+
"Lillestrøm",
|
| 3873 |
+
"Sandnes",
|
| 3874 |
+
"Fredrikstad",
|
| 3875 |
+
"Sandefjord",
|
| 3876 |
+
"Asker",
|
| 3877 |
+
"Sarpsborg",
|
| 3878 |
+
"Tønsberg",
|
| 3879 |
+
"Ålesund",
|
| 3880 |
+
"Skien",
|
| 3881 |
+
"Moss",
|
| 3882 |
+
"Tromsø",
|
| 3883 |
+
"Haugesund",
|
| 3884 |
+
"Nesttun",
|
| 3885 |
+
"Porsgrunn",
|
| 3886 |
+
"Bodø",
|
| 3887 |
+
"Arendal",
|
| 3888 |
+
"Hamar",
|
| 3889 |
+
"Lillehammer",
|
| 3890 |
+
"Horten"
|
| 3891 |
+
],
|
| 3892 |
+
"Nepal": [
|
| 3893 |
+
"Kathmandu",
|
| 3894 |
+
"Pokhara",
|
| 3895 |
+
"Bharatpur",
|
| 3896 |
+
"Pātan",
|
| 3897 |
+
"Birgañj",
|
| 3898 |
+
"Biratnagar",
|
| 3899 |
+
"Dhangaḍhi̇̄",
|
| 3900 |
+
"Hetauda",
|
| 3901 |
+
"Janakpur",
|
| 3902 |
+
"Butwāl",
|
| 3903 |
+
"Dharān",
|
| 3904 |
+
"Nepalgunj",
|
| 3905 |
+
"Birendranagar",
|
| 3906 |
+
"Madhyapur Thimi",
|
| 3907 |
+
"Lahān",
|
| 3908 |
+
"Bhimdatta",
|
| 3909 |
+
"Triyuga",
|
| 3910 |
+
"Inaruwa",
|
| 3911 |
+
"Rājbirāj",
|
| 3912 |
+
"Banepā",
|
| 3913 |
+
"Siddharthanagar",
|
| 3914 |
+
"Gulariyā",
|
| 3915 |
+
"Īṭahari̇̄",
|
| 3916 |
+
"Panauti",
|
| 3917 |
+
"Ṭikāpur"
|
| 3918 |
+
],
|
| 3919 |
+
"Nauru": [
|
| 3920 |
+
"Arijejen",
|
| 3921 |
+
"Denigomodu",
|
| 3922 |
+
"Menen",
|
| 3923 |
+
"Yaren",
|
| 3924 |
+
"Boe",
|
| 3925 |
+
"Baiti",
|
| 3926 |
+
"Anabar",
|
| 3927 |
+
"Uaboe",
|
| 3928 |
+
"Ijuw",
|
| 3929 |
+
"Yangor",
|
| 3930 |
+
"Anibare"
|
| 3931 |
+
],
|
| 3932 |
+
"Niue": [
|
| 3933 |
+
"Alofi"
|
| 3934 |
+
],
|
| 3935 |
+
"New Zealand": [
|
| 3936 |
+
"Auckland",
|
| 3937 |
+
"Christchurch",
|
| 3938 |
+
"Wellington",
|
| 3939 |
+
"Manukau City",
|
| 3940 |
+
"North Shore",
|
| 3941 |
+
"Hamilton",
|
| 3942 |
+
"Tauranga",
|
| 3943 |
+
"Dunedin",
|
| 3944 |
+
"Lower Hutt",
|
| 3945 |
+
"Palmerston North",
|
| 3946 |
+
"New Plymouth",
|
| 3947 |
+
"Hastings",
|
| 3948 |
+
"Napier",
|
| 3949 |
+
"Rotorua",
|
| 3950 |
+
"Porirua",
|
| 3951 |
+
"Invercargill",
|
| 3952 |
+
"Papatoetoe",
|
| 3953 |
+
"Nelson",
|
| 3954 |
+
"Whangarei",
|
| 3955 |
+
"Whanganui",
|
| 3956 |
+
"Upper Hutt",
|
| 3957 |
+
"Manurewa",
|
| 3958 |
+
"Gisborne",
|
| 3959 |
+
"Papakura",
|
| 3960 |
+
"Rolleston"
|
| 3961 |
+
],
|
| 3962 |
+
"Oman": [
|
| 3963 |
+
"Muscat",
|
| 3964 |
+
"Seeb",
|
| 3965 |
+
"Bawshar",
|
| 3966 |
+
"‘Ibrī",
|
| 3967 |
+
"Şalālah",
|
| 3968 |
+
"Şaḩam",
|
| 3969 |
+
"Rustaq",
|
| 3970 |
+
"Sohar",
|
| 3971 |
+
"As Suwayq",
|
| 3972 |
+
"Barkā’",
|
| 3973 |
+
"Al Buraymī",
|
| 3974 |
+
"Nizwá",
|
| 3975 |
+
"Sur",
|
| 3976 |
+
"Bahlā’",
|
| 3977 |
+
"Al Khābūrah",
|
| 3978 |
+
"Shināş",
|
| 3979 |
+
"Sufālat Samā’il",
|
| 3980 |
+
"Izkī",
|
| 3981 |
+
"Liwá",
|
| 3982 |
+
"Ibrā’",
|
| 3983 |
+
"Bidbid",
|
| 3984 |
+
"Badīyah",
|
| 3985 |
+
"Khasab",
|
| 3986 |
+
"Adam",
|
| 3987 |
+
"Yanqul"
|
| 3988 |
+
],
|
| 3989 |
+
"Panama": [
|
| 3990 |
+
"Panamá",
|
| 3991 |
+
"San Miguelito",
|
| 3992 |
+
"Juan Díaz",
|
| 3993 |
+
"David",
|
| 3994 |
+
"Arraiján",
|
| 3995 |
+
"Colón",
|
| 3996 |
+
"Las Cumbres",
|
| 3997 |
+
"La Chorrera",
|
| 3998 |
+
"Pedregal",
|
| 3999 |
+
"Tocumen",
|
| 4000 |
+
"Santiago de Veraguas",
|
| 4001 |
+
"Parque Lefevre",
|
| 4002 |
+
"Chilibre",
|
| 4003 |
+
"Cativá",
|
| 4004 |
+
"Río Abajo",
|
| 4005 |
+
"Nuevo Belén",
|
| 4006 |
+
"Ancón",
|
| 4007 |
+
"Alcalde Díaz",
|
| 4008 |
+
"El Chorrillo",
|
| 4009 |
+
"Changuinola",
|
| 4010 |
+
"La Cabima",
|
| 4011 |
+
"La Concepción",
|
| 4012 |
+
"Veracruz",
|
| 4013 |
+
"Curundú",
|
| 4014 |
+
"Penonomé"
|
| 4015 |
+
],
|
| 4016 |
+
"Peru": [
|
| 4017 |
+
"Lima",
|
| 4018 |
+
"Callao",
|
| 4019 |
+
"Arequipa",
|
| 4020 |
+
"Trujillo",
|
| 4021 |
+
"Chiclayo",
|
| 4022 |
+
"Piura",
|
| 4023 |
+
"Huancayo",
|
| 4024 |
+
"Cusco",
|
| 4025 |
+
"Iquitos",
|
| 4026 |
+
"Pucallpa",
|
| 4027 |
+
"Chimbote",
|
| 4028 |
+
"Tacna",
|
| 4029 |
+
"Ica",
|
| 4030 |
+
"Santiago de Surco",
|
| 4031 |
+
"Juliaca",
|
| 4032 |
+
"Cajamarca",
|
| 4033 |
+
"Huánuco",
|
| 4034 |
+
"Miraflores",
|
| 4035 |
+
"Santa Anita - Los Ficus",
|
| 4036 |
+
"Sullana",
|
| 4037 |
+
"Chincha Alta",
|
| 4038 |
+
"Ayacucho",
|
| 4039 |
+
"San Martin",
|
| 4040 |
+
"Puno",
|
| 4041 |
+
"Huaraz"
|
| 4042 |
+
],
|
| 4043 |
+
"French Polynesia": [
|
| 4044 |
+
"Faaa",
|
| 4045 |
+
"Papeete",
|
| 4046 |
+
"Punaauia",
|
| 4047 |
+
"Pirae",
|
| 4048 |
+
"Mahina",
|
| 4049 |
+
"Paea",
|
| 4050 |
+
"Papao",
|
| 4051 |
+
"Arue",
|
| 4052 |
+
"Vaitoare",
|
| 4053 |
+
"Afaahiti",
|
| 4054 |
+
"Vaitape",
|
| 4055 |
+
"Otutara",
|
| 4056 |
+
"Paopao",
|
| 4057 |
+
"Taunoa",
|
| 4058 |
+
"Haapiti",
|
| 4059 |
+
"Uturoa",
|
| 4060 |
+
"Afareaitu",
|
| 4061 |
+
"Tohautu",
|
| 4062 |
+
"Tiarei",
|
| 4063 |
+
"Vairao",
|
| 4064 |
+
"Tautira",
|
| 4065 |
+
"Teavaro",
|
| 4066 |
+
"Faanui",
|
| 4067 |
+
"Pueu",
|
| 4068 |
+
"Papetoai"
|
| 4069 |
+
],
|
| 4070 |
+
"Papua New Guinea": [
|
| 4071 |
+
"Port Moresby",
|
| 4072 |
+
"Lae",
|
| 4073 |
+
"Arawa",
|
| 4074 |
+
"Mount Hagen",
|
| 4075 |
+
"Popondetta",
|
| 4076 |
+
"Madang",
|
| 4077 |
+
"Kokopo",
|
| 4078 |
+
"Mendi",
|
| 4079 |
+
"Kimbe",
|
| 4080 |
+
"Goroka",
|
| 4081 |
+
"Wewak",
|
| 4082 |
+
"Bulolo",
|
| 4083 |
+
"Daru",
|
| 4084 |
+
"Wau",
|
| 4085 |
+
"Kavieng",
|
| 4086 |
+
"Kiunga",
|
| 4087 |
+
"Vanimo",
|
| 4088 |
+
"Alotau",
|
| 4089 |
+
"Kundiawa",
|
| 4090 |
+
"Kainantu",
|
| 4091 |
+
"Tari",
|
| 4092 |
+
"Rabaul",
|
| 4093 |
+
"Ialibu",
|
| 4094 |
+
"Kokoda",
|
| 4095 |
+
"Lorengau"
|
| 4096 |
+
],
|
| 4097 |
+
"Philippines": [
|
| 4098 |
+
"Quezon City",
|
| 4099 |
+
"Davao",
|
| 4100 |
+
"Caloocan City",
|
| 4101 |
+
"Manila",
|
| 4102 |
+
"Taguig",
|
| 4103 |
+
"Budta",
|
| 4104 |
+
"Malingao",
|
| 4105 |
+
"Zamboanga",
|
| 4106 |
+
"Cebu City",
|
| 4107 |
+
"Antipolo",
|
| 4108 |
+
"Pasig City",
|
| 4109 |
+
"Cagayan de Oro",
|
| 4110 |
+
"Valenzuela",
|
| 4111 |
+
"Paranaque City",
|
| 4112 |
+
"General Santos",
|
| 4113 |
+
"Las Piñas",
|
| 4114 |
+
"Calamba",
|
| 4115 |
+
"Makati City",
|
| 4116 |
+
"Lapu-Lapu City",
|
| 4117 |
+
"Imus",
|
| 4118 |
+
"Iloilo",
|
| 4119 |
+
"Bacolod City",
|
| 4120 |
+
"Mansilingan",
|
| 4121 |
+
"Marikina City",
|
| 4122 |
+
"Dasmariñas"
|
| 4123 |
+
],
|
| 4124 |
+
"Pakistan": [
|
| 4125 |
+
"Lahore",
|
| 4126 |
+
"Karachi",
|
| 4127 |
+
"Peshawar",
|
| 4128 |
+
"Faisalabad",
|
| 4129 |
+
"Rawalpindi",
|
| 4130 |
+
"Gujranwala",
|
| 4131 |
+
"Multan",
|
| 4132 |
+
"Hyderabad",
|
| 4133 |
+
"Quetta",
|
| 4134 |
+
"Bannu",
|
| 4135 |
+
"Sargodha",
|
| 4136 |
+
"Sialkot",
|
| 4137 |
+
"Bahawalpur",
|
| 4138 |
+
"Dera Ismail Khan",
|
| 4139 |
+
"Muzaffarābād",
|
| 4140 |
+
"Battagram",
|
| 4141 |
+
"Islamabad",
|
| 4142 |
+
"Shekhupura",
|
| 4143 |
+
"Gujrat",
|
| 4144 |
+
"Sukkur",
|
| 4145 |
+
"Sahiwal",
|
| 4146 |
+
"Okara",
|
| 4147 |
+
"Rahim Yar Khan",
|
| 4148 |
+
"Kasur",
|
| 4149 |
+
"Dera Ghazi Khan"
|
| 4150 |
+
],
|
| 4151 |
+
"Poland": [
|
| 4152 |
+
"Warsaw",
|
| 4153 |
+
"Łódź",
|
| 4154 |
+
"Kraków",
|
| 4155 |
+
"Wrocław",
|
| 4156 |
+
"Poznań",
|
| 4157 |
+
"Gdańsk",
|
| 4158 |
+
"Szczecin",
|
| 4159 |
+
"Bydgoszcz",
|
| 4160 |
+
"Lublin",
|
| 4161 |
+
"Katowice",
|
| 4162 |
+
"Białystok",
|
| 4163 |
+
"Gdynia",
|
| 4164 |
+
"Częstochowa",
|
| 4165 |
+
"Sosnowiec",
|
| 4166 |
+
"Radom",
|
| 4167 |
+
"Mokotów",
|
| 4168 |
+
"Kielce",
|
| 4169 |
+
"Gliwice",
|
| 4170 |
+
"Toruń",
|
| 4171 |
+
"Zabrze",
|
| 4172 |
+
"Bytom",
|
| 4173 |
+
"Praga Południe",
|
| 4174 |
+
"Bielsko-Biala",
|
| 4175 |
+
"Olsztyn",
|
| 4176 |
+
"Rzeszów"
|
| 4177 |
+
],
|
| 4178 |
+
"Saint Pierre and Miquelon": [
|
| 4179 |
+
"Saint-Pierre",
|
| 4180 |
+
"Miquelon"
|
| 4181 |
+
],
|
| 4182 |
+
"Pitcairn": [
|
| 4183 |
+
"Adamstown"
|
| 4184 |
+
],
|
| 4185 |
+
"Puerto Rico": [
|
| 4186 |
+
"San Juan",
|
| 4187 |
+
"Bayamón",
|
| 4188 |
+
"Carolina",
|
| 4189 |
+
"Ponce",
|
| 4190 |
+
"Arecibo",
|
| 4191 |
+
"Caguas",
|
| 4192 |
+
"Guaynabo",
|
| 4193 |
+
"Trujillo Alto",
|
| 4194 |
+
"Mayagüez",
|
| 4195 |
+
"Fajardo",
|
| 4196 |
+
"Levittown",
|
| 4197 |
+
"Vega Baja",
|
| 4198 |
+
"Cataño",
|
| 4199 |
+
"Barceloneta",
|
| 4200 |
+
"Guayama",
|
| 4201 |
+
"Humacao",
|
| 4202 |
+
"Yauco",
|
| 4203 |
+
"Cayey",
|
| 4204 |
+
"Candelaria",
|
| 4205 |
+
"Manatí",
|
| 4206 |
+
"Aguadilla",
|
| 4207 |
+
"Río Grande",
|
| 4208 |
+
"Dorado",
|
| 4209 |
+
"Isabela",
|
| 4210 |
+
"San Germán"
|
| 4211 |
+
],
|
| 4212 |
+
"Palestinian Territory": [
|
| 4213 |
+
"East Jerusalem",
|
| 4214 |
+
"Gaza",
|
| 4215 |
+
"Khān Yūnis",
|
| 4216 |
+
"Jabālyā",
|
| 4217 |
+
"Hebron",
|
| 4218 |
+
"Nablus",
|
| 4219 |
+
"Rafaḩ",
|
| 4220 |
+
"Dayr al Balaḩ",
|
| 4221 |
+
"Bayt Lāhyā",
|
| 4222 |
+
"Battir",
|
| 4223 |
+
"Ţūlkarm",
|
| 4224 |
+
"Ramallah",
|
| 4225 |
+
"Qalqīlyah",
|
| 4226 |
+
"Yaţţā",
|
| 4227 |
+
"Ma‘ale Adummim",
|
| 4228 |
+
"Al Bīrah",
|
| 4229 |
+
"Bayt Ḩānūn",
|
| 4230 |
+
"An Nuşayrāt",
|
| 4231 |
+
"Old City",
|
| 4232 |
+
"Al Burayj",
|
| 4233 |
+
"Janīn",
|
| 4234 |
+
"Banī Suhaylā",
|
| 4235 |
+
"Bethlehem",
|
| 4236 |
+
"Az̧ Z̧āhirīyah",
|
| 4237 |
+
"Bayt Ḩanīnā"
|
| 4238 |
+
],
|
| 4239 |
+
"Portugal": [
|
| 4240 |
+
"Lisbon",
|
| 4241 |
+
"Porto",
|
| 4242 |
+
"Amadora",
|
| 4243 |
+
"Braga",
|
| 4244 |
+
"Setúbal",
|
| 4245 |
+
"Coimbra",
|
| 4246 |
+
"Queluz",
|
| 4247 |
+
"Funchal",
|
| 4248 |
+
"Cacém",
|
| 4249 |
+
"Vila Nova de Gaia",
|
| 4250 |
+
"Algueirão",
|
| 4251 |
+
"Loures",
|
| 4252 |
+
"Felgueiras",
|
| 4253 |
+
"Évora",
|
| 4254 |
+
"Rio de Mouro",
|
| 4255 |
+
"Odivelas",
|
| 4256 |
+
"Aveiro",
|
| 4257 |
+
"Amora",
|
| 4258 |
+
"Corroios",
|
| 4259 |
+
"Barreiro",
|
| 4260 |
+
"Monsanto",
|
| 4261 |
+
"Rio Tinto",
|
| 4262 |
+
"São Domingos de Rana",
|
| 4263 |
+
"Figueira da Foz",
|
| 4264 |
+
"Lumiar"
|
| 4265 |
+
],
|
| 4266 |
+
"Palau": [
|
| 4267 |
+
"Koror",
|
| 4268 |
+
"Koror Town",
|
| 4269 |
+
"Medalaii Hamlet",
|
| 4270 |
+
"Ngerbeched Hamlet",
|
| 4271 |
+
"Ngerchemai Hamlet",
|
| 4272 |
+
"Ngermid Hamlet",
|
| 4273 |
+
"Meyungs Hamlet",
|
| 4274 |
+
"Kloulklubed",
|
| 4275 |
+
"Ngerekebesang Hamlet",
|
| 4276 |
+
"Iyebukel Hamlet",
|
| 4277 |
+
"Ngerkeseuaol Hamlet",
|
| 4278 |
+
"Meketii Hamlet",
|
| 4279 |
+
"Ulimang",
|
| 4280 |
+
"Idid Hamlet",
|
| 4281 |
+
"Ikelau Hamlet",
|
| 4282 |
+
"Mengellang",
|
| 4283 |
+
"Ngchesar Hamlet",
|
| 4284 |
+
"Melekeok Village",
|
| 4285 |
+
"Ngchemiangel",
|
| 4286 |
+
"Ngerkeai",
|
| 4287 |
+
"Ngardmau",
|
| 4288 |
+
"Angaur State",
|
| 4289 |
+
"Kayangel",
|
| 4290 |
+
"Imeong Hamlet",
|
| 4291 |
+
"Ngetkib"
|
| 4292 |
+
],
|
| 4293 |
+
"Paraguay": [
|
| 4294 |
+
"Asunción",
|
| 4295 |
+
"Ciudad del Este",
|
| 4296 |
+
"San Lorenzo",
|
| 4297 |
+
"Capiatá",
|
| 4298 |
+
"Lambaré",
|
| 4299 |
+
"Fernando de la Mora",
|
| 4300 |
+
"Limpio",
|
| 4301 |
+
"Nemby",
|
| 4302 |
+
"Pedro Juan Caballero",
|
| 4303 |
+
"Encarnación",
|
| 4304 |
+
"Mariano Roque Alonso",
|
| 4305 |
+
"Itauguá",
|
| 4306 |
+
"Villa Elisa",
|
| 4307 |
+
"Villa Hayes",
|
| 4308 |
+
"Caacupé",
|
| 4309 |
+
"San Antonio",
|
| 4310 |
+
"Caaguazú",
|
| 4311 |
+
"Presidente Franco",
|
| 4312 |
+
"Coronel Oviedo",
|
| 4313 |
+
"Concepción",
|
| 4314 |
+
"Villarrica",
|
| 4315 |
+
"Pilar",
|
| 4316 |
+
"Yby Yaú",
|
| 4317 |
+
"Caazapá",
|
| 4318 |
+
"Filadelfia"
|
| 4319 |
+
],
|
| 4320 |
+
"Qatar": [
|
| 4321 |
+
"Doha",
|
| 4322 |
+
"Ar Rayyān",
|
| 4323 |
+
"Al Maţār al ‘Atīq",
|
| 4324 |
+
"Al Manşūrah",
|
| 4325 |
+
"Madīnat Khalīfah",
|
| 4326 |
+
"An Najmah",
|
| 4327 |
+
"Al ‘Unayzah",
|
| 4328 |
+
"Umm Ghuwaylīnah",
|
| 4329 |
+
"As Sadd",
|
| 4330 |
+
"Farīj Kulayb",
|
| 4331 |
+
"Farīj al Amīr",
|
| 4332 |
+
"Umm Şalāl Muḩammad",
|
| 4333 |
+
"Mu‘aydhir Rawḑat Rāshid",
|
| 4334 |
+
"As Sulţah al Jadīdah",
|
| 4335 |
+
"Al Wakrah",
|
| 4336 |
+
"Ath Thumāmah Sab‘ah wa Arba‘ūn",
|
| 4337 |
+
"Ath Thumāmah Sittah wa Arba‘ūn",
|
| 4338 |
+
"Ath Thumāmah Khamsūn",
|
| 4339 |
+
"Nu‘ayjah",
|
| 4340 |
+
"Al Ghānim",
|
| 4341 |
+
"Al Khawr",
|
| 4342 |
+
"Umm Lakhbā",
|
| 4343 |
+
"Al Hilāl al Gharbīyah",
|
| 4344 |
+
"Al Hilāl ash Sharqīyah",
|
| 4345 |
+
"Ad Dawḩah al Jadīdah"
|
| 4346 |
+
],
|
| 4347 |
+
"Reunion": [
|
| 4348 |
+
"Saint-Denis",
|
| 4349 |
+
"Saint-Paul",
|
| 4350 |
+
"Saint-Pierre",
|
| 4351 |
+
"Le Tampon",
|
| 4352 |
+
"Saint-André",
|
| 4353 |
+
"Saint-Louis",
|
| 4354 |
+
"Saint-Joseph",
|
| 4355 |
+
"Saint-Benoît",
|
| 4356 |
+
"La Possession",
|
| 4357 |
+
"Saint-Leu",
|
| 4358 |
+
"Sainte-Marie",
|
| 4359 |
+
"Le Port",
|
| 4360 |
+
"Piton Saint-Leu",
|
| 4361 |
+
"Sainte-Suzanne",
|
| 4362 |
+
"L'Étang-Salé",
|
| 4363 |
+
"Bras-Panon",
|
| 4364 |
+
"Petite-Île",
|
| 4365 |
+
"Les Avirons",
|
| 4366 |
+
"Salazie",
|
| 4367 |
+
"Les Trois-Bassins",
|
| 4368 |
+
"Entre-Deux",
|
| 4369 |
+
"Sainte-Rose",
|
| 4370 |
+
"La Plaine-des-Palmistes",
|
| 4371 |
+
"Cilaos",
|
| 4372 |
+
"Saint-Philippe"
|
| 4373 |
+
],
|
| 4374 |
+
"Romania": [
|
| 4375 |
+
"Bucharest",
|
| 4376 |
+
"Sector 3",
|
| 4377 |
+
"Iaşi",
|
| 4378 |
+
"Sector 6",
|
| 4379 |
+
"Constanţa",
|
| 4380 |
+
"Sector 2",
|
| 4381 |
+
"Sector 4",
|
| 4382 |
+
"Cluj-Napoca",
|
| 4383 |
+
"Sector 5",
|
| 4384 |
+
"Braşov",
|
| 4385 |
+
"Timişoara",
|
| 4386 |
+
"Craiova",
|
| 4387 |
+
"Sector 1",
|
| 4388 |
+
"Galaţi",
|
| 4389 |
+
"Târgu Mureş",
|
| 4390 |
+
"Oradea",
|
| 4391 |
+
"Ploieşti",
|
| 4392 |
+
"Arad",
|
| 4393 |
+
"Brăila",
|
| 4394 |
+
"Piteşti",
|
| 4395 |
+
"Bacău",
|
| 4396 |
+
"Sibiu",
|
| 4397 |
+
"Satu Mare",
|
| 4398 |
+
"Baia Mare",
|
| 4399 |
+
"Buzău"
|
| 4400 |
+
],
|
| 4401 |
+
"Serbia": [
|
| 4402 |
+
"Belgrade",
|
| 4403 |
+
"Niš",
|
| 4404 |
+
"Novi Sad",
|
| 4405 |
+
"Zemun",
|
| 4406 |
+
"Kragujevac",
|
| 4407 |
+
"Čačak",
|
| 4408 |
+
"Subotica",
|
| 4409 |
+
"Leskovac",
|
| 4410 |
+
"Novi Pazar",
|
| 4411 |
+
"Kraljevo",
|
| 4412 |
+
"Zrenjanin",
|
| 4413 |
+
"Pančevo",
|
| 4414 |
+
"Kruševac",
|
| 4415 |
+
"Užice",
|
| 4416 |
+
"Smederevo",
|
| 4417 |
+
"Valjevo",
|
| 4418 |
+
"Vranje",
|
| 4419 |
+
"Šabac",
|
| 4420 |
+
"Zaječar",
|
| 4421 |
+
"Trstenik",
|
| 4422 |
+
"Sombor",
|
| 4423 |
+
"Kikinda",
|
| 4424 |
+
"Požarevac",
|
| 4425 |
+
"Pirot",
|
| 4426 |
+
"Bor"
|
| 4427 |
+
],
|
| 4428 |
+
"Russia": [
|
| 4429 |
+
"Moscow",
|
| 4430 |
+
"Saint Petersburg",
|
| 4431 |
+
"Novosibirsk",
|
| 4432 |
+
"Yekaterinburg",
|
| 4433 |
+
"Nizhniy Novgorod",
|
| 4434 |
+
"Kazan",
|
| 4435 |
+
"Chelyabinsk",
|
| 4436 |
+
"Omsk",
|
| 4437 |
+
"Samara",
|
| 4438 |
+
"Rostov-na-Donu",
|
| 4439 |
+
"Ufa",
|
| 4440 |
+
"Krasnoyarsk",
|
| 4441 |
+
"Voronezh",
|
| 4442 |
+
"Volgograd",
|
| 4443 |
+
"Perm",
|
| 4444 |
+
"Krasnodar",
|
| 4445 |
+
"Saratov",
|
| 4446 |
+
"Tyumen",
|
| 4447 |
+
"Tolyatti",
|
| 4448 |
+
"Izhevsk",
|
| 4449 |
+
"Barnaul",
|
| 4450 |
+
"Ulyanovsk",
|
| 4451 |
+
"Irkutsk",
|
| 4452 |
+
"Khabarovsk",
|
| 4453 |
+
"Yaroslavl"
|
| 4454 |
+
],
|
| 4455 |
+
"Rwanda": [
|
| 4456 |
+
"Kigali",
|
| 4457 |
+
"Gisenyi",
|
| 4458 |
+
"Nyagatare",
|
| 4459 |
+
"Butare",
|
| 4460 |
+
"Gitarama",
|
| 4461 |
+
"Musanze",
|
| 4462 |
+
"Muhanga",
|
| 4463 |
+
"Cyangugu",
|
| 4464 |
+
"Kibuye",
|
| 4465 |
+
"Rwamagana",
|
| 4466 |
+
"Kibungo",
|
| 4467 |
+
"Shyorongi",
|
| 4468 |
+
"Byumba",
|
| 4469 |
+
"Ndera",
|
| 4470 |
+
"Kirambo",
|
| 4471 |
+
"Kagano",
|
| 4472 |
+
"Ngororero",
|
| 4473 |
+
"Nzega",
|
| 4474 |
+
"Macuba",
|
| 4475 |
+
"Karengera",
|
| 4476 |
+
"Nyanza",
|
| 4477 |
+
"Bugarama",
|
| 4478 |
+
"Gihombo",
|
| 4479 |
+
"Karambi",
|
| 4480 |
+
"Bushekeri"
|
| 4481 |
+
],
|
| 4482 |
+
"Saudi Arabia": [
|
| 4483 |
+
"Jeddah",
|
| 4484 |
+
"Riyadh",
|
| 4485 |
+
"Makkah",
|
| 4486 |
+
"Madinah",
|
| 4487 |
+
"Dammam",
|
| 4488 |
+
"Sulţānah",
|
| 4489 |
+
"Buraydah",
|
| 4490 |
+
"Ta’if",
|
| 4491 |
+
"Tabuk",
|
| 4492 |
+
"Ha'il",
|
| 4493 |
+
"Najrān",
|
| 4494 |
+
"Al Kharj",
|
| 4495 |
+
"Khamis Mushait",
|
| 4496 |
+
"Al Hufūf",
|
| 4497 |
+
"Al Mubarraz",
|
| 4498 |
+
"Hafar Al-Batin",
|
| 4499 |
+
"Thuqbah",
|
| 4500 |
+
"Al Jubayl",
|
| 4501 |
+
"Abha",
|
| 4502 |
+
"Yanbu",
|
| 4503 |
+
"Unaizah",
|
| 4504 |
+
"Khobar",
|
| 4505 |
+
"Arar",
|
| 4506 |
+
"Sakakah",
|
| 4507 |
+
"Az Zulfī"
|
| 4508 |
+
],
|
| 4509 |
+
"Solomon Islands": [
|
| 4510 |
+
"Honiara",
|
| 4511 |
+
"Panatina",
|
| 4512 |
+
"Nggosi",
|
| 4513 |
+
"Tandai",
|
| 4514 |
+
"Kola'a",
|
| 4515 |
+
"Vura",
|
| 4516 |
+
"Malango",
|
| 4517 |
+
"Vavaea",
|
| 4518 |
+
"Noro",
|
| 4519 |
+
"Gizo",
|
| 4520 |
+
"Auki",
|
| 4521 |
+
"Mbumburu",
|
| 4522 |
+
"Mataniko",
|
| 4523 |
+
"Rove - Lengakiki",
|
| 4524 |
+
"Munda",
|
| 4525 |
+
"Buala",
|
| 4526 |
+
"Kukum",
|
| 4527 |
+
"Kirakira",
|
| 4528 |
+
"Tulagi",
|
| 4529 |
+
"Vuhokesa",
|
| 4530 |
+
"Taro",
|
| 4531 |
+
"Lata"
|
| 4532 |
+
],
|
| 4533 |
+
"Seychelles": [
|
| 4534 |
+
"Victoria",
|
| 4535 |
+
"Cascade",
|
| 4536 |
+
"Perseverance",
|
| 4537 |
+
"Baie Sainte Anne",
|
| 4538 |
+
"Anse Royale",
|
| 4539 |
+
"Belombre",
|
| 4540 |
+
"Baie Lazare",
|
| 4541 |
+
"Anse aux Pins",
|
| 4542 |
+
"Plaisance",
|
| 4543 |
+
"Glacis",
|
| 4544 |
+
"Grand'Anse",
|
| 4545 |
+
"English River",
|
| 4546 |
+
"Anse Boileau",
|
| 4547 |
+
"Bel Ombre",
|
| 4548 |
+
"Beau Vallon",
|
| 4549 |
+
"Mont Fleuri",
|
| 4550 |
+
"La Digue",
|
| 4551 |
+
"Roche Caïman",
|
| 4552 |
+
"Pointe La Rue",
|
| 4553 |
+
"Saint Louis",
|
| 4554 |
+
"Mont Buxton",
|
| 4555 |
+
"Port Glaud",
|
| 4556 |
+
"Bel Air",
|
| 4557 |
+
"Les Mamelles",
|
| 4558 |
+
"Takamaka"
|
| 4559 |
+
],
|
| 4560 |
+
"Sudan": [
|
| 4561 |
+
"Khartoum",
|
| 4562 |
+
"Omdurman",
|
| 4563 |
+
"Khartoum North",
|
| 4564 |
+
"Nyala",
|
| 4565 |
+
"Port Sudan",
|
| 4566 |
+
"Kassala",
|
| 4567 |
+
"El Obeid",
|
| 4568 |
+
"Al Qadarif",
|
| 4569 |
+
"Kosti",
|
| 4570 |
+
"Wad Medani",
|
| 4571 |
+
"El Daein",
|
| 4572 |
+
"El Fasher",
|
| 4573 |
+
"Singa",
|
| 4574 |
+
"Ad-Damazin",
|
| 4575 |
+
"Geneina",
|
| 4576 |
+
"Rabak",
|
| 4577 |
+
"El Geneina Fort",
|
| 4578 |
+
"Sinnar",
|
| 4579 |
+
"Al Manāqil",
|
| 4580 |
+
"Gereida",
|
| 4581 |
+
"Atbara",
|
| 4582 |
+
"An Nuhūd",
|
| 4583 |
+
"Ed Damer",
|
| 4584 |
+
"Kadugli",
|
| 4585 |
+
"Ad Douiem"
|
| 4586 |
+
],
|
| 4587 |
+
"Sweden": [
|
| 4588 |
+
"Stockholm",
|
| 4589 |
+
"Göteborg",
|
| 4590 |
+
"Malmö",
|
| 4591 |
+
"Uppsala",
|
| 4592 |
+
"Linköping",
|
| 4593 |
+
"Örebro",
|
| 4594 |
+
"Sollentuna",
|
| 4595 |
+
"Umeå",
|
| 4596 |
+
"Västerås",
|
| 4597 |
+
"Södermalm",
|
| 4598 |
+
"Jönköping",
|
| 4599 |
+
"Helsingborg",
|
| 4600 |
+
"Norrköping",
|
| 4601 |
+
"Huddinge",
|
| 4602 |
+
"Lund",
|
| 4603 |
+
"Luleå",
|
| 4604 |
+
"Haninge",
|
| 4605 |
+
"Gävle",
|
| 4606 |
+
"Borås",
|
| 4607 |
+
"Växjö",
|
| 4608 |
+
"Södertälje",
|
| 4609 |
+
"Halmstad",
|
| 4610 |
+
"Kungsholmen",
|
| 4611 |
+
"Eskilstuna",
|
| 4612 |
+
"Solna"
|
| 4613 |
+
],
|
| 4614 |
+
"Singapore": [
|
| 4615 |
+
"Singapore",
|
| 4616 |
+
"Ulu Bedok",
|
| 4617 |
+
"Bedok New Town",
|
| 4618 |
+
"Tampines Estate",
|
| 4619 |
+
"Jurong Town",
|
| 4620 |
+
"Tampines New Town",
|
| 4621 |
+
"Jurong West",
|
| 4622 |
+
"Woodlands",
|
| 4623 |
+
"Sengkang New Town",
|
| 4624 |
+
"Hougang New Town",
|
| 4625 |
+
"Yishun New Town",
|
| 4626 |
+
"Punggol",
|
| 4627 |
+
"Choa Chu Kang New Town",
|
| 4628 |
+
"Ang Mo Kio New Town",
|
| 4629 |
+
"Bukit Batok New Town",
|
| 4630 |
+
"Bukit Merah Estate",
|
| 4631 |
+
"Kampong Pasir Ris",
|
| 4632 |
+
"Bukit Panjang New Town",
|
| 4633 |
+
"Kembangan",
|
| 4634 |
+
"Toa Payoh New Town",
|
| 4635 |
+
"Serangoon",
|
| 4636 |
+
"Serangoon New Town",
|
| 4637 |
+
"Geylang",
|
| 4638 |
+
"Sembawang Estate",
|
| 4639 |
+
"Kallang"
|
| 4640 |
+
],
|
| 4641 |
+
"Saint Helena": [
|
| 4642 |
+
"Georgetown",
|
| 4643 |
+
"Edinburgh of the Seven Seas",
|
| 4644 |
+
"Half Tree Hollow",
|
| 4645 |
+
"St. Paul's",
|
| 4646 |
+
"Longwood",
|
| 4647 |
+
"Jamestown"
|
| 4648 |
+
],
|
| 4649 |
+
"Slovenia": [
|
| 4650 |
+
"Ljubljana",
|
| 4651 |
+
"Maribor",
|
| 4652 |
+
"Celje",
|
| 4653 |
+
"Kranj",
|
| 4654 |
+
"Koper",
|
| 4655 |
+
"Novo Mesto",
|
| 4656 |
+
"Velenje",
|
| 4657 |
+
"Ptuj",
|
| 4658 |
+
"Trbovlje",
|
| 4659 |
+
"Kamnik",
|
| 4660 |
+
"Jesenice",
|
| 4661 |
+
"Domžale",
|
| 4662 |
+
"Nova Gorica",
|
| 4663 |
+
"Škofja Loka",
|
| 4664 |
+
"Izola",
|
| 4665 |
+
"Murska Sobota",
|
| 4666 |
+
"Postojna",
|
| 4667 |
+
"Logatec",
|
| 4668 |
+
"Šentilj v Slov. Goricah",
|
| 4669 |
+
"Vrhnika",
|
| 4670 |
+
"Kočevje",
|
| 4671 |
+
"Slovenska Bistrica",
|
| 4672 |
+
"Slovenj Gradec",
|
| 4673 |
+
"Grosuplje",
|
| 4674 |
+
"Ravne na Koroškem"
|
| 4675 |
+
],
|
| 4676 |
+
"Svalbard and Jan Mayen": [
|
| 4677 |
+
"Longyearbyen",
|
| 4678 |
+
"Olonkinbyen"
|
| 4679 |
+
],
|
| 4680 |
+
"Slovakia": [
|
| 4681 |
+
"Bratislava",
|
| 4682 |
+
"Košice",
|
| 4683 |
+
"Petržalka",
|
| 4684 |
+
"Nitra",
|
| 4685 |
+
"Prešov",
|
| 4686 |
+
"Žilina",
|
| 4687 |
+
"Banská Bystrica",
|
| 4688 |
+
"Trnava",
|
| 4689 |
+
"Trenčín",
|
| 4690 |
+
"Martin",
|
| 4691 |
+
"Poprad",
|
| 4692 |
+
"Staré Mesto",
|
| 4693 |
+
"Prievidza",
|
| 4694 |
+
"Zvolen",
|
| 4695 |
+
"Považská Bystrica",
|
| 4696 |
+
"Nové Zámky",
|
| 4697 |
+
"Michalovce",
|
| 4698 |
+
"Karlova Ves",
|
| 4699 |
+
"Dúbravka",
|
| 4700 |
+
"Spišská Nová Ves",
|
| 4701 |
+
"Komárno",
|
| 4702 |
+
"Levice",
|
| 4703 |
+
"Humenné",
|
| 4704 |
+
"Bardejov",
|
| 4705 |
+
"Liptovský Mikuláš"
|
| 4706 |
+
],
|
| 4707 |
+
"Sierra Leone": [
|
| 4708 |
+
"Freetown",
|
| 4709 |
+
"Bo",
|
| 4710 |
+
"Kenema",
|
| 4711 |
+
"Koidu",
|
| 4712 |
+
"Makeni",
|
| 4713 |
+
"Waterloo",
|
| 4714 |
+
"Njala",
|
| 4715 |
+
"Lunsar",
|
| 4716 |
+
"Port Loko",
|
| 4717 |
+
"Goderich",
|
| 4718 |
+
"Kabala",
|
| 4719 |
+
"Segbwema",
|
| 4720 |
+
"Bumpe",
|
| 4721 |
+
"Mile 91",
|
| 4722 |
+
"Magburaka",
|
| 4723 |
+
"Kailahun",
|
| 4724 |
+
"Binkolo",
|
| 4725 |
+
"Yengema",
|
| 4726 |
+
"Rokupr",
|
| 4727 |
+
"Gandorhun",
|
| 4728 |
+
"Kambia",
|
| 4729 |
+
"Bonthe",
|
| 4730 |
+
"Pendembu",
|
| 4731 |
+
"Mattru Jong",
|
| 4732 |
+
"Blama"
|
| 4733 |
+
],
|
| 4734 |
+
"San Marino": [
|
| 4735 |
+
"Serravalle",
|
| 4736 |
+
"Dogana",
|
| 4737 |
+
"Valdragone",
|
| 4738 |
+
"Borgo Maggiore",
|
| 4739 |
+
"San Marino",
|
| 4740 |
+
"Domagnano",
|
| 4741 |
+
"Fiorentino",
|
| 4742 |
+
"Cailungo",
|
| 4743 |
+
"Murata",
|
| 4744 |
+
"Acquaviva",
|
| 4745 |
+
"Faetano",
|
| 4746 |
+
"Falciano",
|
| 4747 |
+
"Poggio di Chiesanuova",
|
| 4748 |
+
"Monte Giardino",
|
| 4749 |
+
"Fiorina"
|
| 4750 |
+
],
|
| 4751 |
+
"Senegal": [
|
| 4752 |
+
"Dakar",
|
| 4753 |
+
"Touba",
|
| 4754 |
+
"Pikine",
|
| 4755 |
+
"Guédiawaye",
|
| 4756 |
+
"Thiès",
|
| 4757 |
+
"Kaolack",
|
| 4758 |
+
"Rufisque",
|
| 4759 |
+
"Mbour",
|
| 4760 |
+
"Saint-Louis",
|
| 4761 |
+
"Thiès Nones",
|
| 4762 |
+
"Rufisque est",
|
| 4763 |
+
"Ziguinchor",
|
| 4764 |
+
"Diourbel",
|
| 4765 |
+
"Tambacounda",
|
| 4766 |
+
"Louga",
|
| 4767 |
+
"Kolda",
|
| 4768 |
+
"Tivaouane",
|
| 4769 |
+
"Mbaké",
|
| 4770 |
+
"Tiébo",
|
| 4771 |
+
"Méri Mbaké",
|
| 4772 |
+
"Richard-Toll",
|
| 4773 |
+
"Dougnane",
|
| 4774 |
+
"Bargny",
|
| 4775 |
+
"Kaffrine",
|
| 4776 |
+
"Bargny Guèdj"
|
| 4777 |
+
],
|
| 4778 |
+
"Somalia": [
|
| 4779 |
+
"Mogadishu",
|
| 4780 |
+
"Borama",
|
| 4781 |
+
"Hargeysa",
|
| 4782 |
+
"Berbera",
|
| 4783 |
+
"Kismayo",
|
| 4784 |
+
"Marka",
|
| 4785 |
+
"Ruqi",
|
| 4786 |
+
"Baidoa",
|
| 4787 |
+
"Cabudwaaq",
|
| 4788 |
+
"Burao",
|
| 4789 |
+
"Gebiley",
|
| 4790 |
+
"Bosaso",
|
| 4791 |
+
"Beled Hawo",
|
| 4792 |
+
"Balanbale",
|
| 4793 |
+
"Afgooye",
|
| 4794 |
+
"Gaalkacyo",
|
| 4795 |
+
"Laascaanood",
|
| 4796 |
+
"Garoowe",
|
| 4797 |
+
"Beledweyne",
|
| 4798 |
+
"Qoryooley",
|
| 4799 |
+
"Jawhar",
|
| 4800 |
+
"Jilib",
|
| 4801 |
+
"Jamaame",
|
| 4802 |
+
"Baardheere",
|
| 4803 |
+
"Dhabad"
|
| 4804 |
+
],
|
| 4805 |
+
"Suriname": [
|
| 4806 |
+
"Paramaribo",
|
| 4807 |
+
"Lelydorp",
|
| 4808 |
+
"Brokopondo",
|
| 4809 |
+
"Nieuw Nickerie",
|
| 4810 |
+
"Meerzorg",
|
| 4811 |
+
"Moengo",
|
| 4812 |
+
"Nieuw Amsterdam",
|
| 4813 |
+
"Mariënburg",
|
| 4814 |
+
"Wageningen",
|
| 4815 |
+
"Albina",
|
| 4816 |
+
"Groningen",
|
| 4817 |
+
"Brownsweg",
|
| 4818 |
+
"Onverwacht",
|
| 4819 |
+
"Totness",
|
| 4820 |
+
"Benzdorp (Monte Hermon)"
|
| 4821 |
+
],
|
| 4822 |
+
"South Sudan": [
|
| 4823 |
+
"Juba",
|
| 4824 |
+
"Winejok",
|
| 4825 |
+
"Yei",
|
| 4826 |
+
"Malakal",
|
| 4827 |
+
"Wau",
|
| 4828 |
+
"Kuacjok",
|
| 4829 |
+
"Pajok",
|
| 4830 |
+
"Gogrial",
|
| 4831 |
+
"Yambio",
|
| 4832 |
+
"Aweil",
|
| 4833 |
+
"Rumbek",
|
| 4834 |
+
"Bor",
|
| 4835 |
+
"Torit",
|
| 4836 |
+
"Leer",
|
| 4837 |
+
"Tonj",
|
| 4838 |
+
"Kafia Kingi",
|
| 4839 |
+
"Maridi",
|
| 4840 |
+
"Yirol",
|
| 4841 |
+
"Tambura",
|
| 4842 |
+
"Kodok",
|
| 4843 |
+
"Bentiu",
|
| 4844 |
+
"Kapoeta",
|
| 4845 |
+
"Raja"
|
| 4846 |
+
],
|
| 4847 |
+
"Sao Tome and Principe": [
|
| 4848 |
+
"São Tomé",
|
| 4849 |
+
"Neves",
|
| 4850 |
+
"Água Izé",
|
| 4851 |
+
"Folha Fede",
|
| 4852 |
+
"Almas",
|
| 4853 |
+
"Pantufo",
|
| 4854 |
+
"Rosema",
|
| 4855 |
+
"Agua Porca",
|
| 4856 |
+
"Piedade",
|
| 4857 |
+
"Changra",
|
| 4858 |
+
"Santo António",
|
| 4859 |
+
"Lemos",
|
| 4860 |
+
"Santo Amaro",
|
| 4861 |
+
"Cova Barro",
|
| 4862 |
+
"Micondo",
|
| 4863 |
+
"Agostinho Neto",
|
| 4864 |
+
"Belém",
|
| 4865 |
+
"Monta Alegre",
|
| 4866 |
+
"Batepá",
|
| 4867 |
+
"Obolongo",
|
| 4868 |
+
"Obo Izaquente",
|
| 4869 |
+
"Margarida Manuel",
|
| 4870 |
+
"Capela",
|
| 4871 |
+
"Maianço",
|
| 4872 |
+
"Boa Entrada"
|
| 4873 |
+
],
|
| 4874 |
+
"El Salvador": [
|
| 4875 |
+
"San Salvador",
|
| 4876 |
+
"Soyapango",
|
| 4877 |
+
"San Miguel",
|
| 4878 |
+
"Santa Ana",
|
| 4879 |
+
"Mejicanos",
|
| 4880 |
+
"Santa Tecla",
|
| 4881 |
+
"Apopa",
|
| 4882 |
+
"Delgado",
|
| 4883 |
+
"Sonsonate",
|
| 4884 |
+
"San Marcos",
|
| 4885 |
+
"Usulután",
|
| 4886 |
+
"Cojutepeque",
|
| 4887 |
+
"Cuscatancingo",
|
| 4888 |
+
"San Vicente",
|
| 4889 |
+
"Zacatecoluca",
|
| 4890 |
+
"San Martín",
|
| 4891 |
+
"Ilopango",
|
| 4892 |
+
"Ahuachapán",
|
| 4893 |
+
"Antiguo Cuscatlán",
|
| 4894 |
+
"Chalchuapa",
|
| 4895 |
+
"Quezaltepeque",
|
| 4896 |
+
"La Unión",
|
| 4897 |
+
"Ayutuxtepeque",
|
| 4898 |
+
"Acajutla",
|
| 4899 |
+
"Aguilares"
|
| 4900 |
+
],
|
| 4901 |
+
"Sint Maarten": [
|
| 4902 |
+
"Cul de Sac",
|
| 4903 |
+
"Lower Prince’s Quarter",
|
| 4904 |
+
"Koolbaai",
|
| 4905 |
+
"Upper Prince’s Quarter",
|
| 4906 |
+
"Philipsburg",
|
| 4907 |
+
"Simson Bay Village"
|
| 4908 |
+
],
|
| 4909 |
+
"Syria": [
|
| 4910 |
+
"Aleppo",
|
| 4911 |
+
"Damascus",
|
| 4912 |
+
"Homs",
|
| 4913 |
+
"Latakia",
|
| 4914 |
+
"Ar Raqqah",
|
| 4915 |
+
"Ḩamāh",
|
| 4916 |
+
"Ţarţūs",
|
| 4917 |
+
"Al Ḩasakah",
|
| 4918 |
+
"Deir ez-Zor",
|
| 4919 |
+
"Al Bāb",
|
| 4920 |
+
"Idlib",
|
| 4921 |
+
"Dūmā",
|
| 4922 |
+
"Manbij",
|
| 4923 |
+
"Dar‘ā",
|
| 4924 |
+
"As Salamīyah",
|
| 4925 |
+
"Ath Thawrah",
|
| 4926 |
+
"Dārayyā",
|
| 4927 |
+
"I‘zāz",
|
| 4928 |
+
"Jablah",
|
| 4929 |
+
"As Safīrah",
|
| 4930 |
+
"As-Suwayda",
|
| 4931 |
+
"Ālbū Kamāl",
|
| 4932 |
+
"At Tall",
|
| 4933 |
+
"Al Mayādīn",
|
| 4934 |
+
"Ar Rastan"
|
| 4935 |
+
],
|
| 4936 |
+
"Eswatini": [
|
| 4937 |
+
"Manzini",
|
| 4938 |
+
"Mbabane",
|
| 4939 |
+
"Malkerns",
|
| 4940 |
+
"Nhlangano",
|
| 4941 |
+
"Mhlume",
|
| 4942 |
+
"Hluti",
|
| 4943 |
+
"Siteki",
|
| 4944 |
+
"Piggs Peak",
|
| 4945 |
+
"Lobamba",
|
| 4946 |
+
"Vuvulane",
|
| 4947 |
+
"Kwaluseni",
|
| 4948 |
+
"Bhunya",
|
| 4949 |
+
"Mhlambanyatsi",
|
| 4950 |
+
"Hlathikhulu",
|
| 4951 |
+
"Bulembu",
|
| 4952 |
+
"Kubuta",
|
| 4953 |
+
"Lavumisa",
|
| 4954 |
+
"Thunzini",
|
| 4955 |
+
"Sidvokodvo",
|
| 4956 |
+
"Darkton",
|
| 4957 |
+
"Nsoko",
|
| 4958 |
+
"Ntfonjeni"
|
| 4959 |
+
],
|
| 4960 |
+
"Turks and Caicos Islands": [
|
| 4961 |
+
"Providenciales",
|
| 4962 |
+
"Cockburn Town",
|
| 4963 |
+
"Wheeland",
|
| 4964 |
+
"Cockburn Harbour"
|
| 4965 |
+
],
|
| 4966 |
+
"Chad": [
|
| 4967 |
+
"N'Djamena",
|
| 4968 |
+
"Moundou",
|
| 4969 |
+
"Abéché",
|
| 4970 |
+
"Sarh",
|
| 4971 |
+
"Kelo",
|
| 4972 |
+
"Am Timan",
|
| 4973 |
+
"Doba",
|
| 4974 |
+
"Pala",
|
| 4975 |
+
"Bongor",
|
| 4976 |
+
"Goz Beida",
|
| 4977 |
+
"Koumra",
|
| 4978 |
+
"Mongo",
|
| 4979 |
+
"Bol",
|
| 4980 |
+
"Mao",
|
| 4981 |
+
"Iriba",
|
| 4982 |
+
"Faya-Largeau",
|
| 4983 |
+
"Bitkine",
|
| 4984 |
+
"Bébédja",
|
| 4985 |
+
"Massakory",
|
| 4986 |
+
"Umm Hājar",
|
| 4987 |
+
"Moussoro",
|
| 4988 |
+
"Biltine",
|
| 4989 |
+
"Léré",
|
| 4990 |
+
"Fianga",
|
| 4991 |
+
"Goré"
|
| 4992 |
+
],
|
| 4993 |
+
"French Southern Territories": [
|
| 4994 |
+
"Port-aux-Français"
|
| 4995 |
+
],
|
| 4996 |
+
"Togo": [
|
| 4997 |
+
"Lomé",
|
| 4998 |
+
"Sokodé",
|
| 4999 |
+
"Kara",
|
| 5000 |
+
"Atakpamé",
|
| 5001 |
+
"Kpalimé",
|
| 5002 |
+
"Bassar",
|
| 5003 |
+
"Dapaong",
|
| 5004 |
+
"Tsévié",
|
| 5005 |
+
"Aného",
|
| 5006 |
+
"Mango",
|
| 5007 |
+
"Anié",
|
| 5008 |
+
"Notsé",
|
| 5009 |
+
"Sinkassé",
|
| 5010 |
+
"Tchamba",
|
| 5011 |
+
"Sotouboua",
|
| 5012 |
+
"Badou",
|
| 5013 |
+
"Niamtougou",
|
| 5014 |
+
"Bafilo",
|
| 5015 |
+
"Tabligbo",
|
| 5016 |
+
"Vogan",
|
| 5017 |
+
"Kandé",
|
| 5018 |
+
"Amlamé",
|
| 5019 |
+
"Blitta",
|
| 5020 |
+
"Guérin-Kouka",
|
| 5021 |
+
"Afanyangan"
|
| 5022 |
+
],
|
| 5023 |
+
"Thailand": [
|
| 5024 |
+
"Bangkok",
|
| 5025 |
+
"Samut Prakan",
|
| 5026 |
+
"Mueang Nonthaburi",
|
| 5027 |
+
"Chon Buri",
|
| 5028 |
+
"Phra Pradaeng",
|
| 5029 |
+
"Bang Khae",
|
| 5030 |
+
"Hat Yai",
|
| 5031 |
+
"Pak Kret",
|
| 5032 |
+
"Sai Mai",
|
| 5033 |
+
"Si Racha",
|
| 5034 |
+
"Latkrabang",
|
| 5035 |
+
"Watthana",
|
| 5036 |
+
"Khlong Sam Wa",
|
| 5037 |
+
"Bang Khun Thian",
|
| 5038 |
+
"Lat Krabang",
|
| 5039 |
+
"Chatuchak",
|
| 5040 |
+
"Ban Khlong Prawet",
|
| 5041 |
+
"Chom Thong",
|
| 5042 |
+
"Nong Chok",
|
| 5043 |
+
"Lampang",
|
| 5044 |
+
"Nong Khaem",
|
| 5045 |
+
"Bang Kapi",
|
| 5046 |
+
"Bueng Kum",
|
| 5047 |
+
"Surat Thani",
|
| 5048 |
+
"Udon Thani"
|
| 5049 |
+
],
|
| 5050 |
+
"Tajikistan": [
|
| 5051 |
+
"Dushanbe",
|
| 5052 |
+
"Isfara",
|
| 5053 |
+
"Istaravshan",
|
| 5054 |
+
"Kŭlob",
|
| 5055 |
+
"Konibodom",
|
| 5056 |
+
"Khujand",
|
| 5057 |
+
"Bokhtar",
|
| 5058 |
+
"Qayroqqum",
|
| 5059 |
+
"Vahdat",
|
| 5060 |
+
"Tursunzoda",
|
| 5061 |
+
"Buston",
|
| 5062 |
+
"Panjakent",
|
| 5063 |
+
"Khorugh",
|
| 5064 |
+
"Ishqoshim",
|
| 5065 |
+
"Hisor",
|
| 5066 |
+
"Boshkengash",
|
| 5067 |
+
"Dalyoni Bolo",
|
| 5068 |
+
"Danghara",
|
| 5069 |
+
"Moskovskiy",
|
| 5070 |
+
"Hulbuk",
|
| 5071 |
+
"Farkhor",
|
| 5072 |
+
"Chubek",
|
| 5073 |
+
"Kolkhozobod",
|
| 5074 |
+
"Norak",
|
| 5075 |
+
"Taboshar"
|
| 5076 |
+
],
|
| 5077 |
+
"Tokelau": [
|
| 5078 |
+
"Nukunonu",
|
| 5079 |
+
"Atafu Village",
|
| 5080 |
+
"Fale old settlement"
|
| 5081 |
+
],
|
| 5082 |
+
"Timor Leste": [
|
| 5083 |
+
"Dili",
|
| 5084 |
+
"Maliana",
|
| 5085 |
+
"Suai",
|
| 5086 |
+
"Likisá",
|
| 5087 |
+
"Aileu",
|
| 5088 |
+
"Lospalos",
|
| 5089 |
+
"Maubara",
|
| 5090 |
+
"Baukau",
|
| 5091 |
+
"Venilale",
|
| 5092 |
+
"Ainaro",
|
| 5093 |
+
"Atauro",
|
| 5094 |
+
"Gleno",
|
| 5095 |
+
"Same",
|
| 5096 |
+
"Viqueque",
|
| 5097 |
+
"Pante Makasar",
|
| 5098 |
+
"Dare",
|
| 5099 |
+
"Metinaro",
|
| 5100 |
+
"Irabin de Baixo",
|
| 5101 |
+
"Manatutu"
|
| 5102 |
+
],
|
| 5103 |
+
"Turkmenistan": [
|
| 5104 |
+
"Ashgabat",
|
| 5105 |
+
"Türkmenabat",
|
| 5106 |
+
"Daşoguz",
|
| 5107 |
+
"Mary",
|
| 5108 |
+
"Türkmenbaşy",
|
| 5109 |
+
"Balkanabat",
|
| 5110 |
+
"Bayramaly",
|
| 5111 |
+
"Tejen",
|
| 5112 |
+
"Arkadag şäheri",
|
| 5113 |
+
"Abadan",
|
| 5114 |
+
"Yolöten",
|
| 5115 |
+
"Köneürgench",
|
| 5116 |
+
"Yylanly",
|
| 5117 |
+
"Gowurdak",
|
| 5118 |
+
"Gökdepe",
|
| 5119 |
+
"Kerki",
|
| 5120 |
+
"Çeleken",
|
| 5121 |
+
"Änew",
|
| 5122 |
+
"Bereket",
|
| 5123 |
+
"Gumdag",
|
| 5124 |
+
"Baharly",
|
| 5125 |
+
"Hojambaz",
|
| 5126 |
+
"Oýrat",
|
| 5127 |
+
"Boldumsaz",
|
| 5128 |
+
"Gazojak"
|
| 5129 |
+
],
|
| 5130 |
+
"Tunisia": [
|
| 5131 |
+
"Tunis",
|
| 5132 |
+
"Sfax",
|
| 5133 |
+
"Sousse",
|
| 5134 |
+
"Kairouan",
|
| 5135 |
+
"Bizerte",
|
| 5136 |
+
"Sukrah",
|
| 5137 |
+
"Aryanah",
|
| 5138 |
+
"Gabès",
|
| 5139 |
+
"Sejoumi",
|
| 5140 |
+
"El Mourouj",
|
| 5141 |
+
"Hammamet",
|
| 5142 |
+
"Gafsa",
|
| 5143 |
+
"La Gazelle",
|
| 5144 |
+
"Monastir",
|
| 5145 |
+
"La Marsa",
|
| 5146 |
+
"Ben Arous",
|
| 5147 |
+
"Kasserine",
|
| 5148 |
+
"Ettadhamen",
|
| 5149 |
+
"Douar Hicher",
|
| 5150 |
+
"La Goulette",
|
| 5151 |
+
"Zarzis",
|
| 5152 |
+
"Houmt Souk",
|
| 5153 |
+
"Le Kram",
|
| 5154 |
+
"El Hamma",
|
| 5155 |
+
"Msaken"
|
| 5156 |
+
],
|
| 5157 |
+
"Tonga": [
|
| 5158 |
+
"Nuku‘alofa",
|
| 5159 |
+
"Neiafu",
|
| 5160 |
+
"Haveluloto",
|
| 5161 |
+
"Tofoa-Koloua",
|
| 5162 |
+
"Vainī",
|
| 5163 |
+
"Ha'ateiho",
|
| 5164 |
+
"Popua",
|
| 5165 |
+
"Nukunuku",
|
| 5166 |
+
"Fangale’ounga",
|
| 5167 |
+
"Pea",
|
| 5168 |
+
"Lapaha",
|
| 5169 |
+
"Houma",
|
| 5170 |
+
"Tatakamotonga",
|
| 5171 |
+
"Pangai",
|
| 5172 |
+
"Fua'amotu",
|
| 5173 |
+
"'Ohonua",
|
| 5174 |
+
"Leimātu'a",
|
| 5175 |
+
"Veitongo",
|
| 5176 |
+
"Hōfoa",
|
| 5177 |
+
"Tokomololo",
|
| 5178 |
+
"Kolonga",
|
| 5179 |
+
"Puke",
|
| 5180 |
+
"Folaha",
|
| 5181 |
+
"Ha'asini",
|
| 5182 |
+
"Pelehake"
|
| 5183 |
+
],
|
| 5184 |
+
"Turkey": [
|
| 5185 |
+
"Istanbul",
|
| 5186 |
+
"Ankara",
|
| 5187 |
+
"Bursa",
|
| 5188 |
+
"İzmir",
|
| 5189 |
+
"Gaziantep",
|
| 5190 |
+
"Adana",
|
| 5191 |
+
"Diyarbakır",
|
| 5192 |
+
"Kayseri",
|
| 5193 |
+
"Konya",
|
| 5194 |
+
"Antalya",
|
| 5195 |
+
"Malatya",
|
| 5196 |
+
"Çankaya",
|
| 5197 |
+
"Eskişehir",
|
| 5198 |
+
"Erzurum",
|
| 5199 |
+
"Bağcılar",
|
| 5200 |
+
"Bahçelievler",
|
| 5201 |
+
"Umraniye",
|
| 5202 |
+
"Mersin",
|
| 5203 |
+
"Van",
|
| 5204 |
+
"Üsküdar",
|
| 5205 |
+
"Esenler",
|
| 5206 |
+
"Karabağlar",
|
| 5207 |
+
"Batman",
|
| 5208 |
+
"Muratpaşa",
|
| 5209 |
+
"Şanlıurfa"
|
| 5210 |
+
],
|
| 5211 |
+
"Trinidad and Tobago": [
|
| 5212 |
+
"Chaguanas",
|
| 5213 |
+
"Mon Repos",
|
| 5214 |
+
"San Fernando",
|
| 5215 |
+
"Port of Spain",
|
| 5216 |
+
"Rio Claro",
|
| 5217 |
+
"Arima",
|
| 5218 |
+
"Marabella",
|
| 5219 |
+
"Diego Martin",
|
| 5220 |
+
"Laventille",
|
| 5221 |
+
"Point Fortin",
|
| 5222 |
+
"Tunapuna",
|
| 5223 |
+
"Scarborough",
|
| 5224 |
+
"Sangre Grande",
|
| 5225 |
+
"Paradise",
|
| 5226 |
+
"Peñal",
|
| 5227 |
+
"Arouca",
|
| 5228 |
+
"Princes Town",
|
| 5229 |
+
"Gasparillo",
|
| 5230 |
+
"Siparia",
|
| 5231 |
+
"Petit Valley",
|
| 5232 |
+
"Claxton Bay",
|
| 5233 |
+
"Couva",
|
| 5234 |
+
"Mucurapo",
|
| 5235 |
+
"Tabaquite",
|
| 5236 |
+
"Debe"
|
| 5237 |
+
],
|
| 5238 |
+
"Tuvalu": [
|
| 5239 |
+
"Funafuti",
|
| 5240 |
+
"Senala Village",
|
| 5241 |
+
"Alapi Village",
|
| 5242 |
+
"Fakaifou Village",
|
| 5243 |
+
"Savave Village",
|
| 5244 |
+
"Teone Village",
|
| 5245 |
+
"Vaiaku Village",
|
| 5246 |
+
"Motufoua School",
|
| 5247 |
+
"Tanrake Village",
|
| 5248 |
+
"Toga Village",
|
| 5249 |
+
"Asau Village",
|
| 5250 |
+
"Kulia Village"
|
| 5251 |
+
],
|
| 5252 |
+
"Taiwan": [
|
| 5253 |
+
"Taipei",
|
| 5254 |
+
"New Taipei City",
|
| 5255 |
+
"Taichung",
|
| 5256 |
+
"Kaohsiung",
|
| 5257 |
+
"Tainan",
|
| 5258 |
+
"Banqiao",
|
| 5259 |
+
"Taoyuan",
|
| 5260 |
+
"Hsinchu",
|
| 5261 |
+
"Taoyuan City",
|
| 5262 |
+
"Keelung",
|
| 5263 |
+
"Fengshan",
|
| 5264 |
+
"Neihu",
|
| 5265 |
+
"Chiayi City",
|
| 5266 |
+
"Yongkang",
|
| 5267 |
+
"Chang-hua",
|
| 5268 |
+
"Changhua",
|
| 5269 |
+
"Zhubei",
|
| 5270 |
+
"Bade",
|
| 5271 |
+
"Xizhi",
|
| 5272 |
+
"Danshui",
|
| 5273 |
+
"Shulin",
|
| 5274 |
+
"Yuanlin",
|
| 5275 |
+
"Sanxia",
|
| 5276 |
+
"Neili",
|
| 5277 |
+
"Douliu"
|
| 5278 |
+
],
|
| 5279 |
+
"Tanzania": [
|
| 5280 |
+
"Dar es Salaam",
|
| 5281 |
+
"Mwanza",
|
| 5282 |
+
"Dodoma",
|
| 5283 |
+
"Zanzibar",
|
| 5284 |
+
"Arusha",
|
| 5285 |
+
"Mbeya",
|
| 5286 |
+
"Morogoro",
|
| 5287 |
+
"Kahama",
|
| 5288 |
+
"Tanga",
|
| 5289 |
+
"Geita",
|
| 5290 |
+
"Tabora",
|
| 5291 |
+
"Sumbawanga",
|
| 5292 |
+
"Songea",
|
| 5293 |
+
"Kibaha",
|
| 5294 |
+
"Bariadi",
|
| 5295 |
+
"Kasulu",
|
| 5296 |
+
"Singida",
|
| 5297 |
+
"Kigoma",
|
| 5298 |
+
"Moshi",
|
| 5299 |
+
"Tunduma",
|
| 5300 |
+
"Ifakara",
|
| 5301 |
+
"Mpanda",
|
| 5302 |
+
"Iringa",
|
| 5303 |
+
"Bunda",
|
| 5304 |
+
"Musoma"
|
| 5305 |
+
],
|
| 5306 |
+
"Ukraine": [
|
| 5307 |
+
"Kyiv",
|
| 5308 |
+
"Kharkiv",
|
| 5309 |
+
"Odesa",
|
| 5310 |
+
"Dnipro",
|
| 5311 |
+
"Donetsk",
|
| 5312 |
+
"Lviv",
|
| 5313 |
+
"Zaporizhzhya",
|
| 5314 |
+
"Kryvyy Rih",
|
| 5315 |
+
"Sevastopol",
|
| 5316 |
+
"Mykolayiv",
|
| 5317 |
+
"Saltivka",
|
| 5318 |
+
"Luhansk",
|
| 5319 |
+
"Vinnytsya",
|
| 5320 |
+
"Stara Darnytsya",
|
| 5321 |
+
"Makiivka",
|
| 5322 |
+
"Simferopol",
|
| 5323 |
+
"Chernihiv",
|
| 5324 |
+
"Kherson",
|
| 5325 |
+
"Poltava",
|
| 5326 |
+
"Khmelnytskyi",
|
| 5327 |
+
"Cherkasy",
|
| 5328 |
+
"Chernivtsi",
|
| 5329 |
+
"Zhytomyr",
|
| 5330 |
+
"Sumy",
|
| 5331 |
+
"Rivne"
|
| 5332 |
+
],
|
| 5333 |
+
"Uganda": [
|
| 5334 |
+
"Kampala",
|
| 5335 |
+
"Nansana",
|
| 5336 |
+
"Kira",
|
| 5337 |
+
"Bunamwaya",
|
| 5338 |
+
"Kyengera",
|
| 5339 |
+
"Mbarara",
|
| 5340 |
+
"Kasangati",
|
| 5341 |
+
"Mukono",
|
| 5342 |
+
"Njeru",
|
| 5343 |
+
"Gulu",
|
| 5344 |
+
"Katabi",
|
| 5345 |
+
"Kajansi",
|
| 5346 |
+
"Lugazi",
|
| 5347 |
+
"Hoima",
|
| 5348 |
+
"Mubende",
|
| 5349 |
+
"Lira",
|
| 5350 |
+
"Ibanda",
|
| 5351 |
+
"Masaka",
|
| 5352 |
+
"Kasese",
|
| 5353 |
+
"Mbale",
|
| 5354 |
+
"Masindi",
|
| 5355 |
+
"Mityana",
|
| 5356 |
+
"Entebbe",
|
| 5357 |
+
"Jinja",
|
| 5358 |
+
"Wakiso"
|
| 5359 |
+
],
|
| 5360 |
+
"United States": [
|
| 5361 |
+
"New York City",
|
| 5362 |
+
"Los Angeles",
|
| 5363 |
+
"Brooklyn",
|
| 5364 |
+
"Chicago",
|
| 5365 |
+
"Queens",
|
| 5366 |
+
"Houston",
|
| 5367 |
+
"Phoenix",
|
| 5368 |
+
"Philadelphia",
|
| 5369 |
+
"San Antonio",
|
| 5370 |
+
"Manhattan",
|
| 5371 |
+
"San Diego",
|
| 5372 |
+
"The Bronx",
|
| 5373 |
+
"Dallas",
|
| 5374 |
+
"Jacksonville",
|
| 5375 |
+
"Fort Worth",
|
| 5376 |
+
"San Jose",
|
| 5377 |
+
"Austin",
|
| 5378 |
+
"Columbus",
|
| 5379 |
+
"Charlotte",
|
| 5380 |
+
"Indianapolis",
|
| 5381 |
+
"San Francisco",
|
| 5382 |
+
"Seattle",
|
| 5383 |
+
"Denver",
|
| 5384 |
+
"Washington",
|
| 5385 |
+
"Nashville"
|
| 5386 |
+
],
|
| 5387 |
+
"Uruguay": [
|
| 5388 |
+
"Montevideo",
|
| 5389 |
+
"Salto",
|
| 5390 |
+
"Paysandú",
|
| 5391 |
+
"Las Piedras",
|
| 5392 |
+
"Rivera",
|
| 5393 |
+
"Maldonado",
|
| 5394 |
+
"Tacuarembó",
|
| 5395 |
+
"Melo",
|
| 5396 |
+
"Mercedes",
|
| 5397 |
+
"Artigas",
|
| 5398 |
+
"Minas",
|
| 5399 |
+
"San José de Mayo",
|
| 5400 |
+
"Durazno",
|
| 5401 |
+
"Florida",
|
| 5402 |
+
"Barros Blancos",
|
| 5403 |
+
"San Carlos",
|
| 5404 |
+
"Treinta y Tres",
|
| 5405 |
+
"Rocha",
|
| 5406 |
+
"Pando",
|
| 5407 |
+
"Fray Bentos",
|
| 5408 |
+
"Colonia del Sacramento",
|
| 5409 |
+
"Trinidad",
|
| 5410 |
+
"La Paz",
|
| 5411 |
+
"Canelones",
|
| 5412 |
+
"Carmelo"
|
| 5413 |
+
],
|
| 5414 |
+
"Uzbekistan": [
|
| 5415 |
+
"Tashkent",
|
| 5416 |
+
"Andijon",
|
| 5417 |
+
"Namangan",
|
| 5418 |
+
"Samarkand",
|
| 5419 |
+
"Yunusobod",
|
| 5420 |
+
"Nukus",
|
| 5421 |
+
"Fergana",
|
| 5422 |
+
"Bukhara",
|
| 5423 |
+
"Qarshi",
|
| 5424 |
+
"Chilanzar",
|
| 5425 |
+
"Qo‘qon",
|
| 5426 |
+
"Marg‘ilon",
|
| 5427 |
+
"Angren",
|
| 5428 |
+
"Tirmiz",
|
| 5429 |
+
"Jizzax",
|
| 5430 |
+
"Chirchiq",
|
| 5431 |
+
"Urganch",
|
| 5432 |
+
"Navoiy",
|
| 5433 |
+
"Shahrisabz",
|
| 5434 |
+
"Olmaliq",
|
| 5435 |
+
"Xiva",
|
| 5436 |
+
"Sergeli",
|
| 5437 |
+
"Chust",
|
| 5438 |
+
"Quvasoy",
|
| 5439 |
+
"Beshariq"
|
| 5440 |
+
],
|
| 5441 |
+
"Vatican": [
|
| 5442 |
+
"Vatican City"
|
| 5443 |
+
],
|
| 5444 |
+
"Saint Vincent and the Grenadines": [
|
| 5445 |
+
"Kingstown",
|
| 5446 |
+
"Calliaqua",
|
| 5447 |
+
"Diamond",
|
| 5448 |
+
"Redemption",
|
| 5449 |
+
"Georgetown",
|
| 5450 |
+
"Bottle and Glass",
|
| 5451 |
+
"New Montrose",
|
| 5452 |
+
"Greiggs",
|
| 5453 |
+
"Sion Hill",
|
| 5454 |
+
"Byera Village",
|
| 5455 |
+
"Questelles",
|
| 5456 |
+
"Old Montrose",
|
| 5457 |
+
"Petit Bordel",
|
| 5458 |
+
"Friendly Village",
|
| 5459 |
+
"Peruvian Vale",
|
| 5460 |
+
"Biabou",
|
| 5461 |
+
"Barrouallie",
|
| 5462 |
+
"Rosehall",
|
| 5463 |
+
"Port Elizabeth",
|
| 5464 |
+
"Chateaubelair",
|
| 5465 |
+
"Edinboro",
|
| 5466 |
+
"Vermont",
|
| 5467 |
+
"Gomea",
|
| 5468 |
+
"Dovers",
|
| 5469 |
+
"Layou"
|
| 5470 |
+
],
|
| 5471 |
+
"Venezuela": [
|
| 5472 |
+
"Caracas",
|
| 5473 |
+
"Maracaibo",
|
| 5474 |
+
"Valencia",
|
| 5475 |
+
"Barquisimeto",
|
| 5476 |
+
"Ciudad Guayana",
|
| 5477 |
+
"Barcelona",
|
| 5478 |
+
"Maturín",
|
| 5479 |
+
"Maracay",
|
| 5480 |
+
"Ciudad Bolívar",
|
| 5481 |
+
"Cumaná",
|
| 5482 |
+
"Barinas",
|
| 5483 |
+
"Puerto La Cruz",
|
| 5484 |
+
"Petare",
|
| 5485 |
+
"Cabimas",
|
| 5486 |
+
"Turmero",
|
| 5487 |
+
"Mérida",
|
| 5488 |
+
"San Cristóbal",
|
| 5489 |
+
"Alto Barinas",
|
| 5490 |
+
"Santa Teresa del Tuy",
|
| 5491 |
+
"Los Teques",
|
| 5492 |
+
"Guarenas",
|
| 5493 |
+
"Coro",
|
| 5494 |
+
"Valera",
|
| 5495 |
+
"Baruta",
|
| 5496 |
+
"Ciudad Ojeda"
|
| 5497 |
+
],
|
| 5498 |
+
"British Virgin Islands": [
|
| 5499 |
+
"Road Town"
|
| 5500 |
+
],
|
| 5501 |
+
"U.S. Virgin Islands": [
|
| 5502 |
+
"Saint Croix",
|
| 5503 |
+
"Charlotte Amalie",
|
| 5504 |
+
"Tutu",
|
| 5505 |
+
"Cruz Bay",
|
| 5506 |
+
"Christiansted",
|
| 5507 |
+
"Coral Bay",
|
| 5508 |
+
"Frederiksted"
|
| 5509 |
+
],
|
| 5510 |
+
"Vietnam": [
|
| 5511 |
+
"Ho Chi Minh City",
|
| 5512 |
+
"Hanoi",
|
| 5513 |
+
"Haiphong",
|
| 5514 |
+
"Cần Thơ",
|
| 5515 |
+
"Huế",
|
| 5516 |
+
"Da Nang",
|
| 5517 |
+
"Biên Hòa",
|
| 5518 |
+
"Thanh Hóa",
|
| 5519 |
+
"Vinh",
|
| 5520 |
+
"Thuận An",
|
| 5521 |
+
"Nha Trang",
|
| 5522 |
+
"Chợ Lớn",
|
| 5523 |
+
"Thủ Đức",
|
| 5524 |
+
"Qui Nhon",
|
| 5525 |
+
"Vũng Tàu",
|
| 5526 |
+
"Dĩ An",
|
| 5527 |
+
"Rạch Giá",
|
| 5528 |
+
"Bắc Giang",
|
| 5529 |
+
"Nam Định",
|
| 5530 |
+
"Buôn Ma Thuột",
|
| 5531 |
+
"Thái Nguyên",
|
| 5532 |
+
"Việt Trì",
|
| 5533 |
+
"Quận Mười",
|
| 5534 |
+
"Thủ Dầu Một",
|
| 5535 |
+
"Bến Cát"
|
| 5536 |
+
],
|
| 5537 |
+
"Vanuatu": [
|
| 5538 |
+
"Port-Vila",
|
| 5539 |
+
"Luganville",
|
| 5540 |
+
"Norsup",
|
| 5541 |
+
"Pango",
|
| 5542 |
+
"Isangel",
|
| 5543 |
+
"Port-Olry",
|
| 5544 |
+
"Sola",
|
| 5545 |
+
"Hog Harbour",
|
| 5546 |
+
"Lakatoro",
|
| 5547 |
+
"Saratamata"
|
| 5548 |
+
],
|
| 5549 |
+
"Wallis and Futuna": [
|
| 5550 |
+
"Mua",
|
| 5551 |
+
"Mata-Utu",
|
| 5552 |
+
"Alele",
|
| 5553 |
+
"Falaleu",
|
| 5554 |
+
"Utufua",
|
| 5555 |
+
"Liku",
|
| 5556 |
+
"Halalo",
|
| 5557 |
+
"Leava",
|
| 5558 |
+
"Alo"
|
| 5559 |
+
],
|
| 5560 |
+
"Samoa": [
|
| 5561 |
+
"Apia",
|
| 5562 |
+
"Asau",
|
| 5563 |
+
"Mulifanua",
|
| 5564 |
+
"Faleula",
|
| 5565 |
+
"Vaimoso",
|
| 5566 |
+
"Siusega",
|
| 5567 |
+
"Malie",
|
| 5568 |
+
"Fasito‘outa",
|
| 5569 |
+
"Vaiusu",
|
| 5570 |
+
"Afega",
|
| 5571 |
+
"Nofoali‘i",
|
| 5572 |
+
"Solosolo",
|
| 5573 |
+
"Vailima",
|
| 5574 |
+
"Leulumoega",
|
| 5575 |
+
"Satapuala",
|
| 5576 |
+
"Tuana‘i",
|
| 5577 |
+
"Falefa",
|
| 5578 |
+
"Matavai",
|
| 5579 |
+
"Safotu",
|
| 5580 |
+
"Si’umu",
|
| 5581 |
+
"Gataivai",
|
| 5582 |
+
"Lotofagā",
|
| 5583 |
+
"Lufilufi",
|
| 5584 |
+
"Levī",
|
| 5585 |
+
"Sapulu"
|
| 5586 |
+
],
|
| 5587 |
+
"Kosovo": [
|
| 5588 |
+
"Pristina",
|
| 5589 |
+
"Prizren",
|
| 5590 |
+
"Mitrovicë",
|
| 5591 |
+
"Gjakovë",
|
| 5592 |
+
"Suva Reka",
|
| 5593 |
+
"Ferizaj",
|
| 5594 |
+
"Glogovac",
|
| 5595 |
+
"Gjilan",
|
| 5596 |
+
"Deçan",
|
| 5597 |
+
"Pejë",
|
| 5598 |
+
"Vitina",
|
| 5599 |
+
"Istok",
|
| 5600 |
+
"Shtime",
|
| 5601 |
+
"Podujeva",
|
| 5602 |
+
"Dragash",
|
| 5603 |
+
"Vushtrri",
|
| 5604 |
+
"Orahovac",
|
| 5605 |
+
"Llazicë",
|
| 5606 |
+
"Leposaviq",
|
| 5607 |
+
"Zvečan",
|
| 5608 |
+
"Kosovo Polje",
|
| 5609 |
+
"Zubin Potok",
|
| 5610 |
+
"Obiliq",
|
| 5611 |
+
"Kačanik",
|
| 5612 |
+
"Hani i Elezit"
|
| 5613 |
+
],
|
| 5614 |
+
"Yemen": [
|
| 5615 |
+
"Sanaa",
|
| 5616 |
+
"Aden",
|
| 5617 |
+
"Taiz",
|
| 5618 |
+
"Ibb",
|
| 5619 |
+
"Al Ḩudaydah",
|
| 5620 |
+
"Mukalla",
|
| 5621 |
+
"Dhamār",
|
| 5622 |
+
"‘Amrān",
|
| 5623 |
+
"Sayyān",
|
| 5624 |
+
"Zabīd",
|
| 5625 |
+
"Sa'dah",
|
| 5626 |
+
"Bājil",
|
| 5627 |
+
"Ḩajjah",
|
| 5628 |
+
"Dhī as Sufāl",
|
| 5629 |
+
"Al Bayda",
|
| 5630 |
+
"Ataq",
|
| 5631 |
+
"Bayt al Faqīh",
|
| 5632 |
+
"Yarīm",
|
| 5633 |
+
"Saḩar",
|
| 5634 |
+
"Laḩij",
|
| 5635 |
+
"Zinjibār",
|
| 5636 |
+
"Al Ḩazm",
|
| 5637 |
+
"Ma'rib",
|
| 5638 |
+
"Mocha",
|
| 5639 |
+
"Aḑ Ḑāli‘"
|
| 5640 |
+
],
|
| 5641 |
+
"Mayotte": [
|
| 5642 |
+
"Mamoudzou",
|
| 5643 |
+
"Koungou",
|
| 5644 |
+
"Labattoir",
|
| 5645 |
+
"Kaouéni",
|
| 5646 |
+
"Mtsapéré",
|
| 5647 |
+
"Dzaoudzi",
|
| 5648 |
+
"Majikavo Koropa",
|
| 5649 |
+
"Pamandzi",
|
| 5650 |
+
"Dembeni",
|
| 5651 |
+
"Sada",
|
| 5652 |
+
"Kavani",
|
| 5653 |
+
"Passamainty",
|
| 5654 |
+
"Bandraboua",
|
| 5655 |
+
"Mtsamboro",
|
| 5656 |
+
"Tsingoni",
|
| 5657 |
+
"Ouangani",
|
| 5658 |
+
"Chiconi",
|
| 5659 |
+
"Combani",
|
| 5660 |
+
"Bandrele",
|
| 5661 |
+
"Chirongui",
|
| 5662 |
+
"Dzumogne",
|
| 5663 |
+
"Vahibé",
|
| 5664 |
+
"Tsoundzou 1",
|
| 5665 |
+
"Bouéni",
|
| 5666 |
+
"M'Tsangamouji"
|
| 5667 |
+
],
|
| 5668 |
+
"South Africa": [
|
| 5669 |
+
"Johannesburg",
|
| 5670 |
+
"Cape Town",
|
| 5671 |
+
"Durban",
|
| 5672 |
+
"Pretoria",
|
| 5673 |
+
"Soweto",
|
| 5674 |
+
"Port Elizabeth",
|
| 5675 |
+
"Soshanguve",
|
| 5676 |
+
"Pietermaritzburg",
|
| 5677 |
+
"Evaton",
|
| 5678 |
+
"Benoni",
|
| 5679 |
+
"Bloemfontein",
|
| 5680 |
+
"Thembisa",
|
| 5681 |
+
"East London",
|
| 5682 |
+
"Vereeniging",
|
| 5683 |
+
"Boksburg",
|
| 5684 |
+
"Welkom",
|
| 5685 |
+
"Newcastle",
|
| 5686 |
+
"Krugersdorp",
|
| 5687 |
+
"Rustenburg",
|
| 5688 |
+
"Emalahleni",
|
| 5689 |
+
"Diepsloot",
|
| 5690 |
+
"Randburg",
|
| 5691 |
+
"Roodepoort",
|
| 5692 |
+
"Botshabelo",
|
| 5693 |
+
"Brakpan"
|
| 5694 |
+
],
|
| 5695 |
+
"Zambia": [
|
| 5696 |
+
"Lusaka",
|
| 5697 |
+
"Kitwe",
|
| 5698 |
+
"Ndola",
|
| 5699 |
+
"Chipata",
|
| 5700 |
+
"Solwezi",
|
| 5701 |
+
"Kabwe",
|
| 5702 |
+
"Chingola",
|
| 5703 |
+
"Luanshya",
|
| 5704 |
+
"Kasama",
|
| 5705 |
+
"Livingstone",
|
| 5706 |
+
"Mansa",
|
| 5707 |
+
"Mufulira",
|
| 5708 |
+
"Chunga",
|
| 5709 |
+
"Chililabombwe",
|
| 5710 |
+
"Mongu",
|
| 5711 |
+
"Mazabuka",
|
| 5712 |
+
"Kafue",
|
| 5713 |
+
"Kalulushi",
|
| 5714 |
+
"Choma",
|
| 5715 |
+
"Namalombwe",
|
| 5716 |
+
"Nakonde",
|
| 5717 |
+
"Kapiri Mposhi",
|
| 5718 |
+
"Madido",
|
| 5719 |
+
"Nchelenge",
|
| 5720 |
+
"Mpika"
|
| 5721 |
+
],
|
| 5722 |
+
"Zimbabwe": [
|
| 5723 |
+
"Harare",
|
| 5724 |
+
"Bulawayo",
|
| 5725 |
+
"Chitungwiza",
|
| 5726 |
+
"Mutare",
|
| 5727 |
+
"Epworth",
|
| 5728 |
+
"Gweru",
|
| 5729 |
+
"Kwekwe",
|
| 5730 |
+
"Kadoma",
|
| 5731 |
+
"Ruwa",
|
| 5732 |
+
"Chinhoyi",
|
| 5733 |
+
"Masvingo",
|
| 5734 |
+
"Norton",
|
| 5735 |
+
"Marondera",
|
| 5736 |
+
"Chegutu",
|
| 5737 |
+
"Zvishavane",
|
| 5738 |
+
"Beitbridge",
|
| 5739 |
+
"Bindura",
|
| 5740 |
+
"Redcliff",
|
| 5741 |
+
"Chiredzi",
|
| 5742 |
+
"Hwange",
|
| 5743 |
+
"Rusape",
|
| 5744 |
+
"Karoi",
|
| 5745 |
+
"Victoria Falls",
|
| 5746 |
+
"Chipinge",
|
| 5747 |
+
"Gokwe"
|
| 5748 |
+
]
|
| 5749 |
+
}
|
report/countries.json
ADDED
|
@@ -0,0 +1,256 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
"About",
|
| 3 |
+
"Afghanistan",
|
| 4 |
+
"Albania",
|
| 5 |
+
"Algeria",
|
| 6 |
+
"American Samoa",
|
| 7 |
+
"Andorra",
|
| 8 |
+
"Angola",
|
| 9 |
+
"Anguilla",
|
| 10 |
+
"Antarctica",
|
| 11 |
+
"Antigua and Barbuda",
|
| 12 |
+
"Argentina",
|
| 13 |
+
"Armenia",
|
| 14 |
+
"Aruba",
|
| 15 |
+
"Australia",
|
| 16 |
+
"Austria",
|
| 17 |
+
"Azerbaijan",
|
| 18 |
+
"Bahamas",
|
| 19 |
+
"Bahrain",
|
| 20 |
+
"Bangladesh",
|
| 21 |
+
"Barbados",
|
| 22 |
+
"Belarus",
|
| 23 |
+
"Belgium",
|
| 24 |
+
"Belize",
|
| 25 |
+
"Benin",
|
| 26 |
+
"Bermuda",
|
| 27 |
+
"Bhutan",
|
| 28 |
+
"Bolivia",
|
| 29 |
+
"Bonaire, Sint Eustatius, and Saba",
|
| 30 |
+
"Bosnia and Herzegovina",
|
| 31 |
+
"Botswana",
|
| 32 |
+
"Bouvet Island",
|
| 33 |
+
"Brazil",
|
| 34 |
+
"British Indian Ocean Territory",
|
| 35 |
+
"British Virgin Islands",
|
| 36 |
+
"Brunei",
|
| 37 |
+
"Bulgaria",
|
| 38 |
+
"Burkina Faso",
|
| 39 |
+
"Burundi",
|
| 40 |
+
"Cabo Verde",
|
| 41 |
+
"Cambodia",
|
| 42 |
+
"Cameroon",
|
| 43 |
+
"Canada",
|
| 44 |
+
"Cayman Islands",
|
| 45 |
+
"Central African Republic",
|
| 46 |
+
"Chad",
|
| 47 |
+
"Chile",
|
| 48 |
+
"China",
|
| 49 |
+
"Christmas Island",
|
| 50 |
+
"Cocos (Keeling) Islands",
|
| 51 |
+
"Colombia",
|
| 52 |
+
"Comoros",
|
| 53 |
+
"Congo Republic",
|
| 54 |
+
"Cook Islands",
|
| 55 |
+
"Costa Rica",
|
| 56 |
+
"Croatia",
|
| 57 |
+
"Cuba",
|
| 58 |
+
"Curaçao",
|
| 59 |
+
"Cyprus",
|
| 60 |
+
"Czechia",
|
| 61 |
+
"Denmark",
|
| 62 |
+
"Djibouti",
|
| 63 |
+
"Dominica",
|
| 64 |
+
"Dominican Republic",
|
| 65 |
+
"Download / Webservice",
|
| 66 |
+
"DR Congo",
|
| 67 |
+
"Ecuador",
|
| 68 |
+
"Egypt",
|
| 69 |
+
"El Salvador",
|
| 70 |
+
"Equatorial Guinea",
|
| 71 |
+
"Eritrea",
|
| 72 |
+
"Estonia",
|
| 73 |
+
"Eswatini",
|
| 74 |
+
"Ethiopia",
|
| 75 |
+
"Falkland Islands",
|
| 76 |
+
"Faroe Islands",
|
| 77 |
+
"Fiji",
|
| 78 |
+
"Finland",
|
| 79 |
+
"France",
|
| 80 |
+
"French Guiana",
|
| 81 |
+
"French Polynesia",
|
| 82 |
+
"French Southern Territories",
|
| 83 |
+
"Gabon",
|
| 84 |
+
"Georgia",
|
| 85 |
+
"Germany",
|
| 86 |
+
"Ghana",
|
| 87 |
+
"Gibraltar",
|
| 88 |
+
"Greece",
|
| 89 |
+
"Greenland",
|
| 90 |
+
"Grenada",
|
| 91 |
+
"Guadeloupe",
|
| 92 |
+
"Guam",
|
| 93 |
+
"Guatemala",
|
| 94 |
+
"Guernsey",
|
| 95 |
+
"Guinea",
|
| 96 |
+
"Guinea-Bissau",
|
| 97 |
+
"Guyana",
|
| 98 |
+
"Haiti",
|
| 99 |
+
"Heard and McDonald Islands",
|
| 100 |
+
"Honduras",
|
| 101 |
+
"Hong Kong",
|
| 102 |
+
"Hungary",
|
| 103 |
+
"Iceland",
|
| 104 |
+
"India",
|
| 105 |
+
"Indonesia",
|
| 106 |
+
"Iran",
|
| 107 |
+
"Iraq",
|
| 108 |
+
"Ireland",
|
| 109 |
+
"Isle of Man",
|
| 110 |
+
"Israel",
|
| 111 |
+
"Italy",
|
| 112 |
+
"Ivory Coast",
|
| 113 |
+
"Jamaica",
|
| 114 |
+
"Japan",
|
| 115 |
+
"Jersey",
|
| 116 |
+
"Jordan",
|
| 117 |
+
"Kazakhstan",
|
| 118 |
+
"Kenya",
|
| 119 |
+
"Kiribati",
|
| 120 |
+
"Kosovo",
|
| 121 |
+
"Kuwait",
|
| 122 |
+
"Kyrgyzstan",
|
| 123 |
+
"Laos",
|
| 124 |
+
"Latvia",
|
| 125 |
+
"Lebanon",
|
| 126 |
+
"Lesotho",
|
| 127 |
+
"Liberia",
|
| 128 |
+
"Libya",
|
| 129 |
+
"Liechtenstein",
|
| 130 |
+
"Lithuania",
|
| 131 |
+
"Luxembourg",
|
| 132 |
+
"Macao",
|
| 133 |
+
"Madagascar",
|
| 134 |
+
"Malawi",
|
| 135 |
+
"Malaysia",
|
| 136 |
+
"Maldives",
|
| 137 |
+
"Mali",
|
| 138 |
+
"Malta",
|
| 139 |
+
"Marshall Islands",
|
| 140 |
+
"Martinique",
|
| 141 |
+
"Mauritania",
|
| 142 |
+
"Mauritius",
|
| 143 |
+
"Mayotte",
|
| 144 |
+
"Mexico",
|
| 145 |
+
"Micronesia",
|
| 146 |
+
"Moldova",
|
| 147 |
+
"Monaco",
|
| 148 |
+
"Mongolia",
|
| 149 |
+
"Montenegro",
|
| 150 |
+
"Montserrat",
|
| 151 |
+
"Morocco",
|
| 152 |
+
"Mozambique",
|
| 153 |
+
"Myanmar",
|
| 154 |
+
"Namibia",
|
| 155 |
+
"Nauru",
|
| 156 |
+
"Nepal",
|
| 157 |
+
"New Caledonia",
|
| 158 |
+
"New Zealand",
|
| 159 |
+
"Nicaragua",
|
| 160 |
+
"Niger",
|
| 161 |
+
"Nigeria",
|
| 162 |
+
"Niue",
|
| 163 |
+
"Norfolk Island",
|
| 164 |
+
"North Korea",
|
| 165 |
+
"North Macedonia",
|
| 166 |
+
"Northern Mariana Islands",
|
| 167 |
+
"Norway",
|
| 168 |
+
"Oman",
|
| 169 |
+
"Pakistan",
|
| 170 |
+
"Palau",
|
| 171 |
+
"Palestine",
|
| 172 |
+
"Panama",
|
| 173 |
+
"Papua New Guinea",
|
| 174 |
+
"Paraguay",
|
| 175 |
+
"Peru",
|
| 176 |
+
"Philippines",
|
| 177 |
+
"Pitcairn Islands",
|
| 178 |
+
"Poland",
|
| 179 |
+
"Portugal",
|
| 180 |
+
"Postal Codes",
|
| 181 |
+
"Puerto Rico",
|
| 182 |
+
"Qatar",
|
| 183 |
+
"Romania",
|
| 184 |
+
"Russia",
|
| 185 |
+
"Rwanda",
|
| 186 |
+
"Réunion",
|
| 187 |
+
"Saint Barthélemy",
|
| 188 |
+
"Saint Helena",
|
| 189 |
+
"Saint Lucia",
|
| 190 |
+
"Saint Martin",
|
| 191 |
+
"Saint Pierre and Miquelon",
|
| 192 |
+
"Samoa",
|
| 193 |
+
"San Marino",
|
| 194 |
+
"Saudi Arabia",
|
| 195 |
+
"Senegal",
|
| 196 |
+
"Serbia",
|
| 197 |
+
"Seychelles",
|
| 198 |
+
"Sierra Leone",
|
| 199 |
+
"Singapore",
|
| 200 |
+
"Sint Maarten",
|
| 201 |
+
"Sitemap",
|
| 202 |
+
"Slovakia",
|
| 203 |
+
"Slovenia",
|
| 204 |
+
"Solomon Islands",
|
| 205 |
+
"Somalia",
|
| 206 |
+
"South Africa",
|
| 207 |
+
"South Georgia and South Sandwich Islands",
|
| 208 |
+
"South Korea",
|
| 209 |
+
"South Sudan",
|
| 210 |
+
"Spain",
|
| 211 |
+
"Sri Lanka",
|
| 212 |
+
"St Kitts and Nevis",
|
| 213 |
+
"St Vincent and Grenadines",
|
| 214 |
+
"Sudan",
|
| 215 |
+
"Suriname",
|
| 216 |
+
"Svalbard and Jan Mayen",
|
| 217 |
+
"Sweden",
|
| 218 |
+
"Switzerland",
|
| 219 |
+
"Syria",
|
| 220 |
+
"São Tomé and Príncipe",
|
| 221 |
+
"Taiwan",
|
| 222 |
+
"Tajikistan",
|
| 223 |
+
"Tanzania",
|
| 224 |
+
"Thailand",
|
| 225 |
+
"The Gambia",
|
| 226 |
+
"The Netherlands",
|
| 227 |
+
"Timor-Leste",
|
| 228 |
+
"Togo",
|
| 229 |
+
"Tokelau",
|
| 230 |
+
"Tonga",
|
| 231 |
+
"Trinidad and Tobago",
|
| 232 |
+
"Tunisia",
|
| 233 |
+
"Turkmenistan",
|
| 234 |
+
"Turks and Caicos Islands",
|
| 235 |
+
"Tuvalu",
|
| 236 |
+
"Türkiye",
|
| 237 |
+
"U.S. Outlying Islands",
|
| 238 |
+
"U.S. Virgin Islands",
|
| 239 |
+
"Uganda",
|
| 240 |
+
"Ukraine",
|
| 241 |
+
"United Arab Emirates",
|
| 242 |
+
"United Kingdom",
|
| 243 |
+
"United States",
|
| 244 |
+
"Uruguay",
|
| 245 |
+
"Uzbekistan",
|
| 246 |
+
"Vanuatu",
|
| 247 |
+
"Vatican City",
|
| 248 |
+
"Venezuela",
|
| 249 |
+
"Vietnam",
|
| 250 |
+
"Wallis and Futuna",
|
| 251 |
+
"Western Sahara",
|
| 252 |
+
"Yemen",
|
| 253 |
+
"Zambia",
|
| 254 |
+
"Zimbabwe",
|
| 255 |
+
"Åland"
|
| 256 |
+
]
|
report/provinces_by_country.json
ADDED
|
@@ -0,0 +1,4322 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"Andorra": [
|
| 3 |
+
"Andorra la Vella",
|
| 4 |
+
"Canillo",
|
| 5 |
+
"Encamp",
|
| 6 |
+
"Escaldes-Engordany",
|
| 7 |
+
"La Massana",
|
| 8 |
+
"Ordino",
|
| 9 |
+
"Sant Julià de Loria"
|
| 10 |
+
],
|
| 11 |
+
"United Arab Emirates": [
|
| 12 |
+
"Abu Dhabi",
|
| 13 |
+
"Ajman",
|
| 14 |
+
"Dubai",
|
| 15 |
+
"Fujairah",
|
| 16 |
+
"Raʼs al Khaymah",
|
| 17 |
+
"Sharjah",
|
| 18 |
+
"Umm al Qaywayn"
|
| 19 |
+
],
|
| 20 |
+
"Afghanistan": [
|
| 21 |
+
"Badakhshan",
|
| 22 |
+
"Badghis",
|
| 23 |
+
"Baghlan",
|
| 24 |
+
"Balkh",
|
| 25 |
+
"Bamyan",
|
| 26 |
+
"Daykundi",
|
| 27 |
+
"Farah",
|
| 28 |
+
"Faryab",
|
| 29 |
+
"Ghazni",
|
| 30 |
+
"Ghowr",
|
| 31 |
+
"Helmand",
|
| 32 |
+
"Herat",
|
| 33 |
+
"Jowzjan",
|
| 34 |
+
"Kabul",
|
| 35 |
+
"Kandahar",
|
| 36 |
+
"Kapisa",
|
| 37 |
+
"Khowst",
|
| 38 |
+
"Kunar",
|
| 39 |
+
"Kunduz",
|
| 40 |
+
"Laghman",
|
| 41 |
+
"Logar",
|
| 42 |
+
"Maidan Wardak Province",
|
| 43 |
+
"Nangarhar",
|
| 44 |
+
"Nimroz",
|
| 45 |
+
"Nuristan",
|
| 46 |
+
"Oruzgan",
|
| 47 |
+
"Paktia",
|
| 48 |
+
"Paktika",
|
| 49 |
+
"Panjshir",
|
| 50 |
+
"Parwan",
|
| 51 |
+
"Samangan",
|
| 52 |
+
"Sar-e Pol Province",
|
| 53 |
+
"Takhar",
|
| 54 |
+
"Zabul"
|
| 55 |
+
],
|
| 56 |
+
"Antigua and Barbuda": [
|
| 57 |
+
"Barbuda",
|
| 58 |
+
"Redonda",
|
| 59 |
+
"Saint George Parish",
|
| 60 |
+
"Saint John Parish",
|
| 61 |
+
"Saint Mary Parish",
|
| 62 |
+
"Saint Paul Parish",
|
| 63 |
+
"Saint Peter Parish",
|
| 64 |
+
"Saint Philip Parish"
|
| 65 |
+
],
|
| 66 |
+
"Anguilla": [
|
| 67 |
+
"Blowing Point",
|
| 68 |
+
"East End",
|
| 69 |
+
"George Hill",
|
| 70 |
+
"Island Harbour",
|
| 71 |
+
"North Hill",
|
| 72 |
+
"North Side",
|
| 73 |
+
"Sandy Ground",
|
| 74 |
+
"Sandy Hill",
|
| 75 |
+
"South Hill",
|
| 76 |
+
"Stoney Ground",
|
| 77 |
+
"The Farrington",
|
| 78 |
+
"The Quarter",
|
| 79 |
+
"The Valley",
|
| 80 |
+
"West End"
|
| 81 |
+
],
|
| 82 |
+
"Albania": [
|
| 83 |
+
"Berat County",
|
| 84 |
+
"Dibër County",
|
| 85 |
+
"Durrës County",
|
| 86 |
+
"Elbasan County",
|
| 87 |
+
"Fier County",
|
| 88 |
+
"Gjirokastër County",
|
| 89 |
+
"Korçë County",
|
| 90 |
+
"Kukës County",
|
| 91 |
+
"Lezhë County",
|
| 92 |
+
"Shkodër County",
|
| 93 |
+
"Tirana",
|
| 94 |
+
"Vlorë County"
|
| 95 |
+
],
|
| 96 |
+
"Armenia": [
|
| 97 |
+
"Aragatsotn",
|
| 98 |
+
"Ararat",
|
| 99 |
+
"Armavir",
|
| 100 |
+
"Gegharkunik",
|
| 101 |
+
"Kotayk",
|
| 102 |
+
"Lori",
|
| 103 |
+
"Shirak",
|
| 104 |
+
"Syunik",
|
| 105 |
+
"Tavush",
|
| 106 |
+
"Vayots Dzor",
|
| 107 |
+
"Yerevan"
|
| 108 |
+
],
|
| 109 |
+
"Angola": [
|
| 110 |
+
"Bengo",
|
| 111 |
+
"Benguela",
|
| 112 |
+
"Bíe",
|
| 113 |
+
"Cabinda",
|
| 114 |
+
"Cuando Cobango",
|
| 115 |
+
"Cuanza Norte",
|
| 116 |
+
"Cunene",
|
| 117 |
+
"Huambo",
|
| 118 |
+
"Huíla",
|
| 119 |
+
"Kwanza Sul",
|
| 120 |
+
"Luanda",
|
| 121 |
+
"Luanda Norte",
|
| 122 |
+
"Lunda Sul",
|
| 123 |
+
"Malanje",
|
| 124 |
+
"Moxico",
|
| 125 |
+
"Namibe",
|
| 126 |
+
"Uíge",
|
| 127 |
+
"Zaire"
|
| 128 |
+
],
|
| 129 |
+
"Argentina": [
|
| 130 |
+
"Buenos Aires",
|
| 131 |
+
"Buenos Aires F.D.",
|
| 132 |
+
"Catamarca",
|
| 133 |
+
"Chaco",
|
| 134 |
+
"Chubut",
|
| 135 |
+
"Cordoba",
|
| 136 |
+
"Corrientes",
|
| 137 |
+
"Entre Rios",
|
| 138 |
+
"Formosa",
|
| 139 |
+
"Jujuy",
|
| 140 |
+
"La Pampa",
|
| 141 |
+
"La Rioja",
|
| 142 |
+
"Mendoza",
|
| 143 |
+
"Misiones",
|
| 144 |
+
"Neuquen",
|
| 145 |
+
"Rio Negro",
|
| 146 |
+
"Salta",
|
| 147 |
+
"San Juan",
|
| 148 |
+
"San Luis",
|
| 149 |
+
"Santa Cruz",
|
| 150 |
+
"Santa Fe",
|
| 151 |
+
"Santiago del Estero",
|
| 152 |
+
"Tierra del Fuego",
|
| 153 |
+
"Tucuman"
|
| 154 |
+
],
|
| 155 |
+
"American Samoa": [
|
| 156 |
+
"Eastern District",
|
| 157 |
+
"Manu'a",
|
| 158 |
+
"Rose Island",
|
| 159 |
+
"Swains Island",
|
| 160 |
+
"Western District"
|
| 161 |
+
],
|
| 162 |
+
"Austria": [
|
| 163 |
+
"Burgenland",
|
| 164 |
+
"Carinthia",
|
| 165 |
+
"Lower Austria",
|
| 166 |
+
"Salzburg",
|
| 167 |
+
"Styria",
|
| 168 |
+
"Tyrol",
|
| 169 |
+
"Upper Austria",
|
| 170 |
+
"Vienna",
|
| 171 |
+
"Vorarlberg"
|
| 172 |
+
],
|
| 173 |
+
"Australia": [
|
| 174 |
+
"Australian Capital Territory",
|
| 175 |
+
"New South Wales",
|
| 176 |
+
"Northern Territory",
|
| 177 |
+
"Queensland",
|
| 178 |
+
"South Australia",
|
| 179 |
+
"Tasmania",
|
| 180 |
+
"Victoria",
|
| 181 |
+
"Western Australia"
|
| 182 |
+
],
|
| 183 |
+
"Aland Islands": [
|
| 184 |
+
"Mariehamns stad",
|
| 185 |
+
"Ålands landsbygd",
|
| 186 |
+
"Ålands skärgård"
|
| 187 |
+
],
|
| 188 |
+
"Azerbaijan": [
|
| 189 |
+
"Abşeron",
|
| 190 |
+
"Agsu District",
|
| 191 |
+
"Astara",
|
| 192 |
+
"Ağcabǝdi",
|
| 193 |
+
"Ağdam",
|
| 194 |
+
"Ağdaş",
|
| 195 |
+
"Ağstafa",
|
| 196 |
+
"Baki",
|
| 197 |
+
"Balakan District",
|
| 198 |
+
"Barda",
|
| 199 |
+
"Beyləqan",
|
| 200 |
+
"Bilasuvar District",
|
| 201 |
+
"Daşkǝsǝn",
|
| 202 |
+
"Fuzuli District",
|
| 203 |
+
"Gadabay District",
|
| 204 |
+
"Goranboy District",
|
| 205 |
+
"Goygol Rayon",
|
| 206 |
+
"Göyçay",
|
| 207 |
+
"Gǝncǝ",
|
| 208 |
+
"Hacıqabul",
|
| 209 |
+
"Ismayilli District",
|
| 210 |
+
"İmişli",
|
| 211 |
+
"Jabrayil",
|
| 212 |
+
"Jalilabad",
|
| 213 |
+
"Kalbajar",
|
| 214 |
+
"Khojaly",
|
| 215 |
+
"Khojavend",
|
| 216 |
+
"Kurdamir District",
|
| 217 |
+
"Lachin Rayon",
|
| 218 |
+
"Lankaran Sahari",
|
| 219 |
+
"Lerik District",
|
| 220 |
+
"Lənkəran",
|
| 221 |
+
"Masally",
|
| 222 |
+
"Mingǝcevir",
|
| 223 |
+
"Naftalan",
|
| 224 |
+
"Nakhichevan ASSR",
|
| 225 |
+
"Neftçala",
|
| 226 |
+
"Oğuz",
|
| 227 |
+
"Qabala District",
|
| 228 |
+
"Qax",
|
| 229 |
+
"Qazax",
|
| 230 |
+
"Qobustan",
|
| 231 |
+
"Quba",
|
| 232 |
+
"Qubadlı",
|
| 233 |
+
"Qusar District",
|
| 234 |
+
"Saatlı",
|
| 235 |
+
"Sabirabad District",
|
| 236 |
+
"Salyan District",
|
| 237 |
+
"Samux",
|
| 238 |
+
"Shabran",
|
| 239 |
+
"Shaki",
|
| 240 |
+
"Shaki City",
|
| 241 |
+
"Shirvan",
|
| 242 |
+
"Shusha",
|
| 243 |
+
"Shusha City",
|
| 244 |
+
"Siyǝzǝn",
|
| 245 |
+
"Sumqayit",
|
| 246 |
+
"Tartar District",
|
| 247 |
+
"Tovuz District",
|
| 248 |
+
"Ucar",
|
| 249 |
+
"Xankǝndi",
|
| 250 |
+
"Xaçmaz",
|
| 251 |
+
"Xızı",
|
| 252 |
+
"Yardimli District",
|
| 253 |
+
"Yevlax",
|
| 254 |
+
"Yevlax City",
|
| 255 |
+
"Zangilan District",
|
| 256 |
+
"Zaqatala District",
|
| 257 |
+
"Zərdab",
|
| 258 |
+
"Şamaxı",
|
| 259 |
+
"Şǝmkir"
|
| 260 |
+
],
|
| 261 |
+
"Bosnia and Herzegovina": [
|
| 262 |
+
"Brčko",
|
| 263 |
+
"Federation of B&H",
|
| 264 |
+
"Srpska"
|
| 265 |
+
],
|
| 266 |
+
"Barbados": [
|
| 267 |
+
"Christ Church",
|
| 268 |
+
"Saint Andrew",
|
| 269 |
+
"Saint George",
|
| 270 |
+
"Saint James",
|
| 271 |
+
"Saint John",
|
| 272 |
+
"Saint Joseph",
|
| 273 |
+
"Saint Lucy",
|
| 274 |
+
"Saint Michael",
|
| 275 |
+
"Saint Peter",
|
| 276 |
+
"Saint Philip",
|
| 277 |
+
"Saint Thomas"
|
| 278 |
+
],
|
| 279 |
+
"Bangladesh": [
|
| 280 |
+
"Barisal Division",
|
| 281 |
+
"Chittagong",
|
| 282 |
+
"Dhaka Division",
|
| 283 |
+
"Khulna Division",
|
| 284 |
+
"Mymensingh Division",
|
| 285 |
+
"Rajshahi Division",
|
| 286 |
+
"Rangpur Division",
|
| 287 |
+
"Sylhet Division"
|
| 288 |
+
],
|
| 289 |
+
"Belgium": [
|
| 290 |
+
"Brussels Capital",
|
| 291 |
+
"Flanders",
|
| 292 |
+
"Wallonia"
|
| 293 |
+
],
|
| 294 |
+
"Burkina Faso": [
|
| 295 |
+
"Boucle du Mouhoun",
|
| 296 |
+
"Cascades Region",
|
| 297 |
+
"Centre",
|
| 298 |
+
"Centre-Est",
|
| 299 |
+
"Centre-Nord",
|
| 300 |
+
"Centre-Ouest",
|
| 301 |
+
"Centre-Sud",
|
| 302 |
+
"Est",
|
| 303 |
+
"Hauts-Bassins",
|
| 304 |
+
"Nord",
|
| 305 |
+
"Plateau-Central",
|
| 306 |
+
"Sahel",
|
| 307 |
+
"Sud-Ouest"
|
| 308 |
+
],
|
| 309 |
+
"Bulgaria": [
|
| 310 |
+
"Blagoevgrad",
|
| 311 |
+
"Burgas",
|
| 312 |
+
"Dobrich",
|
| 313 |
+
"Gabrovo",
|
| 314 |
+
"Haskovo",
|
| 315 |
+
"Kardzhali",
|
| 316 |
+
"Kyustendil",
|
| 317 |
+
"Lovech",
|
| 318 |
+
"Montana",
|
| 319 |
+
"Pazardzhik",
|
| 320 |
+
"Pernik",
|
| 321 |
+
"Pleven",
|
| 322 |
+
"Plovdiv",
|
| 323 |
+
"Razgrad",
|
| 324 |
+
"Ruse",
|
| 325 |
+
"Shumen",
|
| 326 |
+
"Silistra",
|
| 327 |
+
"Sliven",
|
| 328 |
+
"Smolyan",
|
| 329 |
+
"Sofia",
|
| 330 |
+
"Sofia-Capital",
|
| 331 |
+
"Stara Zagora",
|
| 332 |
+
"Targovishte",
|
| 333 |
+
"Varna",
|
| 334 |
+
"Veliko Tarnovo",
|
| 335 |
+
"Vidin",
|
| 336 |
+
"Vratsa",
|
| 337 |
+
"Yambol"
|
| 338 |
+
],
|
| 339 |
+
"Bahrain": [
|
| 340 |
+
"Manama",
|
| 341 |
+
"Muharraq",
|
| 342 |
+
"Northern",
|
| 343 |
+
"Southern Governorate"
|
| 344 |
+
],
|
| 345 |
+
"Burundi": [
|
| 346 |
+
"Bubanza",
|
| 347 |
+
"Bujumbura Mairie",
|
| 348 |
+
"Bujumbura Rural",
|
| 349 |
+
"Bururi",
|
| 350 |
+
"Cankuzo",
|
| 351 |
+
"Cibitoke",
|
| 352 |
+
"Gitega",
|
| 353 |
+
"Karuzi",
|
| 354 |
+
"Kayanza",
|
| 355 |
+
"Kirundo",
|
| 356 |
+
"Makamba",
|
| 357 |
+
"Muramvya",
|
| 358 |
+
"Muyinga",
|
| 359 |
+
"Mwaro",
|
| 360 |
+
"Ngozi",
|
| 361 |
+
"Rumonge",
|
| 362 |
+
"Rutana",
|
| 363 |
+
"Ruyigi"
|
| 364 |
+
],
|
| 365 |
+
"Benin": [
|
| 366 |
+
"Alibori",
|
| 367 |
+
"Atakora",
|
| 368 |
+
"Atlantique",
|
| 369 |
+
"Borgou",
|
| 370 |
+
"Collines",
|
| 371 |
+
"Donga",
|
| 372 |
+
"Kouffo",
|
| 373 |
+
"Littoral",
|
| 374 |
+
"Mono",
|
| 375 |
+
"Ouémé",
|
| 376 |
+
"Plateau",
|
| 377 |
+
"Zou"
|
| 378 |
+
],
|
| 379 |
+
"Bermuda": [
|
| 380 |
+
"Devonshire",
|
| 381 |
+
"Hamilton",
|
| 382 |
+
"Hamilton city",
|
| 383 |
+
"Paget",
|
| 384 |
+
"Pembroke",
|
| 385 |
+
"Saint George",
|
| 386 |
+
"Saint Georgeʼs",
|
| 387 |
+
"Sandys",
|
| 388 |
+
"Smithʼs",
|
| 389 |
+
"Southampton",
|
| 390 |
+
"Warwick"
|
| 391 |
+
],
|
| 392 |
+
"Brunei": [
|
| 393 |
+
"Belait",
|
| 394 |
+
"Brunei-Muara District",
|
| 395 |
+
"Temburong",
|
| 396 |
+
"Tutong"
|
| 397 |
+
],
|
| 398 |
+
"Bolivia": [
|
| 399 |
+
"Beni Department",
|
| 400 |
+
"Chuquisaca Department",
|
| 401 |
+
"Cochabamba",
|
| 402 |
+
"La Paz Department",
|
| 403 |
+
"Oruro",
|
| 404 |
+
"Pando",
|
| 405 |
+
"Potosí Department",
|
| 406 |
+
"Santa Cruz Department",
|
| 407 |
+
"Tarija Department"
|
| 408 |
+
],
|
| 409 |
+
"Bonaire, Saint Eustatius and Saba": [
|
| 410 |
+
"Bonaire",
|
| 411 |
+
"Saba",
|
| 412 |
+
"Sint Eustatius"
|
| 413 |
+
],
|
| 414 |
+
"Brazil": [
|
| 415 |
+
"Acre",
|
| 416 |
+
"Alagoas",
|
| 417 |
+
"Amapá",
|
| 418 |
+
"Amazonas",
|
| 419 |
+
"Bahia",
|
| 420 |
+
"Ceará",
|
| 421 |
+
"Espírito Santo",
|
| 422 |
+
"Federal District",
|
| 423 |
+
"Goiás",
|
| 424 |
+
"Maranhão",
|
| 425 |
+
"Mato Grosso",
|
| 426 |
+
"Mato Grosso do Sul",
|
| 427 |
+
"Minas Gerais",
|
| 428 |
+
"Paraná",
|
| 429 |
+
"Paraíba",
|
| 430 |
+
"Pará",
|
| 431 |
+
"Pernambuco",
|
| 432 |
+
"Piauí",
|
| 433 |
+
"Rio de Janeiro",
|
| 434 |
+
"Rio Grande do Norte",
|
| 435 |
+
"Rio Grande do Sul",
|
| 436 |
+
"Rondônia",
|
| 437 |
+
"Roraima",
|
| 438 |
+
"Santa Catarina",
|
| 439 |
+
"Sergipe",
|
| 440 |
+
"São Paulo",
|
| 441 |
+
"Tocantins"
|
| 442 |
+
],
|
| 443 |
+
"Bahamas": [
|
| 444 |
+
"Acklins",
|
| 445 |
+
"Berry Islands",
|
| 446 |
+
"Bimini",
|
| 447 |
+
"Black Point",
|
| 448 |
+
"Cat Island",
|
| 449 |
+
"Central Abaco",
|
| 450 |
+
"Central Andros",
|
| 451 |
+
"Central Eleuthera",
|
| 452 |
+
"Crooked Island and Long Cay",
|
| 453 |
+
"East Grand Bahama",
|
| 454 |
+
"Exuma",
|
| 455 |
+
"Freeport",
|
| 456 |
+
"Grand Cay",
|
| 457 |
+
"Harbour Island",
|
| 458 |
+
"Hope Town",
|
| 459 |
+
"Inagua",
|
| 460 |
+
"Long Island",
|
| 461 |
+
"Mangrove Cay",
|
| 462 |
+
"Mayaguana",
|
| 463 |
+
"Moore’s Island",
|
| 464 |
+
"New Providence",
|
| 465 |
+
"North Abaco",
|
| 466 |
+
"North Andros",
|
| 467 |
+
"North Eleuthera",
|
| 468 |
+
"Ragged Island",
|
| 469 |
+
"Rum Cay",
|
| 470 |
+
"San Salvador",
|
| 471 |
+
"South Abaco",
|
| 472 |
+
"South Andros",
|
| 473 |
+
"South Eleuthera",
|
| 474 |
+
"Spanish Wells",
|
| 475 |
+
"West Grand Bahama"
|
| 476 |
+
],
|
| 477 |
+
"Bhutan": [
|
| 478 |
+
"Bumthang District",
|
| 479 |
+
"Chukha",
|
| 480 |
+
"Dagana",
|
| 481 |
+
"Gasa",
|
| 482 |
+
"Haa",
|
| 483 |
+
"Lhuntse",
|
| 484 |
+
"Mongar",
|
| 485 |
+
"Paro",
|
| 486 |
+
"Pemagatshel",
|
| 487 |
+
"Punakha",
|
| 488 |
+
"Samdrup Jongkhar",
|
| 489 |
+
"Samtse District",
|
| 490 |
+
"Sarpang District",
|
| 491 |
+
"Thimphu District",
|
| 492 |
+
"Tongsa",
|
| 493 |
+
"Trashi Yangste",
|
| 494 |
+
"Trashigang District",
|
| 495 |
+
"Tsirang District",
|
| 496 |
+
"Wangdi Phodrang",
|
| 497 |
+
"Zhemgang District"
|
| 498 |
+
],
|
| 499 |
+
"Botswana": [
|
| 500 |
+
"Central",
|
| 501 |
+
"Chobe",
|
| 502 |
+
"City of Francistown",
|
| 503 |
+
"Gaborone",
|
| 504 |
+
"Ghanzi",
|
| 505 |
+
"Jwaneng",
|
| 506 |
+
"Kgalagadi",
|
| 507 |
+
"Kgatleng",
|
| 508 |
+
"Kweneng",
|
| 509 |
+
"Lobatse",
|
| 510 |
+
"Ngwaketsi",
|
| 511 |
+
"North-East",
|
| 512 |
+
"North-West",
|
| 513 |
+
"Selibe Phikwe",
|
| 514 |
+
"South-East",
|
| 515 |
+
"Sowa Town"
|
| 516 |
+
],
|
| 517 |
+
"Belarus": [
|
| 518 |
+
"Brest",
|
| 519 |
+
"Gomel Oblast",
|
| 520 |
+
"Grodnenskaya",
|
| 521 |
+
"Minsk",
|
| 522 |
+
"Minsk City",
|
| 523 |
+
"Mogilev",
|
| 524 |
+
"Vitebsk"
|
| 525 |
+
],
|
| 526 |
+
"Belize": [
|
| 527 |
+
"Belize District",
|
| 528 |
+
"Cayo District",
|
| 529 |
+
"Corozal District",
|
| 530 |
+
"Orange Walk District",
|
| 531 |
+
"Southern District",
|
| 532 |
+
"Toledo District"
|
| 533 |
+
],
|
| 534 |
+
"Canada": [
|
| 535 |
+
"Alberta",
|
| 536 |
+
"British Columbia",
|
| 537 |
+
"Manitoba",
|
| 538 |
+
"New Brunswick",
|
| 539 |
+
"Newfoundland and Labrador",
|
| 540 |
+
"Northwest Territories",
|
| 541 |
+
"Nova Scotia",
|
| 542 |
+
"Nunavut",
|
| 543 |
+
"Ontario",
|
| 544 |
+
"Prince Edward Island",
|
| 545 |
+
"Quebec",
|
| 546 |
+
"Saskatchewan",
|
| 547 |
+
"Yukon"
|
| 548 |
+
],
|
| 549 |
+
"Democratic Republic of the Congo": [
|
| 550 |
+
"Bas-Congo",
|
| 551 |
+
"Bas-Uele",
|
| 552 |
+
"East Kasai",
|
| 553 |
+
"Haut-Katanga",
|
| 554 |
+
"Haut-Lomami",
|
| 555 |
+
"Haut-Uele",
|
| 556 |
+
"Ituri",
|
| 557 |
+
"Kasai",
|
| 558 |
+
"Kasai-Central",
|
| 559 |
+
"Kinshasa",
|
| 560 |
+
"Kwango",
|
| 561 |
+
"Kwilu",
|
| 562 |
+
"Lomami",
|
| 563 |
+
"Lualaba",
|
| 564 |
+
"Mai-Ndombe",
|
| 565 |
+
"Maniema",
|
| 566 |
+
"Mongala",
|
| 567 |
+
"Nord-Ubangi",
|
| 568 |
+
"North Kivu",
|
| 569 |
+
"Sankuru",
|
| 570 |
+
"South Kivu",
|
| 571 |
+
"Sud-Ubangi",
|
| 572 |
+
"Tanganyika",
|
| 573 |
+
"Tshopo",
|
| 574 |
+
"Tshuapa",
|
| 575 |
+
"Équateur"
|
| 576 |
+
],
|
| 577 |
+
"Central African Republic": [
|
| 578 |
+
"Bamingui-Bangoran",
|
| 579 |
+
"Bangui",
|
| 580 |
+
"Basse-Kotto",
|
| 581 |
+
"Haut-Mbomou",
|
| 582 |
+
"Haute-Kotto",
|
| 583 |
+
"Kémo",
|
| 584 |
+
"Lim-Pendé",
|
| 585 |
+
"Lobaye",
|
| 586 |
+
"Mambéré",
|
| 587 |
+
"Mambéré-Kadéï",
|
| 588 |
+
"Mbomou",
|
| 589 |
+
"Nana-Grébizi",
|
| 590 |
+
"Nana-Mambéré",
|
| 591 |
+
"Ombella-M'Poko",
|
| 592 |
+
"Ouaka",
|
| 593 |
+
"Ouham",
|
| 594 |
+
"Ouham-Fafa",
|
| 595 |
+
"Ouham-Pendé",
|
| 596 |
+
"Sangha-Mbaéré",
|
| 597 |
+
"Vakaga"
|
| 598 |
+
],
|
| 599 |
+
"Republic of the Congo": [
|
| 600 |
+
"Bouenza",
|
| 601 |
+
"Brazzaville",
|
| 602 |
+
"Cuvette",
|
| 603 |
+
"Cuvette-Ouest",
|
| 604 |
+
"Kouilou",
|
| 605 |
+
"Likouala",
|
| 606 |
+
"Lékoumou",
|
| 607 |
+
"Niari",
|
| 608 |
+
"Plateaux",
|
| 609 |
+
"Pointe-Noire",
|
| 610 |
+
"Pool",
|
| 611 |
+
"Sangha"
|
| 612 |
+
],
|
| 613 |
+
"Switzerland": [
|
| 614 |
+
"Aargau",
|
| 615 |
+
"Appenzell Ausserrhoden",
|
| 616 |
+
"Appenzell Innerrhoden",
|
| 617 |
+
"Basel-City",
|
| 618 |
+
"Basel-Landschaft",
|
| 619 |
+
"Bern",
|
| 620 |
+
"Fribourg",
|
| 621 |
+
"Geneva",
|
| 622 |
+
"Glarus",
|
| 623 |
+
"Grisons",
|
| 624 |
+
"Jura",
|
| 625 |
+
"Lucerne",
|
| 626 |
+
"Neuchâtel",
|
| 627 |
+
"Nidwalden",
|
| 628 |
+
"Obwalden",
|
| 629 |
+
"Saint Gallen",
|
| 630 |
+
"Schaffhausen",
|
| 631 |
+
"Schwyz",
|
| 632 |
+
"Solothurn",
|
| 633 |
+
"Thurgau",
|
| 634 |
+
"Ticino",
|
| 635 |
+
"Uri",
|
| 636 |
+
"Valais",
|
| 637 |
+
"Vaud",
|
| 638 |
+
"Zug",
|
| 639 |
+
"Zurich"
|
| 640 |
+
],
|
| 641 |
+
"Ivory Coast": [
|
| 642 |
+
"Abidjan Autonomous District",
|
| 643 |
+
"Bas-Sassandra District",
|
| 644 |
+
"Comoé District",
|
| 645 |
+
"Denguélé District",
|
| 646 |
+
"Gôh-Djiboua",
|
| 647 |
+
"Lacs District",
|
| 648 |
+
"Lagunes District",
|
| 649 |
+
"Montagnes",
|
| 650 |
+
"Sassandra-Marahoué",
|
| 651 |
+
"Savanes District",
|
| 652 |
+
"Vallée du Bandama District",
|
| 653 |
+
"Woroba",
|
| 654 |
+
"Yamoussoukro",
|
| 655 |
+
"Zanzan District"
|
| 656 |
+
],
|
| 657 |
+
"Cook Islands": [
|
| 658 |
+
"Aitutaki",
|
| 659 |
+
"Atiu",
|
| 660 |
+
"Ma'uke",
|
| 661 |
+
"Mangaia",
|
| 662 |
+
"Manihiki",
|
| 663 |
+
"Mitiaro",
|
| 664 |
+
"Palmerston",
|
| 665 |
+
"Penrhyn",
|
| 666 |
+
"Pukapuka",
|
| 667 |
+
"Rakahanga",
|
| 668 |
+
"Rarotonga"
|
| 669 |
+
],
|
| 670 |
+
"Chile": [
|
| 671 |
+
"Antofagasta",
|
| 672 |
+
"Araucanía",
|
| 673 |
+
"Arica y Parinacota Region",
|
| 674 |
+
"Atacama",
|
| 675 |
+
"Aysén",
|
| 676 |
+
"Biobío",
|
| 677 |
+
"Coquimbo Region",
|
| 678 |
+
"Los Lagos Region",
|
| 679 |
+
"Los Ríos Region",
|
| 680 |
+
"Maule Region",
|
| 681 |
+
"O'Higgins Region",
|
| 682 |
+
"Region of Magallanes",
|
| 683 |
+
"Santiago Metropolitan",
|
| 684 |
+
"Tarapacá",
|
| 685 |
+
"Valparaíso",
|
| 686 |
+
"Ñuble"
|
| 687 |
+
],
|
| 688 |
+
"Cameroon": [
|
| 689 |
+
"Adamaoua",
|
| 690 |
+
"Centre",
|
| 691 |
+
"East",
|
| 692 |
+
"Far North",
|
| 693 |
+
"Littoral",
|
| 694 |
+
"North",
|
| 695 |
+
"North-West",
|
| 696 |
+
"South",
|
| 697 |
+
"South-West",
|
| 698 |
+
"West"
|
| 699 |
+
],
|
| 700 |
+
"China": [
|
| 701 |
+
"Anhui",
|
| 702 |
+
"Beijing",
|
| 703 |
+
"Chongqing",
|
| 704 |
+
"Fujian",
|
| 705 |
+
"Gansu",
|
| 706 |
+
"Guangdong",
|
| 707 |
+
"Guangxi",
|
| 708 |
+
"Guizhou",
|
| 709 |
+
"Hainan",
|
| 710 |
+
"Hebei",
|
| 711 |
+
"Heilongjiang",
|
| 712 |
+
"Henan",
|
| 713 |
+
"Hubei",
|
| 714 |
+
"Hunan",
|
| 715 |
+
"Inner Mongolia",
|
| 716 |
+
"Jiangsu",
|
| 717 |
+
"Jiangxi",
|
| 718 |
+
"Jilin",
|
| 719 |
+
"Liaoning",
|
| 720 |
+
"Ningxia",
|
| 721 |
+
"Qinghai",
|
| 722 |
+
"Shaanxi",
|
| 723 |
+
"Shandong",
|
| 724 |
+
"Shanghai",
|
| 725 |
+
"Shanxi",
|
| 726 |
+
"Sichuan",
|
| 727 |
+
"Tianjin",
|
| 728 |
+
"Tibet",
|
| 729 |
+
"Xinjiang",
|
| 730 |
+
"Yunnan",
|
| 731 |
+
"Zhejiang"
|
| 732 |
+
],
|
| 733 |
+
"Colombia": [
|
| 734 |
+
"Amazonas Department",
|
| 735 |
+
"Antioquia",
|
| 736 |
+
"Arauca Department",
|
| 737 |
+
"Atlántico",
|
| 738 |
+
"Bogota D.C.",
|
| 739 |
+
"Bolívar",
|
| 740 |
+
"Boyacá",
|
| 741 |
+
"Caldas Department",
|
| 742 |
+
"Caquetá",
|
| 743 |
+
"Casanare Department",
|
| 744 |
+
"Cauca Department",
|
| 745 |
+
"Cesar Department",
|
| 746 |
+
"Chocó",
|
| 747 |
+
"Cundinamarca",
|
| 748 |
+
"Córdoba",
|
| 749 |
+
"Guainía Department",
|
| 750 |
+
"Guaviare Department",
|
| 751 |
+
"Huila Department",
|
| 752 |
+
"La Guajira Department",
|
| 753 |
+
"Magdalena Department",
|
| 754 |
+
"Meta Department",
|
| 755 |
+
"Nariño",
|
| 756 |
+
"Norte de Santander Department",
|
| 757 |
+
"Putumayo Department",
|
| 758 |
+
"Quindío Department",
|
| 759 |
+
"Risaralda Department",
|
| 760 |
+
"San Andres y Providencia",
|
| 761 |
+
"Santander Department",
|
| 762 |
+
"Sucre Department",
|
| 763 |
+
"Tolima Department",
|
| 764 |
+
"Valle del Cauca Department",
|
| 765 |
+
"Vaupés",
|
| 766 |
+
"Vichada Department"
|
| 767 |
+
],
|
| 768 |
+
"Costa Rica": [
|
| 769 |
+
"Alajuela Province",
|
| 770 |
+
"Cartago Province",
|
| 771 |
+
"Guanacaste Province",
|
| 772 |
+
"Heredia Province",
|
| 773 |
+
"Limón Province",
|
| 774 |
+
"Puntarenas Province",
|
| 775 |
+
"San José"
|
| 776 |
+
],
|
| 777 |
+
"Cuba": [
|
| 778 |
+
"Artemisa",
|
| 779 |
+
"Camagüey",
|
| 780 |
+
"Ciego de Ávila Province",
|
| 781 |
+
"Cienfuegos Province",
|
| 782 |
+
"Granma Province",
|
| 783 |
+
"Guantánamo Province",
|
| 784 |
+
"Havana",
|
| 785 |
+
"Holguín Province",
|
| 786 |
+
"Isla de la Juventud",
|
| 787 |
+
"Las Tunas Province",
|
| 788 |
+
"Matanzas Province",
|
| 789 |
+
"Mayabeque",
|
| 790 |
+
"Pinar del Río",
|
| 791 |
+
"Sancti Spíritus Province",
|
| 792 |
+
"Santiago de Cuba Province",
|
| 793 |
+
"Villa Clara Province"
|
| 794 |
+
],
|
| 795 |
+
"Cabo Verde": [
|
| 796 |
+
"Boa Vista",
|
| 797 |
+
"Brava",
|
| 798 |
+
"Maio",
|
| 799 |
+
"Mosteiros",
|
| 800 |
+
"Paul",
|
| 801 |
+
"Porto Novo",
|
| 802 |
+
"Praia",
|
| 803 |
+
"Ribeira Brava",
|
| 804 |
+
"Ribeira Grande",
|
| 805 |
+
"Ribeira Grande de Santiago",
|
| 806 |
+
"Sal",
|
| 807 |
+
"Santa Catarina",
|
| 808 |
+
"Santa Catarina do Fogo",
|
| 809 |
+
"Santa Cruz",
|
| 810 |
+
"São Domingos",
|
| 811 |
+
"São Filipe",
|
| 812 |
+
"São Lourenço dos Órgãos",
|
| 813 |
+
"São Miguel",
|
| 814 |
+
"São Salvador do Mundo",
|
| 815 |
+
"São Vicente",
|
| 816 |
+
"Tarrafal",
|
| 817 |
+
"Tarrafal de São Nicolau"
|
| 818 |
+
],
|
| 819 |
+
"Cyprus": [
|
| 820 |
+
"Ammochostos",
|
| 821 |
+
"Keryneia",
|
| 822 |
+
"Larnaka",
|
| 823 |
+
"Limassol",
|
| 824 |
+
"Nicosia",
|
| 825 |
+
"Pafos"
|
| 826 |
+
],
|
| 827 |
+
"Czechia": [
|
| 828 |
+
"Central Bohemia",
|
| 829 |
+
"Jihočeský kraj",
|
| 830 |
+
"Karlovarský kraj",
|
| 831 |
+
"Královéhradecký kraj",
|
| 832 |
+
"Liberecký kraj",
|
| 833 |
+
"Moravskoslezský",
|
| 834 |
+
"Olomoucký",
|
| 835 |
+
"Pardubický",
|
| 836 |
+
"Plzeň Region",
|
| 837 |
+
"Prague",
|
| 838 |
+
"South Moravian",
|
| 839 |
+
"Vysočina",
|
| 840 |
+
"Zlín",
|
| 841 |
+
"Ústecký kraj"
|
| 842 |
+
],
|
| 843 |
+
"Germany": [
|
| 844 |
+
"Baden-Wurttemberg",
|
| 845 |
+
"Bavaria",
|
| 846 |
+
"Brandenburg",
|
| 847 |
+
"City state Bremen",
|
| 848 |
+
"Hamburg",
|
| 849 |
+
"Hesse",
|
| 850 |
+
"Lower Saxony",
|
| 851 |
+
"Mecklenburg-Vorpommern",
|
| 852 |
+
"North Rhine-Westphalia",
|
| 853 |
+
"Rheinland-Pfalz",
|
| 854 |
+
"Saarland",
|
| 855 |
+
"Saxony",
|
| 856 |
+
"Saxony-Anhalt",
|
| 857 |
+
"Schleswig-Holstein",
|
| 858 |
+
"State of Berlin",
|
| 859 |
+
"Thuringia"
|
| 860 |
+
],
|
| 861 |
+
"Djibouti": [
|
| 862 |
+
"Ali Sabieh",
|
| 863 |
+
"Arta",
|
| 864 |
+
"Dikhil",
|
| 865 |
+
"Djibouti",
|
| 866 |
+
"Obock",
|
| 867 |
+
"Tadjourah"
|
| 868 |
+
],
|
| 869 |
+
"Denmark": [
|
| 870 |
+
"Capital Region",
|
| 871 |
+
"Central Jutland",
|
| 872 |
+
"North Denmark",
|
| 873 |
+
"South Denmark",
|
| 874 |
+
"Zealand"
|
| 875 |
+
],
|
| 876 |
+
"Dominica": [
|
| 877 |
+
"Saint Andrew Parish",
|
| 878 |
+
"Saint David Parish",
|
| 879 |
+
"Saint George Parish",
|
| 880 |
+
"Saint John Parish",
|
| 881 |
+
"Saint Joseph Parish",
|
| 882 |
+
"Saint Luke Parish",
|
| 883 |
+
"Saint Mark Parish",
|
| 884 |
+
"Saint Patrick Parish",
|
| 885 |
+
"Saint Paul Parish",
|
| 886 |
+
"Saint Peter Parish"
|
| 887 |
+
],
|
| 888 |
+
"Dominican Republic": [
|
| 889 |
+
"Azua Province",
|
| 890 |
+
"Baoruco Province",
|
| 891 |
+
"Barahona Province",
|
| 892 |
+
"Dajabón",
|
| 893 |
+
"Duarte Province",
|
| 894 |
+
"El Seíbo",
|
| 895 |
+
"Elías Piña",
|
| 896 |
+
"Espaillat Province",
|
| 897 |
+
"Hato Mayor Province",
|
| 898 |
+
"Hermanas Mirabal",
|
| 899 |
+
"Independencia",
|
| 900 |
+
"La Altagracia Province",
|
| 901 |
+
"La Romana",
|
| 902 |
+
"La Vega",
|
| 903 |
+
"María Trinidad Sánchez",
|
| 904 |
+
"Monseñor Nouel",
|
| 905 |
+
"Monte Cristi Province",
|
| 906 |
+
"Monte Plata Province",
|
| 907 |
+
"Nacional",
|
| 908 |
+
"Pedernales Province",
|
| 909 |
+
"Peravia",
|
| 910 |
+
"Puerto Plata",
|
| 911 |
+
"Samaná",
|
| 912 |
+
"San Cristóbal",
|
| 913 |
+
"San José de Ocoa",
|
| 914 |
+
"San Juan Province",
|
| 915 |
+
"San Pedro de Macorís",
|
| 916 |
+
"Santiago Province",
|
| 917 |
+
"Santiago Rodríguez",
|
| 918 |
+
"Santo Domingo Province",
|
| 919 |
+
"Sánchez Ramírez",
|
| 920 |
+
"Valverde Province"
|
| 921 |
+
],
|
| 922 |
+
"Algeria": [
|
| 923 |
+
"Adrar",
|
| 924 |
+
"Algiers",
|
| 925 |
+
"Annaba",
|
| 926 |
+
"Aïn Defla",
|
| 927 |
+
"Aïn Témouchent",
|
| 928 |
+
"Batna",
|
| 929 |
+
"Beni Abbes",
|
| 930 |
+
"Biskra",
|
| 931 |
+
"Blida",
|
| 932 |
+
"Bordj Badji Mokhtar",
|
| 933 |
+
"Bordj Bou Arréridj",
|
| 934 |
+
"Bouira",
|
| 935 |
+
"Boumerdes",
|
| 936 |
+
"Béchar",
|
| 937 |
+
"Béjaïa",
|
| 938 |
+
"Chlef",
|
| 939 |
+
"Constantine",
|
| 940 |
+
"Djanet",
|
| 941 |
+
"Djelfa",
|
| 942 |
+
"El Bayadh",
|
| 943 |
+
"El Menia",
|
| 944 |
+
"El Mghair",
|
| 945 |
+
"El Oued",
|
| 946 |
+
"El Tarf",
|
| 947 |
+
"Ghardaia",
|
| 948 |
+
"Guelma",
|
| 949 |
+
"Illizi",
|
| 950 |
+
"In Guezzam",
|
| 951 |
+
"In Salah",
|
| 952 |
+
"Jijel",
|
| 953 |
+
"Khenchela",
|
| 954 |
+
"Laghouat",
|
| 955 |
+
"M'Sila",
|
| 956 |
+
"Mascara",
|
| 957 |
+
"Medea",
|
| 958 |
+
"Mila",
|
| 959 |
+
"Mostaganem",
|
| 960 |
+
"Naama",
|
| 961 |
+
"Oran",
|
| 962 |
+
"Ouargla",
|
| 963 |
+
"Ouled Djellal",
|
| 964 |
+
"Oum el Bouaghi",
|
| 965 |
+
"Relizane",
|
| 966 |
+
"Saida",
|
| 967 |
+
"Sidi Bel Abbès",
|
| 968 |
+
"Skikda",
|
| 969 |
+
"Souk Ahras",
|
| 970 |
+
"Sétif",
|
| 971 |
+
"Tamanrasset",
|
| 972 |
+
"Tiaret",
|
| 973 |
+
"Timimoun",
|
| 974 |
+
"Tindouf",
|
| 975 |
+
"Tipaza",
|
| 976 |
+
"Tissemsilt",
|
| 977 |
+
"Tizi Ouzou",
|
| 978 |
+
"Tlemcen",
|
| 979 |
+
"Touggourt",
|
| 980 |
+
"Tébessa"
|
| 981 |
+
],
|
| 982 |
+
"Ecuador": [
|
| 983 |
+
"Azuay",
|
| 984 |
+
"Bolívar",
|
| 985 |
+
"Carchi",
|
| 986 |
+
"Cañar",
|
| 987 |
+
"Chimborazo Province",
|
| 988 |
+
"Cotopaxi",
|
| 989 |
+
"El Oro",
|
| 990 |
+
"Esmeraldas",
|
| 991 |
+
"Galápagos",
|
| 992 |
+
"Guayas",
|
| 993 |
+
"Imbabura",
|
| 994 |
+
"Loja",
|
| 995 |
+
"Los Ríos",
|
| 996 |
+
"Manabí",
|
| 997 |
+
"Morona-Santiago Province",
|
| 998 |
+
"Napo",
|
| 999 |
+
"Orellana Province",
|
| 1000 |
+
"Pastaza Province",
|
| 1001 |
+
"Pichincha",
|
| 1002 |
+
"Santa Elena",
|
| 1003 |
+
"Santo Domingo de los Tsáchilas",
|
| 1004 |
+
"Sucumbíos",
|
| 1005 |
+
"Tungurahua Province",
|
| 1006 |
+
"Zamora Chinchipe"
|
| 1007 |
+
],
|
| 1008 |
+
"Estonia": [
|
| 1009 |
+
"Harjumaa",
|
| 1010 |
+
"Hiiumaa",
|
| 1011 |
+
"Ida-Virumaa",
|
| 1012 |
+
"Järvamaa",
|
| 1013 |
+
"Jõgevamaa",
|
| 1014 |
+
"Lääne",
|
| 1015 |
+
"Lääne-Virumaa",
|
| 1016 |
+
"Pärnumaa",
|
| 1017 |
+
"Põlvamaa",
|
| 1018 |
+
"Raplamaa",
|
| 1019 |
+
"Saare",
|
| 1020 |
+
"Tartu",
|
| 1021 |
+
"Valgamaa",
|
| 1022 |
+
"Viljandimaa",
|
| 1023 |
+
"Võrumaa"
|
| 1024 |
+
],
|
| 1025 |
+
"Egypt": [
|
| 1026 |
+
"Alexandria",
|
| 1027 |
+
"Aswan",
|
| 1028 |
+
"Asyut",
|
| 1029 |
+
"Beheira",
|
| 1030 |
+
"Beni Suweif",
|
| 1031 |
+
"Cairo",
|
| 1032 |
+
"Dakahlia",
|
| 1033 |
+
"Damietta",
|
| 1034 |
+
"Faiyum",
|
| 1035 |
+
"Gharbia",
|
| 1036 |
+
"Giza",
|
| 1037 |
+
"Ismailia",
|
| 1038 |
+
"Kafr el-Sheikh",
|
| 1039 |
+
"Luxor",
|
| 1040 |
+
"Matruh",
|
| 1041 |
+
"Minya",
|
| 1042 |
+
"Monufia",
|
| 1043 |
+
"New Valley",
|
| 1044 |
+
"North Sinai",
|
| 1045 |
+
"Port Said",
|
| 1046 |
+
"Qalyubia",
|
| 1047 |
+
"Qena",
|
| 1048 |
+
"Red Sea",
|
| 1049 |
+
"Sharqia",
|
| 1050 |
+
"Sohag",
|
| 1051 |
+
"South Sinai",
|
| 1052 |
+
"Suez"
|
| 1053 |
+
],
|
| 1054 |
+
"Eritrea": [
|
| 1055 |
+
"Anseba",
|
| 1056 |
+
"Debub",
|
| 1057 |
+
"Gash-Barka",
|
| 1058 |
+
"Maekel",
|
| 1059 |
+
"Northern Red Sea",
|
| 1060 |
+
"Southern Red Sea"
|
| 1061 |
+
],
|
| 1062 |
+
"Spain": [
|
| 1063 |
+
"Andalusia",
|
| 1064 |
+
"Aragon",
|
| 1065 |
+
"Asturias",
|
| 1066 |
+
"Balearic Islands",
|
| 1067 |
+
"Basque Country",
|
| 1068 |
+
"Canary Islands",
|
| 1069 |
+
"Cantabria",
|
| 1070 |
+
"Castille and León",
|
| 1071 |
+
"Castille-La Mancha",
|
| 1072 |
+
"Catalonia",
|
| 1073 |
+
"Ceuta",
|
| 1074 |
+
"Extremadura",
|
| 1075 |
+
"Galicia",
|
| 1076 |
+
"La Rioja",
|
| 1077 |
+
"Madrid",
|
| 1078 |
+
"Melilla",
|
| 1079 |
+
"Murcia",
|
| 1080 |
+
"Navarre",
|
| 1081 |
+
"Valencia"
|
| 1082 |
+
],
|
| 1083 |
+
"Ethiopia": [
|
| 1084 |
+
"Addis Ababa",
|
| 1085 |
+
"Amhara",
|
| 1086 |
+
"Bīnshangul Gumuz",
|
| 1087 |
+
"Central Ethiopia Regional State",
|
| 1088 |
+
"Dire Dawa",
|
| 1089 |
+
"Gambela",
|
| 1090 |
+
"Harari",
|
| 1091 |
+
"Oromiya",
|
| 1092 |
+
"Sidama Region",
|
| 1093 |
+
"Somali",
|
| 1094 |
+
"South Ethiopia Regional State",
|
| 1095 |
+
"South West Ethiopia Peoples' Region",
|
| 1096 |
+
"Tigray",
|
| 1097 |
+
"Āfar"
|
| 1098 |
+
],
|
| 1099 |
+
"Finland": [
|
| 1100 |
+
"Central Finland",
|
| 1101 |
+
"Central Ostrobothnia",
|
| 1102 |
+
"Kainuu",
|
| 1103 |
+
"Kanta-Häme",
|
| 1104 |
+
"Kymenlaakso",
|
| 1105 |
+
"Lapland",
|
| 1106 |
+
"North Karelia",
|
| 1107 |
+
"North Ostrobothnia",
|
| 1108 |
+
"North Savo",
|
| 1109 |
+
"Ostrobothnia",
|
| 1110 |
+
"Paijat-Hame",
|
| 1111 |
+
"Pirkanmaa",
|
| 1112 |
+
"Satakunta",
|
| 1113 |
+
"South Karelia",
|
| 1114 |
+
"South Ostrobothnia",
|
| 1115 |
+
"South Savo",
|
| 1116 |
+
"Southwest Finland",
|
| 1117 |
+
"Uusimaa"
|
| 1118 |
+
],
|
| 1119 |
+
"Fiji": [
|
| 1120 |
+
"Central",
|
| 1121 |
+
"Eastern",
|
| 1122 |
+
"Northern",
|
| 1123 |
+
"Rotuma",
|
| 1124 |
+
"Western"
|
| 1125 |
+
],
|
| 1126 |
+
"Micronesia": [
|
| 1127 |
+
"Chuuk",
|
| 1128 |
+
"Kosrae",
|
| 1129 |
+
"Pohnpei State",
|
| 1130 |
+
"Yap State"
|
| 1131 |
+
],
|
| 1132 |
+
"Faroe Islands": [
|
| 1133 |
+
"Eysturoy",
|
| 1134 |
+
"Norðoyar",
|
| 1135 |
+
"Sandoy",
|
| 1136 |
+
"Streymoy",
|
| 1137 |
+
"Suðuroy",
|
| 1138 |
+
"Vágar"
|
| 1139 |
+
],
|
| 1140 |
+
"France": [
|
| 1141 |
+
"Bourgogne",
|
| 1142 |
+
"Brittany",
|
| 1143 |
+
"Centre",
|
| 1144 |
+
"Corsica",
|
| 1145 |
+
"Grand Est",
|
| 1146 |
+
"Hauts-de-France",
|
| 1147 |
+
"Normandy",
|
| 1148 |
+
"Nouvelle-Aquitaine",
|
| 1149 |
+
"Occitanie",
|
| 1150 |
+
"Pays de la Loire",
|
| 1151 |
+
"Provence-Alpes-Côte d'Azur",
|
| 1152 |
+
"Rhône-Alpes",
|
| 1153 |
+
"Île-de-France"
|
| 1154 |
+
],
|
| 1155 |
+
"Gabon": [
|
| 1156 |
+
"Estuaire",
|
| 1157 |
+
"Haut-Ogooué",
|
| 1158 |
+
"Moyen-Ogooué",
|
| 1159 |
+
"Ngouni",
|
| 1160 |
+
"Nyanga",
|
| 1161 |
+
"Ogooué-Ivindo",
|
| 1162 |
+
"Ogooué-Lolo",
|
| 1163 |
+
"Ogooué-Maritime",
|
| 1164 |
+
"Woleu-Ntem"
|
| 1165 |
+
],
|
| 1166 |
+
"United Kingdom": [
|
| 1167 |
+
"England",
|
| 1168 |
+
"Northern Ireland",
|
| 1169 |
+
"Scotland",
|
| 1170 |
+
"Wales"
|
| 1171 |
+
],
|
| 1172 |
+
"Grenada": [
|
| 1173 |
+
"Carriacou and Petite Martinique",
|
| 1174 |
+
"Saint Andrew Parish",
|
| 1175 |
+
"Saint David Parish",
|
| 1176 |
+
"Saint George Parish",
|
| 1177 |
+
"Saint John Parish",
|
| 1178 |
+
"Saint Mark Parish",
|
| 1179 |
+
"Saint Patrick Parish"
|
| 1180 |
+
],
|
| 1181 |
+
"Georgia": [
|
| 1182 |
+
"Abkhazia",
|
| 1183 |
+
"Adjara",
|
| 1184 |
+
"Guria",
|
| 1185 |
+
"Imereti",
|
| 1186 |
+
"Kakheti",
|
| 1187 |
+
"Kvemo Kartli",
|
| 1188 |
+
"Mtskheta-Mtianeti",
|
| 1189 |
+
"Racha-Lechkhumi and Kvemo Svaneti",
|
| 1190 |
+
"Samegrelo and Zemo Svaneti",
|
| 1191 |
+
"Samtskhe-Javakheti",
|
| 1192 |
+
"Shida Kartli",
|
| 1193 |
+
"Tbilisi"
|
| 1194 |
+
],
|
| 1195 |
+
"French Guiana": [
|
| 1196 |
+
"Guyane"
|
| 1197 |
+
],
|
| 1198 |
+
"Guernsey": [
|
| 1199 |
+
"Alderney",
|
| 1200 |
+
"Castel",
|
| 1201 |
+
"Forest",
|
| 1202 |
+
"Saint Andrew",
|
| 1203 |
+
"Saint Saviour",
|
| 1204 |
+
"St Martin",
|
| 1205 |
+
"St Peter Port",
|
| 1206 |
+
"St Pierre du Bois",
|
| 1207 |
+
"St Sampson",
|
| 1208 |
+
"Torteval",
|
| 1209 |
+
"Vale"
|
| 1210 |
+
],
|
| 1211 |
+
"Ghana": [
|
| 1212 |
+
"Ahafo",
|
| 1213 |
+
"Ashanti",
|
| 1214 |
+
"Bono",
|
| 1215 |
+
"Bono East",
|
| 1216 |
+
"Central",
|
| 1217 |
+
"Eastern",
|
| 1218 |
+
"Greater Accra",
|
| 1219 |
+
"North East",
|
| 1220 |
+
"Northern",
|
| 1221 |
+
"Oti",
|
| 1222 |
+
"Savannah",
|
| 1223 |
+
"Upper East",
|
| 1224 |
+
"Upper West",
|
| 1225 |
+
"Volta",
|
| 1226 |
+
"Western",
|
| 1227 |
+
"Western North"
|
| 1228 |
+
],
|
| 1229 |
+
"Greenland": [
|
| 1230 |
+
"Avannaata",
|
| 1231 |
+
"Kujalleq",
|
| 1232 |
+
"Qeqertalik",
|
| 1233 |
+
"Qeqqata",
|
| 1234 |
+
"Sermersooq"
|
| 1235 |
+
],
|
| 1236 |
+
"Gambia": [
|
| 1237 |
+
"Banjul",
|
| 1238 |
+
"Central River",
|
| 1239 |
+
"Lower River",
|
| 1240 |
+
"North Bank",
|
| 1241 |
+
"Upper River",
|
| 1242 |
+
"Western"
|
| 1243 |
+
],
|
| 1244 |
+
"Guinea": [
|
| 1245 |
+
"Boké Region",
|
| 1246 |
+
"Conakry",
|
| 1247 |
+
"Faranah",
|
| 1248 |
+
"Kankan Region",
|
| 1249 |
+
"Kindia",
|
| 1250 |
+
"Labé Region",
|
| 1251 |
+
"Mamou Region",
|
| 1252 |
+
"Nzérékoré Region"
|
| 1253 |
+
],
|
| 1254 |
+
"Guadeloupe": [
|
| 1255 |
+
"Guadeloupe"
|
| 1256 |
+
],
|
| 1257 |
+
"Equatorial Guinea": [
|
| 1258 |
+
"Annobon",
|
| 1259 |
+
"Bioko Norte",
|
| 1260 |
+
"Bioko Sur",
|
| 1261 |
+
"Centro Sur",
|
| 1262 |
+
"Djibloho",
|
| 1263 |
+
"Kié-Ntem",
|
| 1264 |
+
"Litoral",
|
| 1265 |
+
"Wele-Nzas"
|
| 1266 |
+
],
|
| 1267 |
+
"Greece": [
|
| 1268 |
+
"Attica",
|
| 1269 |
+
"Central Greece",
|
| 1270 |
+
"Central Macedonia",
|
| 1271 |
+
"Crete",
|
| 1272 |
+
"East Macedonia and Thrace",
|
| 1273 |
+
"Epirus",
|
| 1274 |
+
"Ionian Islands",
|
| 1275 |
+
"Mount Athos",
|
| 1276 |
+
"North Aegean",
|
| 1277 |
+
"Peloponnese",
|
| 1278 |
+
"South Aegean",
|
| 1279 |
+
"Thessaly",
|
| 1280 |
+
"West Greece",
|
| 1281 |
+
"West Macedonia"
|
| 1282 |
+
],
|
| 1283 |
+
"Guatemala": [
|
| 1284 |
+
"Alta Verapaz",
|
| 1285 |
+
"Baja Verapaz",
|
| 1286 |
+
"Chimaltenango",
|
| 1287 |
+
"Chiquimula",
|
| 1288 |
+
"El Progreso",
|
| 1289 |
+
"Escuintla",
|
| 1290 |
+
"Guatemala",
|
| 1291 |
+
"Huehuetenango",
|
| 1292 |
+
"Izabal Department",
|
| 1293 |
+
"Jalapa",
|
| 1294 |
+
"Jutiapa",
|
| 1295 |
+
"Petén",
|
| 1296 |
+
"Quetzaltenango",
|
| 1297 |
+
"Quiché",
|
| 1298 |
+
"Retalhuleu",
|
| 1299 |
+
"Sacatepéquez",
|
| 1300 |
+
"San Marcos",
|
| 1301 |
+
"Santa Rosa Department",
|
| 1302 |
+
"Sololá",
|
| 1303 |
+
"Suchitepeque",
|
| 1304 |
+
"Totonicapán",
|
| 1305 |
+
"Zacapa"
|
| 1306 |
+
],
|
| 1307 |
+
"Guam": [
|
| 1308 |
+
"Agana Heights",
|
| 1309 |
+
"Agat",
|
| 1310 |
+
"Asan",
|
| 1311 |
+
"Barrigada",
|
| 1312 |
+
"Chalan Pago-Ordot",
|
| 1313 |
+
"Dededo",
|
| 1314 |
+
"Hagatna",
|
| 1315 |
+
"Inarajan",
|
| 1316 |
+
"Mangilao",
|
| 1317 |
+
"Merizo",
|
| 1318 |
+
"Mongmong-Toto-Maite",
|
| 1319 |
+
"Piti",
|
| 1320 |
+
"Santa Rita",
|
| 1321 |
+
"Sinajana",
|
| 1322 |
+
"Talofofo",
|
| 1323 |
+
"Tamuning",
|
| 1324 |
+
"Umatac",
|
| 1325 |
+
"Yigo",
|
| 1326 |
+
"Yona"
|
| 1327 |
+
],
|
| 1328 |
+
"Guinea-Bissau": [
|
| 1329 |
+
"Bafatá",
|
| 1330 |
+
"Biombo",
|
| 1331 |
+
"Bissau",
|
| 1332 |
+
"Bolama",
|
| 1333 |
+
"Cacheu",
|
| 1334 |
+
"Gabú",
|
| 1335 |
+
"Oio",
|
| 1336 |
+
"Quinara",
|
| 1337 |
+
"Tombali"
|
| 1338 |
+
],
|
| 1339 |
+
"Guyana": [
|
| 1340 |
+
"Barima-Waini",
|
| 1341 |
+
"Cuyuni-Mazaruni",
|
| 1342 |
+
"Demerara-Mahaica",
|
| 1343 |
+
"East Berbice-Corentyne",
|
| 1344 |
+
"Essequibo Islands-West Demerara",
|
| 1345 |
+
"Mahaica-Berbice",
|
| 1346 |
+
"Pomeroon-Supenaam",
|
| 1347 |
+
"Potaro-Siparuni",
|
| 1348 |
+
"Upper Demerara-Berbice",
|
| 1349 |
+
"Upper Takutu-Upper Essequibo"
|
| 1350 |
+
],
|
| 1351 |
+
"Hong Kong": [
|
| 1352 |
+
"Central and Western",
|
| 1353 |
+
"Eastern District",
|
| 1354 |
+
"Islands",
|
| 1355 |
+
"Kowloon City",
|
| 1356 |
+
"Kwai Tsing District",
|
| 1357 |
+
"Kwun Tong District",
|
| 1358 |
+
"North District",
|
| 1359 |
+
"Sai Kung District",
|
| 1360 |
+
"Sha Tin",
|
| 1361 |
+
"Sham Shui Po District",
|
| 1362 |
+
"Southern District",
|
| 1363 |
+
"Tai Po",
|
| 1364 |
+
"Tsuen Wan",
|
| 1365 |
+
"Tuen Mun",
|
| 1366 |
+
"Wan Chai",
|
| 1367 |
+
"Wong Tai Sin District",
|
| 1368 |
+
"Yau Tsim Mong District",
|
| 1369 |
+
"Yuen Long"
|
| 1370 |
+
],
|
| 1371 |
+
"Honduras": [
|
| 1372 |
+
"Atlántida Department",
|
| 1373 |
+
"Bay Islands",
|
| 1374 |
+
"Choluteca Department",
|
| 1375 |
+
"Colón Department",
|
| 1376 |
+
"Comayagua Department",
|
| 1377 |
+
"Copán Department",
|
| 1378 |
+
"Cortés Department",
|
| 1379 |
+
"El Paraíso Department",
|
| 1380 |
+
"Francisco Morazán Department",
|
| 1381 |
+
"Gracias a Dios Department",
|
| 1382 |
+
"Intibucá Department",
|
| 1383 |
+
"La Paz Department",
|
| 1384 |
+
"Lempira Department",
|
| 1385 |
+
"Ocotepeque Department",
|
| 1386 |
+
"Olancho Department",
|
| 1387 |
+
"Santa Bárbara Department",
|
| 1388 |
+
"Valle Department",
|
| 1389 |
+
"Yoro Department"
|
| 1390 |
+
],
|
| 1391 |
+
"Croatia": [
|
| 1392 |
+
"Bjelovar-Bilogora",
|
| 1393 |
+
"Brod-Posavina",
|
| 1394 |
+
"County of Osijek-Baranja",
|
| 1395 |
+
"Dubrovnik-Neretva",
|
| 1396 |
+
"Istria",
|
| 1397 |
+
"Karlovac",
|
| 1398 |
+
"Koprivnica-Križevci",
|
| 1399 |
+
"Krapina-Zagorje",
|
| 1400 |
+
"Lika-Senj",
|
| 1401 |
+
"Međimurje",
|
| 1402 |
+
"Požega-Slavonia",
|
| 1403 |
+
"Primorje-Gorski Kotar",
|
| 1404 |
+
"Sisak-Moslavina",
|
| 1405 |
+
"Split-Dalmatia",
|
| 1406 |
+
"Varaždin",
|
| 1407 |
+
"Virovitica-Podravina",
|
| 1408 |
+
"Vukovar-Srijem",
|
| 1409 |
+
"Zadar",
|
| 1410 |
+
"Zagreb",
|
| 1411 |
+
"Zagreb County",
|
| 1412 |
+
"Šibenik-Knin"
|
| 1413 |
+
],
|
| 1414 |
+
"Haiti": [
|
| 1415 |
+
"Artibonite",
|
| 1416 |
+
"Centre",
|
| 1417 |
+
"Grand'Anse",
|
| 1418 |
+
"Nippes",
|
| 1419 |
+
"Nord",
|
| 1420 |
+
"Nord-Est",
|
| 1421 |
+
"Nord-Ouest",
|
| 1422 |
+
"Ouest",
|
| 1423 |
+
"Sud",
|
| 1424 |
+
"Sud-Est"
|
| 1425 |
+
],
|
| 1426 |
+
"Hungary": [
|
| 1427 |
+
"Baranya",
|
| 1428 |
+
"Bekes County",
|
| 1429 |
+
"Borsod-Abaúj-Zemplén",
|
| 1430 |
+
"Budapest",
|
| 1431 |
+
"Bács-Kiskun",
|
| 1432 |
+
"Csongrád",
|
| 1433 |
+
"Fejér",
|
| 1434 |
+
"Győr-Moson-Sopron",
|
| 1435 |
+
"Hajdú-Bihar",
|
| 1436 |
+
"Heves County",
|
| 1437 |
+
"Jász-Nagykun-Szolnok",
|
| 1438 |
+
"Komárom-Esztergom",
|
| 1439 |
+
"Nógrád",
|
| 1440 |
+
"Pest County",
|
| 1441 |
+
"Somogy County",
|
| 1442 |
+
"Szabolcs-Szatmár-Bereg",
|
| 1443 |
+
"Tolna County",
|
| 1444 |
+
"Vas County",
|
| 1445 |
+
"Veszprém",
|
| 1446 |
+
"Zala County"
|
| 1447 |
+
],
|
| 1448 |
+
"Indonesia": [
|
| 1449 |
+
"Aceh",
|
| 1450 |
+
"Bali",
|
| 1451 |
+
"Bangka–Belitung Islands",
|
| 1452 |
+
"Banten",
|
| 1453 |
+
"Bengkulu",
|
| 1454 |
+
"Central Java",
|
| 1455 |
+
"Central Kalimantan",
|
| 1456 |
+
"Central Papua",
|
| 1457 |
+
"Central Sulawesi",
|
| 1458 |
+
"East Java",
|
| 1459 |
+
"East Kalimantan",
|
| 1460 |
+
"East Nusa Tenggara",
|
| 1461 |
+
"Gorontalo",
|
| 1462 |
+
"Highland Papua",
|
| 1463 |
+
"Jakarta",
|
| 1464 |
+
"Jambi",
|
| 1465 |
+
"Lampung",
|
| 1466 |
+
"Maluku",
|
| 1467 |
+
"North Kalimantan",
|
| 1468 |
+
"North Maluku",
|
| 1469 |
+
"North Sulawesi",
|
| 1470 |
+
"North Sumatra",
|
| 1471 |
+
"Papua",
|
| 1472 |
+
"Riau",
|
| 1473 |
+
"Riau Islands",
|
| 1474 |
+
"South Kalimantan",
|
| 1475 |
+
"South Papua",
|
| 1476 |
+
"South Sulawesi",
|
| 1477 |
+
"South Sumatra",
|
| 1478 |
+
"Southeast Sulawesi",
|
| 1479 |
+
"Southwest Papua",
|
| 1480 |
+
"West Java",
|
| 1481 |
+
"West Kalimantan",
|
| 1482 |
+
"West Nusa Tenggara",
|
| 1483 |
+
"West Papua",
|
| 1484 |
+
"West Sulawesi",
|
| 1485 |
+
"West Sumatra",
|
| 1486 |
+
"Yogyakarta"
|
| 1487 |
+
],
|
| 1488 |
+
"Ireland": [
|
| 1489 |
+
"Connacht",
|
| 1490 |
+
"Leinster",
|
| 1491 |
+
"Munster",
|
| 1492 |
+
"Ulster"
|
| 1493 |
+
],
|
| 1494 |
+
"Israel": [
|
| 1495 |
+
"Central District",
|
| 1496 |
+
"Haifa",
|
| 1497 |
+
"Jerusalem",
|
| 1498 |
+
"Judea and Samaria Area",
|
| 1499 |
+
"Northern District",
|
| 1500 |
+
"Southern District",
|
| 1501 |
+
"Tel Aviv"
|
| 1502 |
+
],
|
| 1503 |
+
"Isle of Man": [
|
| 1504 |
+
"Andreas",
|
| 1505 |
+
"Arbory",
|
| 1506 |
+
"Ballaugh",
|
| 1507 |
+
"Braddan",
|
| 1508 |
+
"Bride",
|
| 1509 |
+
"Castletown",
|
| 1510 |
+
"Douglas",
|
| 1511 |
+
"German",
|
| 1512 |
+
"Jurby",
|
| 1513 |
+
"Laxey",
|
| 1514 |
+
"Lezayre",
|
| 1515 |
+
"Lonan",
|
| 1516 |
+
"Malew",
|
| 1517 |
+
"Marown",
|
| 1518 |
+
"Maughold",
|
| 1519 |
+
"Michael",
|
| 1520 |
+
"Onchan",
|
| 1521 |
+
"Patrick",
|
| 1522 |
+
"Peel",
|
| 1523 |
+
"Port Erin",
|
| 1524 |
+
"Port St Mary",
|
| 1525 |
+
"Ramsey",
|
| 1526 |
+
"Rushen",
|
| 1527 |
+
"Santon"
|
| 1528 |
+
],
|
| 1529 |
+
"India": [
|
| 1530 |
+
"Andaman and Nicobar",
|
| 1531 |
+
"Andhra Pradesh",
|
| 1532 |
+
"Arunachal Pradesh",
|
| 1533 |
+
"Assam",
|
| 1534 |
+
"Bihar",
|
| 1535 |
+
"Chandigarh",
|
| 1536 |
+
"Chhattisgarh",
|
| 1537 |
+
"Dadra and Nagar Haveli and Daman and Diu",
|
| 1538 |
+
"Delhi",
|
| 1539 |
+
"Goa",
|
| 1540 |
+
"Gujarat",
|
| 1541 |
+
"Haryana",
|
| 1542 |
+
"Himachal Pradesh",
|
| 1543 |
+
"Jammu and Kashmir",
|
| 1544 |
+
"Jharkhand",
|
| 1545 |
+
"Karnataka",
|
| 1546 |
+
"Kerala",
|
| 1547 |
+
"Laccadives",
|
| 1548 |
+
"Ladakh",
|
| 1549 |
+
"Madhya Pradesh",
|
| 1550 |
+
"Maharashtra",
|
| 1551 |
+
"Manipur",
|
| 1552 |
+
"Meghalaya",
|
| 1553 |
+
"Mizoram",
|
| 1554 |
+
"Nagaland",
|
| 1555 |
+
"Odisha",
|
| 1556 |
+
"Puducherry",
|
| 1557 |
+
"Punjab",
|
| 1558 |
+
"Rajasthan",
|
| 1559 |
+
"Sikkim",
|
| 1560 |
+
"Tamil Nadu",
|
| 1561 |
+
"Telangana",
|
| 1562 |
+
"Tripura",
|
| 1563 |
+
"Uttar Pradesh",
|
| 1564 |
+
"Uttarakhand",
|
| 1565 |
+
"West Bengal"
|
| 1566 |
+
],
|
| 1567 |
+
"Iraq": [
|
| 1568 |
+
"Al Anbar",
|
| 1569 |
+
"Al Muthanna Governorate",
|
| 1570 |
+
"Al Qādisīyah",
|
| 1571 |
+
"An Najaf",
|
| 1572 |
+
"Baghdad",
|
| 1573 |
+
"Basra",
|
| 1574 |
+
"Bābil",
|
| 1575 |
+
"Dhi Qar",
|
| 1576 |
+
"Diyālá",
|
| 1577 |
+
"Duhok",
|
| 1578 |
+
"Erbil",
|
| 1579 |
+
"Halabja Governorate",
|
| 1580 |
+
"Karbalāʼ",
|
| 1581 |
+
"Kirkuk",
|
| 1582 |
+
"Maysan",
|
| 1583 |
+
"Nineveh",
|
| 1584 |
+
"Salah ad Din",
|
| 1585 |
+
"Sulaymaniyah",
|
| 1586 |
+
"Wāsiţ"
|
| 1587 |
+
],
|
| 1588 |
+
"Iran": [
|
| 1589 |
+
"Alborz Province",
|
| 1590 |
+
"Ardabil Province",
|
| 1591 |
+
"Bushehr",
|
| 1592 |
+
"Chaharmahal and Bakhtiari",
|
| 1593 |
+
"East Azerbaijan",
|
| 1594 |
+
"Fars",
|
| 1595 |
+
"Gilan Province",
|
| 1596 |
+
"Golestan",
|
| 1597 |
+
"Hamadan Province",
|
| 1598 |
+
"Hormozgan",
|
| 1599 |
+
"Ilam Province",
|
| 1600 |
+
"Isfahan",
|
| 1601 |
+
"Kerman",
|
| 1602 |
+
"Kermanshah Province",
|
| 1603 |
+
"Khuzestan",
|
| 1604 |
+
"Kohgiluyeh and Boyer-Ahmad",
|
| 1605 |
+
"Kurdistan Province",
|
| 1606 |
+
"Lorestan Province",
|
| 1607 |
+
"Markazi",
|
| 1608 |
+
"Māzandarān",
|
| 1609 |
+
"North Khorasan",
|
| 1610 |
+
"Qazvin Province",
|
| 1611 |
+
"Qom Province",
|
| 1612 |
+
"Razavi Khorasan",
|
| 1613 |
+
"Semnan",
|
| 1614 |
+
"Sistan and Baluchestan",
|
| 1615 |
+
"South Khorasan Province",
|
| 1616 |
+
"Tehran",
|
| 1617 |
+
"West Azerbaijan",
|
| 1618 |
+
"Yazd Province",
|
| 1619 |
+
"Zanjan"
|
| 1620 |
+
],
|
| 1621 |
+
"Iceland": [
|
| 1622 |
+
"Capital Region",
|
| 1623 |
+
"East",
|
| 1624 |
+
"Northeast",
|
| 1625 |
+
"Northwest",
|
| 1626 |
+
"South",
|
| 1627 |
+
"Southern Peninsula",
|
| 1628 |
+
"West",
|
| 1629 |
+
"Westfjords"
|
| 1630 |
+
],
|
| 1631 |
+
"Italy": [
|
| 1632 |
+
"Abruzzo",
|
| 1633 |
+
"Aosta Valley",
|
| 1634 |
+
"Apulia",
|
| 1635 |
+
"Basilicate",
|
| 1636 |
+
"Calabria",
|
| 1637 |
+
"Campania",
|
| 1638 |
+
"Emilia-Romagna",
|
| 1639 |
+
"Friuli Venezia Giulia",
|
| 1640 |
+
"Lazio",
|
| 1641 |
+
"Liguria",
|
| 1642 |
+
"Lombardy",
|
| 1643 |
+
"Molise",
|
| 1644 |
+
"Piedmont",
|
| 1645 |
+
"Sardinia",
|
| 1646 |
+
"Sicily",
|
| 1647 |
+
"The Marches",
|
| 1648 |
+
"Trentino-Alto Adige",
|
| 1649 |
+
"Tuscany",
|
| 1650 |
+
"Umbria",
|
| 1651 |
+
"Veneto"
|
| 1652 |
+
],
|
| 1653 |
+
"Jersey": [
|
| 1654 |
+
"Grouville",
|
| 1655 |
+
"St Clement",
|
| 1656 |
+
"St Helier",
|
| 1657 |
+
"St John",
|
| 1658 |
+
"St Lawrence",
|
| 1659 |
+
"St Martîn",
|
| 1660 |
+
"St Mary",
|
| 1661 |
+
"St Ouen",
|
| 1662 |
+
"St Peter",
|
| 1663 |
+
"St Saviour",
|
| 1664 |
+
"St. Brelade",
|
| 1665 |
+
"Trinity"
|
| 1666 |
+
],
|
| 1667 |
+
"Jamaica": [
|
| 1668 |
+
"Clarendon",
|
| 1669 |
+
"Hanover",
|
| 1670 |
+
"Kingston",
|
| 1671 |
+
"Manchester",
|
| 1672 |
+
"Portland Parish",
|
| 1673 |
+
"Saint Andrew Parish",
|
| 1674 |
+
"Saint Ann Parish",
|
| 1675 |
+
"Saint Catherine Parish",
|
| 1676 |
+
"Saint James Parish",
|
| 1677 |
+
"Saint Mary Parish",
|
| 1678 |
+
"Saint Thomas Parish",
|
| 1679 |
+
"St. Elizabeth",
|
| 1680 |
+
"Trelawny Parish",
|
| 1681 |
+
"Westmoreland"
|
| 1682 |
+
],
|
| 1683 |
+
"Jordan": [
|
| 1684 |
+
"Ajlun",
|
| 1685 |
+
"Amman",
|
| 1686 |
+
"Aqaba",
|
| 1687 |
+
"Balqa",
|
| 1688 |
+
"Irbid",
|
| 1689 |
+
"Jerash",
|
| 1690 |
+
"Karak",
|
| 1691 |
+
"Madaba",
|
| 1692 |
+
"Mafraq",
|
| 1693 |
+
"Ma’an",
|
| 1694 |
+
"Tafielah",
|
| 1695 |
+
"Zarqa"
|
| 1696 |
+
],
|
| 1697 |
+
"Japan": [
|
| 1698 |
+
"Aichi",
|
| 1699 |
+
"Akita",
|
| 1700 |
+
"Aomori",
|
| 1701 |
+
"Chiba",
|
| 1702 |
+
"Ehime",
|
| 1703 |
+
"Fukui",
|
| 1704 |
+
"Fukuoka",
|
| 1705 |
+
"Fukushima",
|
| 1706 |
+
"Gifu",
|
| 1707 |
+
"Gunma",
|
| 1708 |
+
"Hiroshima",
|
| 1709 |
+
"Hokkaido",
|
| 1710 |
+
"Hyōgo",
|
| 1711 |
+
"Ibaraki",
|
| 1712 |
+
"Ishikawa",
|
| 1713 |
+
"Iwate",
|
| 1714 |
+
"Kagawa",
|
| 1715 |
+
"Kagoshima",
|
| 1716 |
+
"Kanagawa",
|
| 1717 |
+
"Kochi",
|
| 1718 |
+
"Kumamoto",
|
| 1719 |
+
"Kyoto",
|
| 1720 |
+
"Mie",
|
| 1721 |
+
"Miyagi",
|
| 1722 |
+
"Miyazaki",
|
| 1723 |
+
"Nagano",
|
| 1724 |
+
"Nagasaki",
|
| 1725 |
+
"Nara",
|
| 1726 |
+
"Niigata",
|
| 1727 |
+
"Oita",
|
| 1728 |
+
"Okayama",
|
| 1729 |
+
"Okinawa",
|
| 1730 |
+
"Osaka",
|
| 1731 |
+
"Saga",
|
| 1732 |
+
"Saitama",
|
| 1733 |
+
"Shiga",
|
| 1734 |
+
"Shimane",
|
| 1735 |
+
"Shizuoka",
|
| 1736 |
+
"Tochigi",
|
| 1737 |
+
"Tokushima",
|
| 1738 |
+
"Tokyo",
|
| 1739 |
+
"Tottori",
|
| 1740 |
+
"Toyama",
|
| 1741 |
+
"Wakayama",
|
| 1742 |
+
"Yamagata",
|
| 1743 |
+
"Yamaguchi",
|
| 1744 |
+
"Yamanashi"
|
| 1745 |
+
],
|
| 1746 |
+
"Kenya": [
|
| 1747 |
+
"Baringo",
|
| 1748 |
+
"Bomet County",
|
| 1749 |
+
"Bungoma County",
|
| 1750 |
+
"Busia County",
|
| 1751 |
+
"Elegeyo-Marakwet",
|
| 1752 |
+
"Embu County",
|
| 1753 |
+
"Garissa County",
|
| 1754 |
+
"Homa Bay County",
|
| 1755 |
+
"Isiolo County",
|
| 1756 |
+
"Kajiado County",
|
| 1757 |
+
"Kakamega County",
|
| 1758 |
+
"Kericho County",
|
| 1759 |
+
"Kiambu County",
|
| 1760 |
+
"Kilifi County",
|
| 1761 |
+
"Kirinyaga County",
|
| 1762 |
+
"Kisii County",
|
| 1763 |
+
"Kisumu County",
|
| 1764 |
+
"Kitui County",
|
| 1765 |
+
"Kwale County",
|
| 1766 |
+
"Laikipia",
|
| 1767 |
+
"Lamu",
|
| 1768 |
+
"Machakos County",
|
| 1769 |
+
"Makueni County",
|
| 1770 |
+
"Mandera County",
|
| 1771 |
+
"Marsabit County",
|
| 1772 |
+
"Meru County",
|
| 1773 |
+
"Migori County",
|
| 1774 |
+
"Mombasa County",
|
| 1775 |
+
"Murang'A",
|
| 1776 |
+
"Nairobi County",
|
| 1777 |
+
"Nakuru County",
|
| 1778 |
+
"Nandi",
|
| 1779 |
+
"Narok County",
|
| 1780 |
+
"Nyamira county",
|
| 1781 |
+
"Nyandarua County",
|
| 1782 |
+
"Nyeri County",
|
| 1783 |
+
"Samburu County",
|
| 1784 |
+
"Siaya County",
|
| 1785 |
+
"Taita Taveta",
|
| 1786 |
+
"Tana River County",
|
| 1787 |
+
"Tharaka - Nithi",
|
| 1788 |
+
"Trans Nzoia",
|
| 1789 |
+
"Turkana County",
|
| 1790 |
+
"Uasin Gishu County",
|
| 1791 |
+
"Vihiga County",
|
| 1792 |
+
"Wajir County",
|
| 1793 |
+
"West Pokot County"
|
| 1794 |
+
],
|
| 1795 |
+
"Kyrgyzstan": [
|
| 1796 |
+
"Batken",
|
| 1797 |
+
"Bishkek",
|
| 1798 |
+
"Chuy Region",
|
| 1799 |
+
"Issyk-Kul",
|
| 1800 |
+
"Jalal-Abad Region",
|
| 1801 |
+
"Naryn Region",
|
| 1802 |
+
"Osh City",
|
| 1803 |
+
"Osh Region",
|
| 1804 |
+
"Talas Region"
|
| 1805 |
+
],
|
| 1806 |
+
"Cambodia": [
|
| 1807 |
+
"Banteay Meanchey",
|
| 1808 |
+
"Battambang",
|
| 1809 |
+
"Kampong Cham",
|
| 1810 |
+
"Kampong Chhnang",
|
| 1811 |
+
"Kampong Speu Province",
|
| 1812 |
+
"Kampong Thom",
|
| 1813 |
+
"Kampot",
|
| 1814 |
+
"Kandal",
|
| 1815 |
+
"Kep",
|
| 1816 |
+
"Koh Kong",
|
| 1817 |
+
"Kratie",
|
| 1818 |
+
"Mondolkiri",
|
| 1819 |
+
"Pailin",
|
| 1820 |
+
"Phnom Penh",
|
| 1821 |
+
"Preah Sihanouk",
|
| 1822 |
+
"Preah Vihear",
|
| 1823 |
+
"Prey Veng",
|
| 1824 |
+
"Pursat",
|
| 1825 |
+
"Ratanakiri",
|
| 1826 |
+
"Siem Reap",
|
| 1827 |
+
"Stung Treng",
|
| 1828 |
+
"Svay Rieng",
|
| 1829 |
+
"Takeo",
|
| 1830 |
+
"Tboung Khmum",
|
| 1831 |
+
"Ŏtâr Méanchey"
|
| 1832 |
+
],
|
| 1833 |
+
"Kiribati": [
|
| 1834 |
+
"Gilbert Islands",
|
| 1835 |
+
"Line Islands",
|
| 1836 |
+
"Phoenix Islands"
|
| 1837 |
+
],
|
| 1838 |
+
"Comoros": [
|
| 1839 |
+
"Anjouan",
|
| 1840 |
+
"Grande Comore",
|
| 1841 |
+
"Mohéli"
|
| 1842 |
+
],
|
| 1843 |
+
"Saint Kitts and Nevis": [
|
| 1844 |
+
"Christ Church Nichola Town",
|
| 1845 |
+
"Middle Island",
|
| 1846 |
+
"Saint Anne Sandy Point",
|
| 1847 |
+
"Saint George Basseterre",
|
| 1848 |
+
"Saint George Gingerland",
|
| 1849 |
+
"Saint James Windwa",
|
| 1850 |
+
"Saint John Capesterre",
|
| 1851 |
+
"Saint John Figtree",
|
| 1852 |
+
"Saint Mary Cayon",
|
| 1853 |
+
"Saint Paul Capesterre",
|
| 1854 |
+
"Saint Paul Charlestown",
|
| 1855 |
+
"Saint Peter Basseterre",
|
| 1856 |
+
"Saint Thomas Lowland",
|
| 1857 |
+
"Trinity Palmetto Point"
|
| 1858 |
+
],
|
| 1859 |
+
"North Korea": [
|
| 1860 |
+
"Chagang",
|
| 1861 |
+
"Kaesong",
|
| 1862 |
+
"Kangwŏn-do",
|
| 1863 |
+
"Nampo",
|
| 1864 |
+
"North Hamgyong",
|
| 1865 |
+
"North Hwanghae",
|
| 1866 |
+
"P'yŏngan-bukto",
|
| 1867 |
+
"Pyongyang",
|
| 1868 |
+
"Rason",
|
| 1869 |
+
"South Hamgyong",
|
| 1870 |
+
"South Hwanghae",
|
| 1871 |
+
"South Pyongan",
|
| 1872 |
+
"Yanggang-do"
|
| 1873 |
+
],
|
| 1874 |
+
"South Korea": [
|
| 1875 |
+
"Busan",
|
| 1876 |
+
"Chungcheongnam-do",
|
| 1877 |
+
"Daegu",
|
| 1878 |
+
"Daejeon",
|
| 1879 |
+
"Gangwon-do",
|
| 1880 |
+
"Gwangju",
|
| 1881 |
+
"Gyeonggi-do",
|
| 1882 |
+
"Gyeongsangbuk-do",
|
| 1883 |
+
"Gyeongsangnam-do",
|
| 1884 |
+
"Incheon",
|
| 1885 |
+
"Jeju-do",
|
| 1886 |
+
"Jeollabuk-do",
|
| 1887 |
+
"Jeollanam-do",
|
| 1888 |
+
"North Chungcheong",
|
| 1889 |
+
"Sejong-si",
|
| 1890 |
+
"Seoul",
|
| 1891 |
+
"Ulsan"
|
| 1892 |
+
],
|
| 1893 |
+
"Kuwait": [
|
| 1894 |
+
"Al Asimah",
|
| 1895 |
+
"Al Aḩmadī",
|
| 1896 |
+
"Al Farwaniyah",
|
| 1897 |
+
"Al Jahra Governorate",
|
| 1898 |
+
"Hawalli",
|
| 1899 |
+
"Mubārak al Kabīr"
|
| 1900 |
+
],
|
| 1901 |
+
"Cayman Islands": [
|
| 1902 |
+
"Bodden Town",
|
| 1903 |
+
"East End",
|
| 1904 |
+
"George Town",
|
| 1905 |
+
"North Side",
|
| 1906 |
+
"Sister Island",
|
| 1907 |
+
"West Bay"
|
| 1908 |
+
],
|
| 1909 |
+
"Kazakhstan": [
|
| 1910 |
+
"Abai Region",
|
| 1911 |
+
"Aktyubinskaya Oblast’",
|
| 1912 |
+
"Almaty",
|
| 1913 |
+
"Almaty Region",
|
| 1914 |
+
"Aqmola",
|
| 1915 |
+
"Astana",
|
| 1916 |
+
"Atyrau Oblisi",
|
| 1917 |
+
"Baikonur",
|
| 1918 |
+
"Batys Qazaqstan",
|
| 1919 |
+
"East Kazakhstan",
|
| 1920 |
+
"Jetisu Region",
|
| 1921 |
+
"Karaganda",
|
| 1922 |
+
"Mangghystaū",
|
| 1923 |
+
"North Kazakhstan",
|
| 1924 |
+
"Pavlodar Region",
|
| 1925 |
+
"Qostanay",
|
| 1926 |
+
"Qyzylorda",
|
| 1927 |
+
"Shymkent",
|
| 1928 |
+
"Turkistan",
|
| 1929 |
+
"Ulytau Region",
|
| 1930 |
+
"Zhambyl"
|
| 1931 |
+
],
|
| 1932 |
+
"Laos": [
|
| 1933 |
+
"Attapu",
|
| 1934 |
+
"Bokeo",
|
| 1935 |
+
"Bolikhamsai",
|
| 1936 |
+
"Champasak Province",
|
| 1937 |
+
"Houaphan",
|
| 1938 |
+
"Khammouane Province",
|
| 1939 |
+
"Loungnamtha",
|
| 1940 |
+
"Luang Prabang Province",
|
| 1941 |
+
"Oudômxai",
|
| 1942 |
+
"Phôngsali",
|
| 1943 |
+
"Salavan Province",
|
| 1944 |
+
"Savannakhet Province",
|
| 1945 |
+
"Vientiane",
|
| 1946 |
+
"Vientiane Prefecture",
|
| 1947 |
+
"Xaisomboun",
|
| 1948 |
+
"Xiagnabouli",
|
| 1949 |
+
"Xiangkhoang",
|
| 1950 |
+
"Xékong"
|
| 1951 |
+
],
|
| 1952 |
+
"Lebanon": [
|
| 1953 |
+
"Aakkâr",
|
| 1954 |
+
"Baalbek-Hermel Governorate",
|
| 1955 |
+
"Beyrouth",
|
| 1956 |
+
"Béqaa",
|
| 1957 |
+
"Liban-Nord",
|
| 1958 |
+
"Mont-Liban",
|
| 1959 |
+
"Nabatîyé",
|
| 1960 |
+
"South Governorate"
|
| 1961 |
+
],
|
| 1962 |
+
"Saint Lucia": [
|
| 1963 |
+
"Anse-la-Raye",
|
| 1964 |
+
"Canaries",
|
| 1965 |
+
"Castries",
|
| 1966 |
+
"Choiseul",
|
| 1967 |
+
"Dennery",
|
| 1968 |
+
"Gros-Islet",
|
| 1969 |
+
"Laborie",
|
| 1970 |
+
"Micoud",
|
| 1971 |
+
"Soufrière",
|
| 1972 |
+
"Vieux-Fort"
|
| 1973 |
+
],
|
| 1974 |
+
"Liechtenstein": [
|
| 1975 |
+
"Balzers",
|
| 1976 |
+
"Eschen",
|
| 1977 |
+
"Gamprin",
|
| 1978 |
+
"Mauren",
|
| 1979 |
+
"Planken",
|
| 1980 |
+
"Ruggell",
|
| 1981 |
+
"Schaan",
|
| 1982 |
+
"Schellenberg",
|
| 1983 |
+
"Triesen",
|
| 1984 |
+
"Triesenberg",
|
| 1985 |
+
"Vaduz"
|
| 1986 |
+
],
|
| 1987 |
+
"Sri Lanka": [
|
| 1988 |
+
"Central Province",
|
| 1989 |
+
"Eastern Province",
|
| 1990 |
+
"North Central Province",
|
| 1991 |
+
"North Western Province",
|
| 1992 |
+
"Northern Province",
|
| 1993 |
+
"Sabaragamuwa Province",
|
| 1994 |
+
"Southern Province",
|
| 1995 |
+
"Uva Province",
|
| 1996 |
+
"Western Province"
|
| 1997 |
+
],
|
| 1998 |
+
"Liberia": [
|
| 1999 |
+
"Bomi County",
|
| 2000 |
+
"Bong County",
|
| 2001 |
+
"Gbarpolu County",
|
| 2002 |
+
"Grand Bassa County",
|
| 2003 |
+
"Grand Cape Mount County",
|
| 2004 |
+
"Grand Gedeh County",
|
| 2005 |
+
"Grand Kru County",
|
| 2006 |
+
"Lofa County",
|
| 2007 |
+
"Margibi County",
|
| 2008 |
+
"Maryland County",
|
| 2009 |
+
"Montserrado County",
|
| 2010 |
+
"Nimba",
|
| 2011 |
+
"River Cess County",
|
| 2012 |
+
"River Gee County",
|
| 2013 |
+
"Sinoe County"
|
| 2014 |
+
],
|
| 2015 |
+
"Lesotho": [
|
| 2016 |
+
"Berea",
|
| 2017 |
+
"Butha-Buthe",
|
| 2018 |
+
"Leribe",
|
| 2019 |
+
"Mafeteng District",
|
| 2020 |
+
"Maseru District",
|
| 2021 |
+
"Mohale's Hoek District",
|
| 2022 |
+
"Mokhotlong District",
|
| 2023 |
+
"Qacha's Nek District",
|
| 2024 |
+
"Quthing",
|
| 2025 |
+
"Thaba-Tseka"
|
| 2026 |
+
],
|
| 2027 |
+
"Lithuania": [
|
| 2028 |
+
"Alytus",
|
| 2029 |
+
"Kaunas",
|
| 2030 |
+
"Klaipėda County",
|
| 2031 |
+
"Marijampolė County",
|
| 2032 |
+
"Panevėžys",
|
| 2033 |
+
"Siauliai",
|
| 2034 |
+
"Tauragė County",
|
| 2035 |
+
"Telsiai",
|
| 2036 |
+
"Utena",
|
| 2037 |
+
"Vilnius"
|
| 2038 |
+
],
|
| 2039 |
+
"Luxembourg": [
|
| 2040 |
+
"Capellen",
|
| 2041 |
+
"Clervaux",
|
| 2042 |
+
"Diekirch",
|
| 2043 |
+
"Echternach",
|
| 2044 |
+
"Esch-sur-Alzette",
|
| 2045 |
+
"Grevenmacher",
|
| 2046 |
+
"Luxembourg",
|
| 2047 |
+
"Mersch",
|
| 2048 |
+
"Redange",
|
| 2049 |
+
"Remich",
|
| 2050 |
+
"Vianden",
|
| 2051 |
+
"Wiltz"
|
| 2052 |
+
],
|
| 2053 |
+
"Latvia": [
|
| 2054 |
+
"Aizkraukle Municipality",
|
| 2055 |
+
"Alūksne Municipality",
|
| 2056 |
+
"Augšdaugava Municipality",
|
| 2057 |
+
"Balvi Municipality",
|
| 2058 |
+
"Bauska Municipality",
|
| 2059 |
+
"Cēsis Municipality",
|
| 2060 |
+
"Daugavpils",
|
| 2061 |
+
"Dobele Municipality",
|
| 2062 |
+
"Gulbene Municipality",
|
| 2063 |
+
"Jelgava",
|
| 2064 |
+
"Jelgava Municipality",
|
| 2065 |
+
"Jēkabpils Municipality",
|
| 2066 |
+
"Jūrmala",
|
| 2067 |
+
"Krāslava Municipality",
|
| 2068 |
+
"Kuldīga Municipality",
|
| 2069 |
+
"Liepāja",
|
| 2070 |
+
"Limbaži Municipality",
|
| 2071 |
+
"Ludza Municipality",
|
| 2072 |
+
"Līvāni",
|
| 2073 |
+
"Madona Municipality",
|
| 2074 |
+
"Mārupe",
|
| 2075 |
+
"Ogre",
|
| 2076 |
+
"Olaine",
|
| 2077 |
+
"Preiļu novads",
|
| 2078 |
+
"Riga",
|
| 2079 |
+
"Ropaži Municipality",
|
| 2080 |
+
"Rēzekne",
|
| 2081 |
+
"Rēzekne Municipality",
|
| 2082 |
+
"Salaspils Municipality",
|
| 2083 |
+
"Saldus Rajons",
|
| 2084 |
+
"Saulkrasti Municipality",
|
| 2085 |
+
"Sigulda Municipality",
|
| 2086 |
+
"Smiltene Municipality",
|
| 2087 |
+
"South Kurzeme Municipality",
|
| 2088 |
+
"Talsi Municipality",
|
| 2089 |
+
"Tukums Municipality",
|
| 2090 |
+
"Valka",
|
| 2091 |
+
"Valmiera",
|
| 2092 |
+
"Varakļāni Municipality",
|
| 2093 |
+
"Ventspils",
|
| 2094 |
+
"Ventspils Municipality",
|
| 2095 |
+
"Ādaži",
|
| 2096 |
+
"Ķekava"
|
| 2097 |
+
],
|
| 2098 |
+
"Libya": [
|
| 2099 |
+
"Al Buţnān",
|
| 2100 |
+
"Al Jabal al Akhḑar",
|
| 2101 |
+
"Al Jafārah",
|
| 2102 |
+
"Al Jufrah",
|
| 2103 |
+
"Al Kufrah",
|
| 2104 |
+
"Al Marj",
|
| 2105 |
+
"Al Marqab",
|
| 2106 |
+
"Al Wāḩāt",
|
| 2107 |
+
"An Nuqāţ al Khams",
|
| 2108 |
+
"Ash Shāţiʼ",
|
| 2109 |
+
"Az Zāwiyah",
|
| 2110 |
+
"Banghāzī",
|
| 2111 |
+
"Darnah",
|
| 2112 |
+
"Ghāt",
|
| 2113 |
+
"Jabal al Gharbi",
|
| 2114 |
+
"Mişrātah",
|
| 2115 |
+
"Murzuq District",
|
| 2116 |
+
"Nālūt",
|
| 2117 |
+
"Sabha District",
|
| 2118 |
+
"Surt",
|
| 2119 |
+
"Tripoli",
|
| 2120 |
+
"Wādī al Ḩayāt"
|
| 2121 |
+
],
|
| 2122 |
+
"Morocco": [
|
| 2123 |
+
"Béni Mellal-Khénifra",
|
| 2124 |
+
"Casablanca-Settat",
|
| 2125 |
+
"Dakhla-Oued Ed-Dahab",
|
| 2126 |
+
"Drâa-Tafilalet",
|
| 2127 |
+
"Fès-Meknès",
|
| 2128 |
+
"Guelmim-Oued Noun",
|
| 2129 |
+
"Laâyoune-Sakia El Hamra",
|
| 2130 |
+
"Marrakesh-Safi",
|
| 2131 |
+
"Oriental",
|
| 2132 |
+
"Rabat-Salé-Kénitra",
|
| 2133 |
+
"Souss-Massa",
|
| 2134 |
+
"Tanger-Tetouan-Al Hoceima"
|
| 2135 |
+
],
|
| 2136 |
+
"Monaco": [
|
| 2137 |
+
"Municipality of Monaco"
|
| 2138 |
+
],
|
| 2139 |
+
"Moldova": [
|
| 2140 |
+
"Anenii Noi",
|
| 2141 |
+
"Basarabeasca",
|
| 2142 |
+
"Bender Municipality",
|
| 2143 |
+
"Briceni",
|
| 2144 |
+
"Bălţi",
|
| 2145 |
+
"Cahul",
|
| 2146 |
+
"Cantemir",
|
| 2147 |
+
"Chișinău Municipality",
|
| 2148 |
+
"Cimişlia",
|
| 2149 |
+
"Criuleni",
|
| 2150 |
+
"Călăraşi",
|
| 2151 |
+
"Căuşeni",
|
| 2152 |
+
"Donduşeni",
|
| 2153 |
+
"Drochia",
|
| 2154 |
+
"Dubăsari District",
|
| 2155 |
+
"Floreşti",
|
| 2156 |
+
"Fălești",
|
| 2157 |
+
"Gagauzia",
|
| 2158 |
+
"Glodeni",
|
| 2159 |
+
"Hînceşti",
|
| 2160 |
+
"Ialoveni",
|
| 2161 |
+
"Leova",
|
| 2162 |
+
"Nisporeni",
|
| 2163 |
+
"Orhei",
|
| 2164 |
+
"Raionul Edineţ",
|
| 2165 |
+
"Raionul Ocniţa",
|
| 2166 |
+
"Rezina",
|
| 2167 |
+
"Rîşcani",
|
| 2168 |
+
"Soroca District",
|
| 2169 |
+
"Strășeni",
|
| 2170 |
+
"Sîngerei",
|
| 2171 |
+
"Taraclia",
|
| 2172 |
+
"Teleneşti",
|
| 2173 |
+
"Transnistria",
|
| 2174 |
+
"Ungheni",
|
| 2175 |
+
"Şoldăneşti",
|
| 2176 |
+
"Ştefan-Vodă"
|
| 2177 |
+
],
|
| 2178 |
+
"Montenegro": [
|
| 2179 |
+
"Andrijevica",
|
| 2180 |
+
"Bar",
|
| 2181 |
+
"Berane",
|
| 2182 |
+
"Bijelo Polje",
|
| 2183 |
+
"Budva",
|
| 2184 |
+
"Cetinje",
|
| 2185 |
+
"Danilovgrad",
|
| 2186 |
+
"Gusinje Municipality",
|
| 2187 |
+
"Herceg Novi",
|
| 2188 |
+
"Kotor",
|
| 2189 |
+
"Mojkovac",
|
| 2190 |
+
"Opština Kolašin",
|
| 2191 |
+
"Opština Nikšić",
|
| 2192 |
+
"Opština Plav",
|
| 2193 |
+
"Opština Plužine",
|
| 2194 |
+
"Opština Šavnik",
|
| 2195 |
+
"Opština Žabljak",
|
| 2196 |
+
"Petnjica Municipality",
|
| 2197 |
+
"Pljevlja",
|
| 2198 |
+
"Podgorica",
|
| 2199 |
+
"Rožaje Municipality",
|
| 2200 |
+
"Tivat",
|
| 2201 |
+
"Tuzi Municipality",
|
| 2202 |
+
"Ulcinj",
|
| 2203 |
+
"Zeta"
|
| 2204 |
+
],
|
| 2205 |
+
"Madagascar": [
|
| 2206 |
+
"Alaotra Mangoro",
|
| 2207 |
+
"Amoron'i Mania",
|
| 2208 |
+
"Analamanga",
|
| 2209 |
+
"Analanjirofo",
|
| 2210 |
+
"Androy",
|
| 2211 |
+
"Anosy",
|
| 2212 |
+
"Atsimo-Andrefana",
|
| 2213 |
+
"Atsimo-Atsinanana",
|
| 2214 |
+
"Atsinanana",
|
| 2215 |
+
"Betsiboka",
|
| 2216 |
+
"Boeny",
|
| 2217 |
+
"Bongolava",
|
| 2218 |
+
"Diana",
|
| 2219 |
+
"Fitovinany Region",
|
| 2220 |
+
"Ihorombe",
|
| 2221 |
+
"Itasy",
|
| 2222 |
+
"Melaky",
|
| 2223 |
+
"Menabe",
|
| 2224 |
+
"Sava",
|
| 2225 |
+
"Sofia",
|
| 2226 |
+
"Upper Matsiatra",
|
| 2227 |
+
"Vakinankaratra",
|
| 2228 |
+
"Vatovavy Region"
|
| 2229 |
+
],
|
| 2230 |
+
"Marshall Islands": [
|
| 2231 |
+
"Ailinginae Atoll",
|
| 2232 |
+
"Ailinglaplap Atoll",
|
| 2233 |
+
"Ailuk Atoll",
|
| 2234 |
+
"Arno Atoll",
|
| 2235 |
+
"Aur Atoll",
|
| 2236 |
+
"Bikar Atoll",
|
| 2237 |
+
"Bikini Atoll",
|
| 2238 |
+
"Bokak Atoll",
|
| 2239 |
+
"Ebon Atoll",
|
| 2240 |
+
"Enewetak Atoll",
|
| 2241 |
+
"Erikub Atoll",
|
| 2242 |
+
"Jabat Island",
|
| 2243 |
+
"Jaluit Atoll",
|
| 2244 |
+
"Jemo Island",
|
| 2245 |
+
"Kili Island",
|
| 2246 |
+
"Kwajalein Atoll",
|
| 2247 |
+
"Lae Atoll",
|
| 2248 |
+
"Lib Island",
|
| 2249 |
+
"Likiep Atoll",
|
| 2250 |
+
"Majuro Atoll",
|
| 2251 |
+
"Maloelap Atoll",
|
| 2252 |
+
"Mejit Island",
|
| 2253 |
+
"Mili Atoll",
|
| 2254 |
+
"Namdrik Atoll",
|
| 2255 |
+
"Namu Atoll",
|
| 2256 |
+
"Rongelap Atoll",
|
| 2257 |
+
"Rongrik Atoll",
|
| 2258 |
+
"Taka Atoll",
|
| 2259 |
+
"Ujae Atoll",
|
| 2260 |
+
"Ujelang",
|
| 2261 |
+
"Utrik Atoll",
|
| 2262 |
+
"Wotho Atoll",
|
| 2263 |
+
"Wotje Atoll"
|
| 2264 |
+
],
|
| 2265 |
+
"North Macedonia": [
|
| 2266 |
+
"Arachinovo",
|
| 2267 |
+
"Berovo",
|
| 2268 |
+
"Bitola",
|
| 2269 |
+
"Bogdanci",
|
| 2270 |
+
"Bogovinje",
|
| 2271 |
+
"Bosilovo",
|
| 2272 |
+
"Brvenica",
|
| 2273 |
+
"Centar Zhupa",
|
| 2274 |
+
"Chashka",
|
| 2275 |
+
"Chucher Sandevo",
|
| 2276 |
+
"Debar",
|
| 2277 |
+
"Debarca",
|
| 2278 |
+
"Delchevo",
|
| 2279 |
+
"Demir Hisar",
|
| 2280 |
+
"Demir Kapija",
|
| 2281 |
+
"Dojran",
|
| 2282 |
+
"Dolneni",
|
| 2283 |
+
"Gevgelija",
|
| 2284 |
+
"Gostivar",
|
| 2285 |
+
"Grad Skopje",
|
| 2286 |
+
"Gradsko",
|
| 2287 |
+
"Ilinden",
|
| 2288 |
+
"Jegunovce",
|
| 2289 |
+
"Karbinci",
|
| 2290 |
+
"Kavadarci",
|
| 2291 |
+
"Kichevo",
|
| 2292 |
+
"Kochani",
|
| 2293 |
+
"Konche",
|
| 2294 |
+
"Kratovo",
|
| 2295 |
+
"Kriva Palanka",
|
| 2296 |
+
"Krivogashtani",
|
| 2297 |
+
"Krushevo",
|
| 2298 |
+
"Kumanovo",
|
| 2299 |
+
"Lipkovo",
|
| 2300 |
+
"Lozovo",
|
| 2301 |
+
"Makedonska Kamenica",
|
| 2302 |
+
"Makedonski Brod",
|
| 2303 |
+
"Mavrovo and Rostuša",
|
| 2304 |
+
"Mogila",
|
| 2305 |
+
"Negotino",
|
| 2306 |
+
"Novaci",
|
| 2307 |
+
"Novo Selo",
|
| 2308 |
+
"Ohrid",
|
| 2309 |
+
"Pehchevo",
|
| 2310 |
+
"Petrovec",
|
| 2311 |
+
"Plasnica",
|
| 2312 |
+
"Prilep",
|
| 2313 |
+
"Probishtip",
|
| 2314 |
+
"Radovish",
|
| 2315 |
+
"Rankovce",
|
| 2316 |
+
"Resen",
|
| 2317 |
+
"Rosoman",
|
| 2318 |
+
"Shtip",
|
| 2319 |
+
"Sopište",
|
| 2320 |
+
"Staro Nagorichane",
|
| 2321 |
+
"Struga",
|
| 2322 |
+
"Strumica",
|
| 2323 |
+
"Studenichani",
|
| 2324 |
+
"Sveti Nikole",
|
| 2325 |
+
"Tearce",
|
| 2326 |
+
"Tetovo",
|
| 2327 |
+
"Valandovo",
|
| 2328 |
+
"Vasilevo",
|
| 2329 |
+
"Veles",
|
| 2330 |
+
"Vevchani",
|
| 2331 |
+
"Vinica",
|
| 2332 |
+
"Vrapchishte",
|
| 2333 |
+
"Zelenikovo",
|
| 2334 |
+
"Zhelino",
|
| 2335 |
+
"Zrnovci",
|
| 2336 |
+
"Češinovo-Obleševo"
|
| 2337 |
+
],
|
| 2338 |
+
"Mali": [
|
| 2339 |
+
"Bamako",
|
| 2340 |
+
"Gao",
|
| 2341 |
+
"Kayes",
|
| 2342 |
+
"Kidal",
|
| 2343 |
+
"Koulikoro",
|
| 2344 |
+
"Mopti",
|
| 2345 |
+
"Ménaka",
|
| 2346 |
+
"Sikasso",
|
| 2347 |
+
"Ségou",
|
| 2348 |
+
"Taoudénit",
|
| 2349 |
+
"Tombouctou"
|
| 2350 |
+
],
|
| 2351 |
+
"Myanmar": [
|
| 2352 |
+
"Ayeyarwady",
|
| 2353 |
+
"Bago Region",
|
| 2354 |
+
"Chin State",
|
| 2355 |
+
"Kachin State",
|
| 2356 |
+
"Kayah State",
|
| 2357 |
+
"Kayin State",
|
| 2358 |
+
"Magway",
|
| 2359 |
+
"Mandalay Region",
|
| 2360 |
+
"Mon",
|
| 2361 |
+
"Nay Pyi Taw",
|
| 2362 |
+
"Rakhine",
|
| 2363 |
+
"Sagaing Region",
|
| 2364 |
+
"Shan State",
|
| 2365 |
+
"Tanintharyi Region",
|
| 2366 |
+
"Yangon"
|
| 2367 |
+
],
|
| 2368 |
+
"Mongolia": [
|
| 2369 |
+
"Arkhangai Province",
|
| 2370 |
+
"Bayan-Ölgii Province",
|
| 2371 |
+
"Bayanhongor",
|
| 2372 |
+
"Bulgan",
|
| 2373 |
+
"Central Aimak",
|
| 2374 |
+
"Darhan Uul",
|
| 2375 |
+
"Dzabkhan",
|
| 2376 |
+
"East Aimak",
|
| 2377 |
+
"East Gobi Aymag",
|
| 2378 |
+
"Govi-Altai Province",
|
| 2379 |
+
"Govĭ-Sumber",
|
| 2380 |
+
"Hentiy",
|
| 2381 |
+
"Hovd",
|
| 2382 |
+
"Khövsgöl Province",
|
| 2383 |
+
"Middle Govĭ",
|
| 2384 |
+
"Orhon",
|
| 2385 |
+
"Selenge Province",
|
| 2386 |
+
"Sühbaatar",
|
| 2387 |
+
"Ulaanbaatar",
|
| 2388 |
+
"Uvs Province",
|
| 2389 |
+
"Ömnögovĭ",
|
| 2390 |
+
"Övörhangay"
|
| 2391 |
+
],
|
| 2392 |
+
"Macao": [
|
| 2393 |
+
"Cotai",
|
| 2394 |
+
"Nossa Senhora de Fátima",
|
| 2395 |
+
"Nossa Senhora do Carmo",
|
| 2396 |
+
"Santo António",
|
| 2397 |
+
"São Francisco Xavier",
|
| 2398 |
+
"São Lourenço",
|
| 2399 |
+
"São Lázaro",
|
| 2400 |
+
"Sé"
|
| 2401 |
+
],
|
| 2402 |
+
"Northern Mariana Islands": [
|
| 2403 |
+
"Northern Islands",
|
| 2404 |
+
"Rota",
|
| 2405 |
+
"Saipan",
|
| 2406 |
+
"Tinian"
|
| 2407 |
+
],
|
| 2408 |
+
"Martinique": [
|
| 2409 |
+
"Martinique"
|
| 2410 |
+
],
|
| 2411 |
+
"Mauritania": [
|
| 2412 |
+
"Adrar",
|
| 2413 |
+
"Assaba",
|
| 2414 |
+
"Brakna",
|
| 2415 |
+
"Dakhlet Nouadhibou",
|
| 2416 |
+
"Gorgol",
|
| 2417 |
+
"Guidimaka",
|
| 2418 |
+
"Hodh Ech Chargi",
|
| 2419 |
+
"Hodh El Gharbi",
|
| 2420 |
+
"Inchiri",
|
| 2421 |
+
"Nouakchott Nord",
|
| 2422 |
+
"Nouakchott Ouest",
|
| 2423 |
+
"Nouakchott Sud",
|
| 2424 |
+
"Tagant",
|
| 2425 |
+
"Tiris Zemmour",
|
| 2426 |
+
"Trarza"
|
| 2427 |
+
],
|
| 2428 |
+
"Montserrat": [
|
| 2429 |
+
"Saint Anthony",
|
| 2430 |
+
"Saint Georges",
|
| 2431 |
+
"Saint Peter"
|
| 2432 |
+
],
|
| 2433 |
+
"Malta": [
|
| 2434 |
+
"Attard",
|
| 2435 |
+
"Balzan",
|
| 2436 |
+
"Birkirkara",
|
| 2437 |
+
"Birżebbuġa",
|
| 2438 |
+
"Bormla",
|
| 2439 |
+
"Dingli",
|
| 2440 |
+
"Floriana",
|
| 2441 |
+
"Għajnsielem",
|
| 2442 |
+
"Il-Birgu",
|
| 2443 |
+
"Il-Fgura",
|
| 2444 |
+
"Il-Fontana",
|
| 2445 |
+
"Il-Gudja",
|
| 2446 |
+
"Il-Gżira",
|
| 2447 |
+
"Il-Kalkara",
|
| 2448 |
+
"Il-Marsa",
|
| 2449 |
+
"Il-Mellieħa",
|
| 2450 |
+
"Il-Mosta",
|
| 2451 |
+
"Il-Munxar",
|
| 2452 |
+
"Il-Qala",
|
| 2453 |
+
"Il-Qrendi",
|
| 2454 |
+
"Il-Ħamrun",
|
| 2455 |
+
"In-Nadur",
|
| 2456 |
+
"In-Naxxar",
|
| 2457 |
+
"Ir-Rabat",
|
| 2458 |
+
"Is-Siġġiewi",
|
| 2459 |
+
"Is-Swieqi",
|
| 2460 |
+
"Ix-Xagħra",
|
| 2461 |
+
"Ix-Xewkija",
|
| 2462 |
+
"Ix-Xgħajra",
|
| 2463 |
+
"Iż-Żebbuġ",
|
| 2464 |
+
"Iż-Żejtun",
|
| 2465 |
+
"Iż-Żurrieq",
|
| 2466 |
+
"Kirkop",
|
| 2467 |
+
"L-Għarb",
|
| 2468 |
+
"L-Għasri",
|
| 2469 |
+
"L-Iklin",
|
| 2470 |
+
"L-Imdina",
|
| 2471 |
+
"L-Imqabba",
|
| 2472 |
+
"L-Imsida",
|
| 2473 |
+
"L-Imġarr",
|
| 2474 |
+
"Lija",
|
| 2475 |
+
"Luqa",
|
| 2476 |
+
"Marsaskala",
|
| 2477 |
+
"Marsaxlokk",
|
| 2478 |
+
"Mtarfa",
|
| 2479 |
+
"Paola",
|
| 2480 |
+
"Pembroke",
|
| 2481 |
+
"Qormi",
|
| 2482 |
+
"Safi",
|
| 2483 |
+
"Saint John",
|
| 2484 |
+
"Saint Julian",
|
| 2485 |
+
"Saint Lawrence",
|
| 2486 |
+
"Saint Lucia",
|
| 2487 |
+
"Saint Paul’s Bay",
|
| 2488 |
+
"Saint Venera",
|
| 2489 |
+
"Sannat",
|
| 2490 |
+
"Senglea",
|
| 2491 |
+
"Tal-Pietà",
|
| 2492 |
+
"Tarxien",
|
| 2493 |
+
"Tas-Sliema",
|
| 2494 |
+
"Ta’ Kerċem",
|
| 2495 |
+
"Ta’ Xbiex",
|
| 2496 |
+
"Valletta",
|
| 2497 |
+
"Victoria",
|
| 2498 |
+
"Ħal Għargħur",
|
| 2499 |
+
"Ħal Għaxaq",
|
| 2500 |
+
"Ħaż-Żabbar",
|
| 2501 |
+
"Ħaż-Żebbuġ"
|
| 2502 |
+
],
|
| 2503 |
+
"Mauritius": [
|
| 2504 |
+
"Agalega Islands",
|
| 2505 |
+
"Black River",
|
| 2506 |
+
"Cargados Carajos",
|
| 2507 |
+
"Flacq",
|
| 2508 |
+
"Grand Port",
|
| 2509 |
+
"Moka",
|
| 2510 |
+
"Pamplemousses",
|
| 2511 |
+
"Plaines Wilhems",
|
| 2512 |
+
"Port Louis",
|
| 2513 |
+
"Rivière du Rempart",
|
| 2514 |
+
"Rodrigues",
|
| 2515 |
+
"Savanne"
|
| 2516 |
+
],
|
| 2517 |
+
"Maldives": [
|
| 2518 |
+
"Baa Atholhu",
|
| 2519 |
+
"Dhaalu Atholhu",
|
| 2520 |
+
"Faadhippolhu Atoll",
|
| 2521 |
+
"Faafu Atholhu",
|
| 2522 |
+
"Gaafu Alif Atoll",
|
| 2523 |
+
"Gaafu Dhaalu Atoll",
|
| 2524 |
+
"Gnyaviyani Atoll",
|
| 2525 |
+
"Haa Alifu Atholhu",
|
| 2526 |
+
"Haa Dhaalu Atholhu",
|
| 2527 |
+
"Kaafu Atoll",
|
| 2528 |
+
"Laamu",
|
| 2529 |
+
"Male",
|
| 2530 |
+
"Meemu Atholhu",
|
| 2531 |
+
"Noonu Atoll",
|
| 2532 |
+
"Northern Ari Atoll",
|
| 2533 |
+
"Raa Atoll",
|
| 2534 |
+
"Seenu",
|
| 2535 |
+
"Shaviyani Atholhu",
|
| 2536 |
+
"Southern Ari Atoll",
|
| 2537 |
+
"Thaa Atholhu",
|
| 2538 |
+
"Vaavu Atholhu"
|
| 2539 |
+
],
|
| 2540 |
+
"Malawi": [
|
| 2541 |
+
"Central Region",
|
| 2542 |
+
"Northern Region",
|
| 2543 |
+
"Southern Region"
|
| 2544 |
+
],
|
| 2545 |
+
"Mexico": [
|
| 2546 |
+
"Aguascalientes",
|
| 2547 |
+
"Baja California",
|
| 2548 |
+
"Baja California Sur",
|
| 2549 |
+
"Campeche",
|
| 2550 |
+
"Chiapas",
|
| 2551 |
+
"Chihuahua",
|
| 2552 |
+
"Coahuila",
|
| 2553 |
+
"Colima",
|
| 2554 |
+
"Durango",
|
| 2555 |
+
"Guanajuato",
|
| 2556 |
+
"Guerrero",
|
| 2557 |
+
"Hidalgo",
|
| 2558 |
+
"Jalisco",
|
| 2559 |
+
"Mexico City",
|
| 2560 |
+
"Michoacán",
|
| 2561 |
+
"Morelos",
|
| 2562 |
+
"México",
|
| 2563 |
+
"Nayarit",
|
| 2564 |
+
"Nuevo León",
|
| 2565 |
+
"Oaxaca",
|
| 2566 |
+
"Puebla",
|
| 2567 |
+
"Querétaro",
|
| 2568 |
+
"Quintana Roo",
|
| 2569 |
+
"San Luis Potosí",
|
| 2570 |
+
"Sinaloa",
|
| 2571 |
+
"Sonora",
|
| 2572 |
+
"Tabasco",
|
| 2573 |
+
"Tamaulipas",
|
| 2574 |
+
"Tlaxcala",
|
| 2575 |
+
"Veracruz",
|
| 2576 |
+
"Yucatán",
|
| 2577 |
+
"Zacatecas"
|
| 2578 |
+
],
|
| 2579 |
+
"Malaysia": [
|
| 2580 |
+
"Johor",
|
| 2581 |
+
"Kedah",
|
| 2582 |
+
"Kelantan",
|
| 2583 |
+
"Kuala Lumpur",
|
| 2584 |
+
"Labuan",
|
| 2585 |
+
"Melaka",
|
| 2586 |
+
"Negeri Sembilan",
|
| 2587 |
+
"Pahang",
|
| 2588 |
+
"Penang",
|
| 2589 |
+
"Perak",
|
| 2590 |
+
"Perlis",
|
| 2591 |
+
"Putrajaya",
|
| 2592 |
+
"Sabah",
|
| 2593 |
+
"Sarawak",
|
| 2594 |
+
"Selangor",
|
| 2595 |
+
"Terengganu"
|
| 2596 |
+
],
|
| 2597 |
+
"Mozambique": [
|
| 2598 |
+
"Cabo Delgado Province",
|
| 2599 |
+
"Gaza Province",
|
| 2600 |
+
"Inhambane Province",
|
| 2601 |
+
"Manica",
|
| 2602 |
+
"Maputo City",
|
| 2603 |
+
"Maputo Province",
|
| 2604 |
+
"Nampula",
|
| 2605 |
+
"Niassa Province",
|
| 2606 |
+
"Sofala",
|
| 2607 |
+
"Tete",
|
| 2608 |
+
"Zambezia Province"
|
| 2609 |
+
],
|
| 2610 |
+
"Namibia": [
|
| 2611 |
+
"Erongo Region",
|
| 2612 |
+
"Hardap Region",
|
| 2613 |
+
"Karas Region",
|
| 2614 |
+
"Kavango East",
|
| 2615 |
+
"Kavango West",
|
| 2616 |
+
"Khomas Region",
|
| 2617 |
+
"Kunene Region",
|
| 2618 |
+
"Ohangwena Region",
|
| 2619 |
+
"Omaheke Region",
|
| 2620 |
+
"Omusati Region",
|
| 2621 |
+
"Oshana Region",
|
| 2622 |
+
"Oshikoto Region",
|
| 2623 |
+
"Otjozondjupa Region",
|
| 2624 |
+
"Zambezi Region"
|
| 2625 |
+
],
|
| 2626 |
+
"New Caledonia": [
|
| 2627 |
+
"Loyalty Islands",
|
| 2628 |
+
"North Province",
|
| 2629 |
+
"South Province"
|
| 2630 |
+
],
|
| 2631 |
+
"Niger": [
|
| 2632 |
+
"Agadez",
|
| 2633 |
+
"Diffa",
|
| 2634 |
+
"Dosso Region",
|
| 2635 |
+
"Maradi Region",
|
| 2636 |
+
"Niamey",
|
| 2637 |
+
"Tahoua Region",
|
| 2638 |
+
"Tillabéri Region",
|
| 2639 |
+
"Zinder Region"
|
| 2640 |
+
],
|
| 2641 |
+
"Nigeria": [
|
| 2642 |
+
"Abia State",
|
| 2643 |
+
"Adamawa",
|
| 2644 |
+
"Akwa Ibom State",
|
| 2645 |
+
"Anambra",
|
| 2646 |
+
"Bauchi",
|
| 2647 |
+
"Bayelsa State",
|
| 2648 |
+
"Benue State",
|
| 2649 |
+
"Borno State",
|
| 2650 |
+
"Cross River State",
|
| 2651 |
+
"Delta",
|
| 2652 |
+
"Ebonyi State",
|
| 2653 |
+
"Edo State",
|
| 2654 |
+
"Ekiti State",
|
| 2655 |
+
"Enugu State",
|
| 2656 |
+
"FCT",
|
| 2657 |
+
"Gombe State",
|
| 2658 |
+
"Imo State",
|
| 2659 |
+
"Jigawa State",
|
| 2660 |
+
"Kaduna State",
|
| 2661 |
+
"Kano State",
|
| 2662 |
+
"Katsina State",
|
| 2663 |
+
"Kebbi",
|
| 2664 |
+
"Kogi State",
|
| 2665 |
+
"Kwara State",
|
| 2666 |
+
"Lagos",
|
| 2667 |
+
"Nasarawa State",
|
| 2668 |
+
"Niger State",
|
| 2669 |
+
"Ogun State",
|
| 2670 |
+
"Ondo State",
|
| 2671 |
+
"Osun State",
|
| 2672 |
+
"Oyo State",
|
| 2673 |
+
"Plateau State",
|
| 2674 |
+
"Rivers State",
|
| 2675 |
+
"Sokoto",
|
| 2676 |
+
"Taraba State",
|
| 2677 |
+
"Yobe State",
|
| 2678 |
+
"Zamfara State"
|
| 2679 |
+
],
|
| 2680 |
+
"Nicaragua": [
|
| 2681 |
+
"Boaco Department",
|
| 2682 |
+
"Carazo Department",
|
| 2683 |
+
"Chinandega Department",
|
| 2684 |
+
"Chontales Department",
|
| 2685 |
+
"Estelí Department",
|
| 2686 |
+
"Granada Department",
|
| 2687 |
+
"Jinotega Department",
|
| 2688 |
+
"León Department",
|
| 2689 |
+
"Madriz Department",
|
| 2690 |
+
"Managua Department",
|
| 2691 |
+
"Masaya Department",
|
| 2692 |
+
"Matagalpa Department",
|
| 2693 |
+
"North Caribbean Coast",
|
| 2694 |
+
"Nueva Segovia Department",
|
| 2695 |
+
"Rivas Department",
|
| 2696 |
+
"Río San Juan Department",
|
| 2697 |
+
"South Caribbean Coast"
|
| 2698 |
+
],
|
| 2699 |
+
"The Netherlands": [
|
| 2700 |
+
"Drenthe",
|
| 2701 |
+
"Flevoland",
|
| 2702 |
+
"Friesland",
|
| 2703 |
+
"Gelderland",
|
| 2704 |
+
"Groningen",
|
| 2705 |
+
"Limburg",
|
| 2706 |
+
"North Brabant",
|
| 2707 |
+
"North Holland",
|
| 2708 |
+
"Overijssel",
|
| 2709 |
+
"South Holland",
|
| 2710 |
+
"Utrecht",
|
| 2711 |
+
"Zeeland"
|
| 2712 |
+
],
|
| 2713 |
+
"Norway": [
|
| 2714 |
+
"Agder",
|
| 2715 |
+
"Akershus",
|
| 2716 |
+
"Buskerud",
|
| 2717 |
+
"Finnmark",
|
| 2718 |
+
"Innlandet",
|
| 2719 |
+
"Møre og Romsdal",
|
| 2720 |
+
"Nordland",
|
| 2721 |
+
"Oslo",
|
| 2722 |
+
"Rogaland",
|
| 2723 |
+
"Telemark",
|
| 2724 |
+
"Troms",
|
| 2725 |
+
"Trøndelag",
|
| 2726 |
+
"Vestfold",
|
| 2727 |
+
"Vestland",
|
| 2728 |
+
"Østfold"
|
| 2729 |
+
],
|
| 2730 |
+
"Nepal": [
|
| 2731 |
+
"Bagmati Province",
|
| 2732 |
+
"Karnali Pradesh",
|
| 2733 |
+
"Koshi",
|
| 2734 |
+
"Lumbini Province",
|
| 2735 |
+
"Madhesh",
|
| 2736 |
+
"Province 4",
|
| 2737 |
+
"Sudurpashchim Pradesh"
|
| 2738 |
+
],
|
| 2739 |
+
"Nauru": [
|
| 2740 |
+
"Aiwo District",
|
| 2741 |
+
"Anabar District",
|
| 2742 |
+
"Anetan District",
|
| 2743 |
+
"Anibare District",
|
| 2744 |
+
"Baiti District",
|
| 2745 |
+
"Boe District",
|
| 2746 |
+
"Buada District",
|
| 2747 |
+
"Denigomodu District",
|
| 2748 |
+
"Ewa District",
|
| 2749 |
+
"Ijuw District",
|
| 2750 |
+
"Meneng District",
|
| 2751 |
+
"Nibok District",
|
| 2752 |
+
"Uaboe District",
|
| 2753 |
+
"Yaren District"
|
| 2754 |
+
],
|
| 2755 |
+
"New Zealand": [
|
| 2756 |
+
"Auckland",
|
| 2757 |
+
"Bay of Plenty",
|
| 2758 |
+
"Canterbury",
|
| 2759 |
+
"Chatham Islands",
|
| 2760 |
+
"Gisborne",
|
| 2761 |
+
"Hawke's Bay Region",
|
| 2762 |
+
"Manawatu-Wanganui",
|
| 2763 |
+
"Marlborough",
|
| 2764 |
+
"Nelson Region",
|
| 2765 |
+
"Northland",
|
| 2766 |
+
"Otago",
|
| 2767 |
+
"Southland",
|
| 2768 |
+
"Taranaki Region",
|
| 2769 |
+
"Tasman District",
|
| 2770 |
+
"Waikato Region",
|
| 2771 |
+
"Wellington Region",
|
| 2772 |
+
"West Coast"
|
| 2773 |
+
],
|
| 2774 |
+
"Oman": [
|
| 2775 |
+
"Ad Dakhiliyah",
|
| 2776 |
+
"Ad Dhahirah",
|
| 2777 |
+
"Al Batinah North",
|
| 2778 |
+
"Al Batinah South",
|
| 2779 |
+
"Al Buraimi",
|
| 2780 |
+
"Al Wusta Governorate",
|
| 2781 |
+
"Dhofar",
|
| 2782 |
+
"Musandam Governorate",
|
| 2783 |
+
"Muscat",
|
| 2784 |
+
"Northeastern Governorate",
|
| 2785 |
+
"Southeastern Governorate"
|
| 2786 |
+
],
|
| 2787 |
+
"Panama": [
|
| 2788 |
+
"Bocas del Toro Province",
|
| 2789 |
+
"Chiriquí Province",
|
| 2790 |
+
"Coclé",
|
| 2791 |
+
"Colón",
|
| 2792 |
+
"Darién",
|
| 2793 |
+
"Emberá",
|
| 2794 |
+
"Guna Yala",
|
| 2795 |
+
"Herrera Province",
|
| 2796 |
+
"Los Santos Province",
|
| 2797 |
+
"Naso Tjër Di",
|
| 2798 |
+
"Ngöbe-Buglé Comarca",
|
| 2799 |
+
"Panamá",
|
| 2800 |
+
"Panamá Oeste Province",
|
| 2801 |
+
"Veraguas Province"
|
| 2802 |
+
],
|
| 2803 |
+
"Peru": [
|
| 2804 |
+
"Amazonas",
|
| 2805 |
+
"Ancash",
|
| 2806 |
+
"Apurímac Department",
|
| 2807 |
+
"Arequipa",
|
| 2808 |
+
"Ayacucho",
|
| 2809 |
+
"Cajamarca Department",
|
| 2810 |
+
"Callao",
|
| 2811 |
+
"Cuzco Department",
|
| 2812 |
+
"Huancavelica",
|
| 2813 |
+
"Huánuco Department",
|
| 2814 |
+
"Ica",
|
| 2815 |
+
"Junin",
|
| 2816 |
+
"La Libertad",
|
| 2817 |
+
"Lambayeque",
|
| 2818 |
+
"Lima Province",
|
| 2819 |
+
"Lima region",
|
| 2820 |
+
"Loreto",
|
| 2821 |
+
"Madre de Dios",
|
| 2822 |
+
"Moquegua Department",
|
| 2823 |
+
"Pasco",
|
| 2824 |
+
"Piura",
|
| 2825 |
+
"Puno",
|
| 2826 |
+
"San Martín Department",
|
| 2827 |
+
"Tacna",
|
| 2828 |
+
"Tumbes",
|
| 2829 |
+
"Ucayali"
|
| 2830 |
+
],
|
| 2831 |
+
"French Polynesia": [
|
| 2832 |
+
"Leeward Islands",
|
| 2833 |
+
"Îles Australes",
|
| 2834 |
+
"Îles du Vent",
|
| 2835 |
+
"Îles Marquises",
|
| 2836 |
+
"Îles Tuamotu-Gambier"
|
| 2837 |
+
],
|
| 2838 |
+
"Papua New Guinea": [
|
| 2839 |
+
"Bougainville",
|
| 2840 |
+
"Central Province",
|
| 2841 |
+
"Chimbu Province",
|
| 2842 |
+
"East New Britain Province",
|
| 2843 |
+
"East Sepik Province",
|
| 2844 |
+
"Eastern Highlands Province",
|
| 2845 |
+
"Enga Province",
|
| 2846 |
+
"Gulf Province",
|
| 2847 |
+
"Hela Province",
|
| 2848 |
+
"Jiwaka Province",
|
| 2849 |
+
"Madang Province",
|
| 2850 |
+
"Manus Province",
|
| 2851 |
+
"Milne Bay Province",
|
| 2852 |
+
"Morobe Province",
|
| 2853 |
+
"National Capital",
|
| 2854 |
+
"New Ireland",
|
| 2855 |
+
"Oro Province",
|
| 2856 |
+
"Sandaun Province",
|
| 2857 |
+
"Southern Highlands Province",
|
| 2858 |
+
"West New Britain Province",
|
| 2859 |
+
"Western Highlands Province",
|
| 2860 |
+
"Western Province"
|
| 2861 |
+
],
|
| 2862 |
+
"Philippines": [
|
| 2863 |
+
"Autonomous Region in Muslim Mindanao",
|
| 2864 |
+
"Bicol Region",
|
| 2865 |
+
"Cagayan Valley",
|
| 2866 |
+
"Calabarzon",
|
| 2867 |
+
"Caraga",
|
| 2868 |
+
"Central Luzon",
|
| 2869 |
+
"Central Visayas",
|
| 2870 |
+
"Cordillera",
|
| 2871 |
+
"Davao Region",
|
| 2872 |
+
"Eastern Visayas",
|
| 2873 |
+
"Ilocos",
|
| 2874 |
+
"Metro Manila",
|
| 2875 |
+
"Mimaropa",
|
| 2876 |
+
"Northern Mindanao",
|
| 2877 |
+
"Soccsksargen",
|
| 2878 |
+
"Western Visayas",
|
| 2879 |
+
"Zamboanga Peninsula"
|
| 2880 |
+
],
|
| 2881 |
+
"Pakistan": [
|
| 2882 |
+
"Azad Kashmir",
|
| 2883 |
+
"Balochistan",
|
| 2884 |
+
"Gilgit-Baltistan",
|
| 2885 |
+
"Islamabad",
|
| 2886 |
+
"Khyber Pakhtunkhwa",
|
| 2887 |
+
"Punjab",
|
| 2888 |
+
"Sindh"
|
| 2889 |
+
],
|
| 2890 |
+
"Poland": [
|
| 2891 |
+
"Greater Poland",
|
| 2892 |
+
"Kujawsko-Pomorskie",
|
| 2893 |
+
"Lesser Poland",
|
| 2894 |
+
"Lower Silesia",
|
| 2895 |
+
"Lublin",
|
| 2896 |
+
"Lubusz",
|
| 2897 |
+
"Mazovia",
|
| 2898 |
+
"Opole Voivodeship",
|
| 2899 |
+
"Podlasie",
|
| 2900 |
+
"Pomerania",
|
| 2901 |
+
"Silesia",
|
| 2902 |
+
"Subcarpathia",
|
| 2903 |
+
"Warmia-Masuria",
|
| 2904 |
+
"West Pomerania",
|
| 2905 |
+
"Łódź Voivodeship",
|
| 2906 |
+
"Świętokrzyskie"
|
| 2907 |
+
],
|
| 2908 |
+
"Saint Pierre and Miquelon": [
|
| 2909 |
+
"Miquelon-Langlade",
|
| 2910 |
+
"Saint-Pierre"
|
| 2911 |
+
],
|
| 2912 |
+
"Puerto Rico": [
|
| 2913 |
+
"Adjuntas",
|
| 2914 |
+
"Aguada",
|
| 2915 |
+
"Aguadilla",
|
| 2916 |
+
"Aguas Buenas",
|
| 2917 |
+
"Aibonito",
|
| 2918 |
+
"Arecibo",
|
| 2919 |
+
"Arroyo",
|
| 2920 |
+
"Añasco",
|
| 2921 |
+
"Barceloneta",
|
| 2922 |
+
"Barranquitas",
|
| 2923 |
+
"Bayamón",
|
| 2924 |
+
"Cabo Rojo",
|
| 2925 |
+
"Caguas",
|
| 2926 |
+
"Camuy",
|
| 2927 |
+
"Canóvanas",
|
| 2928 |
+
"Carolina",
|
| 2929 |
+
"Cataño",
|
| 2930 |
+
"Cayey",
|
| 2931 |
+
"Ceiba",
|
| 2932 |
+
"Ciales",
|
| 2933 |
+
"Cidra",
|
| 2934 |
+
"Coamo",
|
| 2935 |
+
"Comerío",
|
| 2936 |
+
"Corozal",
|
| 2937 |
+
"Culebra",
|
| 2938 |
+
"Dorado",
|
| 2939 |
+
"Fajardo",
|
| 2940 |
+
"Florida",
|
| 2941 |
+
"Guayama",
|
| 2942 |
+
"Guayanilla",
|
| 2943 |
+
"Guaynabo",
|
| 2944 |
+
"Gurabo",
|
| 2945 |
+
"Guánica",
|
| 2946 |
+
"Hatillo",
|
| 2947 |
+
"Hormigueros",
|
| 2948 |
+
"Humacao",
|
| 2949 |
+
"Isabela",
|
| 2950 |
+
"Jayuya",
|
| 2951 |
+
"Juana Díaz",
|
| 2952 |
+
"Juncos",
|
| 2953 |
+
"Lajas",
|
| 2954 |
+
"Lares",
|
| 2955 |
+
"Las Marías",
|
| 2956 |
+
"Las Piedras",
|
| 2957 |
+
"Loíza",
|
| 2958 |
+
"Luquillo",
|
| 2959 |
+
"Manatí",
|
| 2960 |
+
"Maricao",
|
| 2961 |
+
"Maunabo",
|
| 2962 |
+
"Mayagüez",
|
| 2963 |
+
"Moca",
|
| 2964 |
+
"Morovis",
|
| 2965 |
+
"Naguabo",
|
| 2966 |
+
"Naranjito",
|
| 2967 |
+
"Orocovis",
|
| 2968 |
+
"Patillas",
|
| 2969 |
+
"Peñuelas",
|
| 2970 |
+
"Ponce",
|
| 2971 |
+
"Quebradillas",
|
| 2972 |
+
"Rincón",
|
| 2973 |
+
"Río Grande",
|
| 2974 |
+
"Sabana Grande",
|
| 2975 |
+
"Salinas",
|
| 2976 |
+
"San Germán",
|
| 2977 |
+
"San Juan",
|
| 2978 |
+
"San Lorenzo",
|
| 2979 |
+
"San Sebastián",
|
| 2980 |
+
"Santa Isabel",
|
| 2981 |
+
"Toa Alta",
|
| 2982 |
+
"Toa Baja",
|
| 2983 |
+
"Trujillo Alto",
|
| 2984 |
+
"Utuado",
|
| 2985 |
+
"Vega Alta",
|
| 2986 |
+
"Vega Baja",
|
| 2987 |
+
"Vieques",
|
| 2988 |
+
"Villalba",
|
| 2989 |
+
"Yabucoa",
|
| 2990 |
+
"Yauco"
|
| 2991 |
+
],
|
| 2992 |
+
"Palestinian Territory": [
|
| 2993 |
+
"Gaza Strip",
|
| 2994 |
+
"West Bank"
|
| 2995 |
+
],
|
| 2996 |
+
"Portugal": [
|
| 2997 |
+
"Aveiro",
|
| 2998 |
+
"Azores",
|
| 2999 |
+
"Beja",
|
| 3000 |
+
"Braga",
|
| 3001 |
+
"Bragança",
|
| 3002 |
+
"Castelo Branco",
|
| 3003 |
+
"Coimbra",
|
| 3004 |
+
"Faro",
|
| 3005 |
+
"Guarda",
|
| 3006 |
+
"Leiria",
|
| 3007 |
+
"Lisbon",
|
| 3008 |
+
"Madeira",
|
| 3009 |
+
"Portalegre",
|
| 3010 |
+
"Porto",
|
| 3011 |
+
"Santarém",
|
| 3012 |
+
"Setúbal",
|
| 3013 |
+
"Viana do Castelo",
|
| 3014 |
+
"Vila Real",
|
| 3015 |
+
"Viseu",
|
| 3016 |
+
"Évora"
|
| 3017 |
+
],
|
| 3018 |
+
"Palau": [
|
| 3019 |
+
"Aimeliik",
|
| 3020 |
+
"Airai",
|
| 3021 |
+
"Angaur",
|
| 3022 |
+
"Hatohobei",
|
| 3023 |
+
"Kayangel",
|
| 3024 |
+
"Koror",
|
| 3025 |
+
"Melekeok",
|
| 3026 |
+
"Ngaraard",
|
| 3027 |
+
"Ngarchelong",
|
| 3028 |
+
"Ngardmau",
|
| 3029 |
+
"Ngatpang",
|
| 3030 |
+
"Ngchesar",
|
| 3031 |
+
"Ngeremlengui",
|
| 3032 |
+
"Ngiwal",
|
| 3033 |
+
"Peleliu",
|
| 3034 |
+
"Sonsorol"
|
| 3035 |
+
],
|
| 3036 |
+
"Paraguay": [
|
| 3037 |
+
"Alto Paraguay",
|
| 3038 |
+
"Alto Paraná Department",
|
| 3039 |
+
"Amambay Department",
|
| 3040 |
+
"Asunción",
|
| 3041 |
+
"Boquerón Department",
|
| 3042 |
+
"Caaguazú Department",
|
| 3043 |
+
"Caazapá",
|
| 3044 |
+
"Canindeyú",
|
| 3045 |
+
"Central Department",
|
| 3046 |
+
"Concepción",
|
| 3047 |
+
"Cordillera Department",
|
| 3048 |
+
"Guairá",
|
| 3049 |
+
"Itapúa",
|
| 3050 |
+
"Misiones Department",
|
| 3051 |
+
"Paraguarí",
|
| 3052 |
+
"Presidente Hayes",
|
| 3053 |
+
"San Pedro Department",
|
| 3054 |
+
"Ñeembucú Department"
|
| 3055 |
+
],
|
| 3056 |
+
"Qatar": [
|
| 3057 |
+
"Al Daayen",
|
| 3058 |
+
"Al Khor",
|
| 3059 |
+
"Al Wakrah",
|
| 3060 |
+
"Al-Shahaniya",
|
| 3061 |
+
"Baladīyat ad Dawḩah",
|
| 3062 |
+
"Baladīyat ar Rayyān",
|
| 3063 |
+
"Madīnat ash Shamāl",
|
| 3064 |
+
"Umm Salal"
|
| 3065 |
+
],
|
| 3066 |
+
"Reunion": [
|
| 3067 |
+
"Réunion"
|
| 3068 |
+
],
|
| 3069 |
+
"Romania": [
|
| 3070 |
+
"Alba County",
|
| 3071 |
+
"Arad County",
|
| 3072 |
+
"Arges",
|
| 3073 |
+
"Bacău County",
|
| 3074 |
+
"Bihor County",
|
| 3075 |
+
"Bistrița-Năsăud County",
|
| 3076 |
+
"Botoșani County",
|
| 3077 |
+
"Brașov County",
|
| 3078 |
+
"Brăila County",
|
| 3079 |
+
"București",
|
| 3080 |
+
"Buzău County",
|
| 3081 |
+
"Caraș-Severin County",
|
| 3082 |
+
"Cluj County",
|
| 3083 |
+
"Constanța County",
|
| 3084 |
+
"Covasna County",
|
| 3085 |
+
"Călărași County",
|
| 3086 |
+
"Dolj",
|
| 3087 |
+
"Dâmbovița County",
|
| 3088 |
+
"Galați County",
|
| 3089 |
+
"Giurgiu County",
|
| 3090 |
+
"Gorj County",
|
| 3091 |
+
"Harghita County",
|
| 3092 |
+
"Hunedoara County",
|
| 3093 |
+
"Ialomița County",
|
| 3094 |
+
"Iași County",
|
| 3095 |
+
"Ilfov",
|
| 3096 |
+
"Maramureş",
|
| 3097 |
+
"Mehedinți County",
|
| 3098 |
+
"Mureș County",
|
| 3099 |
+
"Neamț County",
|
| 3100 |
+
"Olt",
|
| 3101 |
+
"Prahova",
|
| 3102 |
+
"Satu Mare County",
|
| 3103 |
+
"Sibiu County",
|
| 3104 |
+
"Suceava",
|
| 3105 |
+
"Sălaj County",
|
| 3106 |
+
"Teleorman County",
|
| 3107 |
+
"Timiș County",
|
| 3108 |
+
"Tulcea County",
|
| 3109 |
+
"Vaslui County",
|
| 3110 |
+
"Vrancea",
|
| 3111 |
+
"Vâlcea County"
|
| 3112 |
+
],
|
| 3113 |
+
"Serbia": [
|
| 3114 |
+
"Central Serbia",
|
| 3115 |
+
"Vojvodina"
|
| 3116 |
+
],
|
| 3117 |
+
"Russia": [
|
| 3118 |
+
"Adygeya Republic",
|
| 3119 |
+
"Altai",
|
| 3120 |
+
"Altai Krai",
|
| 3121 |
+
"Amur Oblast",
|
| 3122 |
+
"Arkhangelskaya",
|
| 3123 |
+
"Astrakhan Oblast",
|
| 3124 |
+
"Bashkortostan Republic",
|
| 3125 |
+
"Belgorod Oblast",
|
| 3126 |
+
"Bryansk Oblast",
|
| 3127 |
+
"Buryatiya Republic",
|
| 3128 |
+
"Chechnya",
|
| 3129 |
+
"Chelyabinsk",
|
| 3130 |
+
"Chukotka",
|
| 3131 |
+
"Chuvash Republic",
|
| 3132 |
+
"Dagestan",
|
| 3133 |
+
"Ingushetiya Republic",
|
| 3134 |
+
"Irkutsk Oblast",
|
| 3135 |
+
"Ivanovo Oblast",
|
| 3136 |
+
"Jewish Autonomous Oblast",
|
| 3137 |
+
"Kabardino-Balkariya Republic",
|
| 3138 |
+
"Kaliningrad Oblast",
|
| 3139 |
+
"Kalmykiya Republic",
|
| 3140 |
+
"Kaluga Oblast",
|
| 3141 |
+
"Kamchatka",
|
| 3142 |
+
"Karachayevo-Cherkesiya Republic",
|
| 3143 |
+
"Karelia",
|
| 3144 |
+
"Khabarovsk",
|
| 3145 |
+
"Khakasiya Republic",
|
| 3146 |
+
"Khanty-Mansia",
|
| 3147 |
+
"Kirov Oblast",
|
| 3148 |
+
"Komi",
|
| 3149 |
+
"Kostroma Oblast",
|
| 3150 |
+
"Krasnodar Krai",
|
| 3151 |
+
"Krasnoyarsk Krai",
|
| 3152 |
+
"Kurgan Oblast",
|
| 3153 |
+
"Kursk Oblast",
|
| 3154 |
+
"Kuzbass",
|
| 3155 |
+
"Leningradskaya Oblast'",
|
| 3156 |
+
"Lipetsk Oblast",
|
| 3157 |
+
"Magadan Oblast",
|
| 3158 |
+
"Mariy-El Republic",
|
| 3159 |
+
"Mordoviya Republic",
|
| 3160 |
+
"Moscow",
|
| 3161 |
+
"Moscow Oblast",
|
| 3162 |
+
"Murmansk",
|
| 3163 |
+
"Nenets",
|
| 3164 |
+
"Nizhny Novgorod Oblast",
|
| 3165 |
+
"North Ossetia–Alania",
|
| 3166 |
+
"Novgorod Oblast",
|
| 3167 |
+
"Novosibirsk Oblast",
|
| 3168 |
+
"Omsk Oblast",
|
| 3169 |
+
"Orenburg Oblast",
|
| 3170 |
+
"Oryol oblast",
|
| 3171 |
+
"Penza Oblast",
|
| 3172 |
+
"Perm Krai",
|
| 3173 |
+
"Primorye",
|
| 3174 |
+
"Pskov Oblast",
|
| 3175 |
+
"Republic of Tyva",
|
| 3176 |
+
"Rostov",
|
| 3177 |
+
"Ryazan Oblast",
|
| 3178 |
+
"Sakha",
|
| 3179 |
+
"Sakhalin Oblast",
|
| 3180 |
+
"Samara Oblast",
|
| 3181 |
+
"Saratov Oblast",
|
| 3182 |
+
"Smolensk Oblast",
|
| 3183 |
+
"St.-Petersburg",
|
| 3184 |
+
"Stavropol Kray",
|
| 3185 |
+
"Sverdlovsk Oblast",
|
| 3186 |
+
"Tambov Oblast",
|
| 3187 |
+
"Tatarstan Republic",
|
| 3188 |
+
"Tomsk Oblast",
|
| 3189 |
+
"Tula Oblast",
|
| 3190 |
+
"Tver Oblast",
|
| 3191 |
+
"Tyumen Oblast",
|
| 3192 |
+
"Udmurtiya Republic",
|
| 3193 |
+
"Ulyanovsk",
|
| 3194 |
+
"Vladimir Oblast",
|
| 3195 |
+
"Volgograd Oblast",
|
| 3196 |
+
"Vologda Oblast",
|
| 3197 |
+
"Voronezh Oblast",
|
| 3198 |
+
"Yamalo-Nenets",
|
| 3199 |
+
"Yaroslavl Oblast",
|
| 3200 |
+
"Zabaykalskiy (Transbaikal) Kray"
|
| 3201 |
+
],
|
| 3202 |
+
"Rwanda": [
|
| 3203 |
+
"Eastern Province",
|
| 3204 |
+
"Kigali",
|
| 3205 |
+
"Northern Province",
|
| 3206 |
+
"Southern Province",
|
| 3207 |
+
"Western Province"
|
| 3208 |
+
],
|
| 3209 |
+
"Saudi Arabia": [
|
| 3210 |
+
"'Asir Region",
|
| 3211 |
+
"Al Bahah Region",
|
| 3212 |
+
"Al Jawf Region",
|
| 3213 |
+
"Al-Qassim Region",
|
| 3214 |
+
"Eastern Province",
|
| 3215 |
+
"Ha'il Region",
|
| 3216 |
+
"Jazan Region",
|
| 3217 |
+
"Mecca Region",
|
| 3218 |
+
"Medina Region",
|
| 3219 |
+
"Najran Region",
|
| 3220 |
+
"Northern Borders Region",
|
| 3221 |
+
"Riyadh Region",
|
| 3222 |
+
"Tabuk Region"
|
| 3223 |
+
],
|
| 3224 |
+
"Solomon Islands": [
|
| 3225 |
+
"Central Province",
|
| 3226 |
+
"Choiseul Province",
|
| 3227 |
+
"Guadalcanal Province",
|
| 3228 |
+
"Honiara",
|
| 3229 |
+
"Isabel Province",
|
| 3230 |
+
"Makira-Ulawa Province",
|
| 3231 |
+
"Malaita Province",
|
| 3232 |
+
"Rennell and Bellona Province",
|
| 3233 |
+
"Temotu Province",
|
| 3234 |
+
"Western Province"
|
| 3235 |
+
],
|
| 3236 |
+
"Seychelles": [
|
| 3237 |
+
"Anse Boileau",
|
| 3238 |
+
"Anse Etoile",
|
| 3239 |
+
"Anse Royale",
|
| 3240 |
+
"Anse-aux-Pins",
|
| 3241 |
+
"Au Cap",
|
| 3242 |
+
"Baie Lazare",
|
| 3243 |
+
"Baie Sainte Anne",
|
| 3244 |
+
"Beau Vallon",
|
| 3245 |
+
"Bel Air",
|
| 3246 |
+
"Bel Ombre",
|
| 3247 |
+
"Cascade",
|
| 3248 |
+
"Glacis",
|
| 3249 |
+
"Grand Anse Mahe",
|
| 3250 |
+
"Grand Anse Praslin",
|
| 3251 |
+
"Ile Perseverance I",
|
| 3252 |
+
"Ile Perseverance II",
|
| 3253 |
+
"La Digue and Inner Islands",
|
| 3254 |
+
"La Rivière Anglaise",
|
| 3255 |
+
"Les Mamelles",
|
| 3256 |
+
"Mont Buxton",
|
| 3257 |
+
"Mont Fleuri",
|
| 3258 |
+
"Outer Islands",
|
| 3259 |
+
"Plaisance",
|
| 3260 |
+
"Pointe La Rue",
|
| 3261 |
+
"Port Glaud",
|
| 3262 |
+
"Roche Caiman",
|
| 3263 |
+
"Saint Louis",
|
| 3264 |
+
"Takamaka"
|
| 3265 |
+
],
|
| 3266 |
+
"Sudan": [
|
| 3267 |
+
"Al Jazīrah",
|
| 3268 |
+
"Al Qaḑārif",
|
| 3269 |
+
"Blue Nile",
|
| 3270 |
+
"Central Darfur",
|
| 3271 |
+
"Eastern Darfur",
|
| 3272 |
+
"Kassala",
|
| 3273 |
+
"Khartoum",
|
| 3274 |
+
"North Kordofan",
|
| 3275 |
+
"Northern Darfur",
|
| 3276 |
+
"Northern State",
|
| 3277 |
+
"Red Sea",
|
| 3278 |
+
"River Nile",
|
| 3279 |
+
"Sinnār",
|
| 3280 |
+
"Southern Darfur",
|
| 3281 |
+
"Southern Kordofan",
|
| 3282 |
+
"West Kordofan State",
|
| 3283 |
+
"Western Darfur",
|
| 3284 |
+
"White Nile"
|
| 3285 |
+
],
|
| 3286 |
+
"Sweden": [
|
| 3287 |
+
"Blekinge",
|
| 3288 |
+
"Dalarna",
|
| 3289 |
+
"Gotland",
|
| 3290 |
+
"Gävleborg",
|
| 3291 |
+
"Halland",
|
| 3292 |
+
"Jämtland",
|
| 3293 |
+
"Jönköping",
|
| 3294 |
+
"Kalmar",
|
| 3295 |
+
"Kronoberg",
|
| 3296 |
+
"Norrbotten",
|
| 3297 |
+
"Skåne",
|
| 3298 |
+
"Stockholm",
|
| 3299 |
+
"Södermanland",
|
| 3300 |
+
"Uppsala",
|
| 3301 |
+
"Värmland",
|
| 3302 |
+
"Västerbotten",
|
| 3303 |
+
"Västernorrland",
|
| 3304 |
+
"Västmanland",
|
| 3305 |
+
"Västra Götaland",
|
| 3306 |
+
"Örebro",
|
| 3307 |
+
"Östergötland"
|
| 3308 |
+
],
|
| 3309 |
+
"Saint Helena": [
|
| 3310 |
+
"Ascension",
|
| 3311 |
+
"Saint Helena",
|
| 3312 |
+
"Tristan da Cunha"
|
| 3313 |
+
],
|
| 3314 |
+
"Slovenia": [
|
| 3315 |
+
"Ajdovščina Municipality",
|
| 3316 |
+
"Ankaran Municipality",
|
| 3317 |
+
"Apače",
|
| 3318 |
+
"Beltinci",
|
| 3319 |
+
"Benedikt",
|
| 3320 |
+
"Bistrica ob Sotli",
|
| 3321 |
+
"Bled",
|
| 3322 |
+
"Bloke",
|
| 3323 |
+
"Bohinj Municipality",
|
| 3324 |
+
"Borovnica",
|
| 3325 |
+
"Bovec",
|
| 3326 |
+
"Braslovče",
|
| 3327 |
+
"Brda",
|
| 3328 |
+
"Brezovica",
|
| 3329 |
+
"Brežice",
|
| 3330 |
+
"Cankova",
|
| 3331 |
+
"Celje",
|
| 3332 |
+
"Cerklje na Gorenjskem",
|
| 3333 |
+
"Cerknica",
|
| 3334 |
+
"Cerkno",
|
| 3335 |
+
"Cerkvenjak",
|
| 3336 |
+
"Cirkulane",
|
| 3337 |
+
"Destrnik",
|
| 3338 |
+
"Divača",
|
| 3339 |
+
"Dobje",
|
| 3340 |
+
"Dobrepolje",
|
| 3341 |
+
"Dobrna",
|
| 3342 |
+
"Dobrova-Horjul-Polhov Gradec",
|
| 3343 |
+
"Dobrovnik-Dobronak",
|
| 3344 |
+
"Dol pri Ljubljani",
|
| 3345 |
+
"Dolenjske Toplice",
|
| 3346 |
+
"Domžale",
|
| 3347 |
+
"Dornava",
|
| 3348 |
+
"Dravograd",
|
| 3349 |
+
"Duplek",
|
| 3350 |
+
"Gorišnica",
|
| 3351 |
+
"Gorje",
|
| 3352 |
+
"Gornja Radgona",
|
| 3353 |
+
"Gornji Grad",
|
| 3354 |
+
"Gornji Petrovci",
|
| 3355 |
+
"Grad",
|
| 3356 |
+
"Grosuplje",
|
| 3357 |
+
"Hajdina",
|
| 3358 |
+
"Hodoš-Hodos",
|
| 3359 |
+
"Horjul",
|
| 3360 |
+
"Hoče-Slivnica",
|
| 3361 |
+
"Hrastnik Municipality",
|
| 3362 |
+
"Hrpelje-Kozina",
|
| 3363 |
+
"Idrija",
|
| 3364 |
+
"Ig Municipality",
|
| 3365 |
+
"Ilirska Bistrica",
|
| 3366 |
+
"Ivančna Gorica",
|
| 3367 |
+
"Izola-Isola",
|
| 3368 |
+
"Jesenice",
|
| 3369 |
+
"Jezersko",
|
| 3370 |
+
"Juršinci",
|
| 3371 |
+
"Kamnik",
|
| 3372 |
+
"Kanal ob Soči Municipality",
|
| 3373 |
+
"Kidričevo",
|
| 3374 |
+
"Kobarid Municipality",
|
| 3375 |
+
"Kobilje",
|
| 3376 |
+
"Komen",
|
| 3377 |
+
"Komenda",
|
| 3378 |
+
"Koper-Capodistria",
|
| 3379 |
+
"Kostanjevica na Krki",
|
| 3380 |
+
"Kostel",
|
| 3381 |
+
"Kozje",
|
| 3382 |
+
"Kočevje",
|
| 3383 |
+
"Kranj",
|
| 3384 |
+
"Kranjska Gora",
|
| 3385 |
+
"Križevci",
|
| 3386 |
+
"Krško",
|
| 3387 |
+
"Kungota",
|
| 3388 |
+
"Kuzma",
|
| 3389 |
+
"Laško Municipality",
|
| 3390 |
+
"Lenart",
|
| 3391 |
+
"Lendava-Lendva",
|
| 3392 |
+
"Litija",
|
| 3393 |
+
"Ljubljana",
|
| 3394 |
+
"Ljubno",
|
| 3395 |
+
"Ljutomer",
|
| 3396 |
+
"Logatec",
|
| 3397 |
+
"Log–Dragomer",
|
| 3398 |
+
"Lovrenc na Pohorju",
|
| 3399 |
+
"Loška Dolina Municipality",
|
| 3400 |
+
"Loški Potok",
|
| 3401 |
+
"Lukovica",
|
| 3402 |
+
"Luče",
|
| 3403 |
+
"Majšperk",
|
| 3404 |
+
"Makole",
|
| 3405 |
+
"Maribor City Municipality",
|
| 3406 |
+
"Markovci",
|
| 3407 |
+
"Medvode",
|
| 3408 |
+
"Mengeš",
|
| 3409 |
+
"Metlika",
|
| 3410 |
+
"Mežica",
|
| 3411 |
+
"Miklavž na Dravskem Polju",
|
| 3412 |
+
"Miren-Kostanjevica",
|
| 3413 |
+
"Mirna",
|
| 3414 |
+
"Mirna Peč Municipality",
|
| 3415 |
+
"Mislinja",
|
| 3416 |
+
"Mokronog-Trebelno Municipality",
|
| 3417 |
+
"Moravske Toplice",
|
| 3418 |
+
"Moravče",
|
| 3419 |
+
"Mozirje",
|
| 3420 |
+
"Murska Sobota",
|
| 3421 |
+
"Muta",
|
| 3422 |
+
"Naklo",
|
| 3423 |
+
"Nazarje",
|
| 3424 |
+
"Nova Gorica",
|
| 3425 |
+
"Novo Mesto",
|
| 3426 |
+
"Občina Gorenja vas-Poljane",
|
| 3427 |
+
"Odranci",
|
| 3428 |
+
"Oplotnica Municipality",
|
| 3429 |
+
"Ormož",
|
| 3430 |
+
"Osilnica",
|
| 3431 |
+
"Pesnica",
|
| 3432 |
+
"Piran-Pirano",
|
| 3433 |
+
"Pivka",
|
| 3434 |
+
"Podlehnik",
|
| 3435 |
+
"Podvelka",
|
| 3436 |
+
"Podčetrtek",
|
| 3437 |
+
"Poljčane",
|
| 3438 |
+
"Polzela",
|
| 3439 |
+
"Postojna",
|
| 3440 |
+
"Prebold",
|
| 3441 |
+
"Preddvor",
|
| 3442 |
+
"Prevalje",
|
| 3443 |
+
"Ptuj",
|
| 3444 |
+
"Puconci",
|
| 3445 |
+
"Radenci",
|
| 3446 |
+
"Radeče Municipality",
|
| 3447 |
+
"Radlje ob Dravi",
|
| 3448 |
+
"Radovljica",
|
| 3449 |
+
"Ravne na Koroškem",
|
| 3450 |
+
"Razkrižje",
|
| 3451 |
+
"Rače-Fram",
|
| 3452 |
+
"Renče-Vogrsko",
|
| 3453 |
+
"Rečica ob Savinji",
|
| 3454 |
+
"Ribnica",
|
| 3455 |
+
"Ribnica na Pohorju",
|
| 3456 |
+
"Rogatec",
|
| 3457 |
+
"Rogaška Slatina",
|
| 3458 |
+
"Rogašovci",
|
| 3459 |
+
"Ruše Municipality",
|
| 3460 |
+
"Selnica ob Dravi",
|
| 3461 |
+
"Semič",
|
| 3462 |
+
"Sentjur",
|
| 3463 |
+
"Sevnica Municipality",
|
| 3464 |
+
"Sežana",
|
| 3465 |
+
"Slovenj Gradec",
|
| 3466 |
+
"Slovenska Bistrica",
|
| 3467 |
+
"Slovenska Konjice",
|
| 3468 |
+
"Sodražica",
|
| 3469 |
+
"Solčava Municipality",
|
| 3470 |
+
"Središče ob Dravi",
|
| 3471 |
+
"Starše",
|
| 3472 |
+
"Straža",
|
| 3473 |
+
"Sv. Trojica v Slov. Goricah",
|
| 3474 |
+
"Sveta Ana Municipality",
|
| 3475 |
+
"Sveti Andraž v Slovenskih Goricah",
|
| 3476 |
+
"Sveti Jurij",
|
| 3477 |
+
"Sveti Jurij v Slovenskih Goricah",
|
| 3478 |
+
"Sveti Tomaž",
|
| 3479 |
+
"Tabor",
|
| 3480 |
+
"Tišina",
|
| 3481 |
+
"Tolmin",
|
| 3482 |
+
"Trbovlje",
|
| 3483 |
+
"Trebnje",
|
| 3484 |
+
"Trnovska Vas",
|
| 3485 |
+
"Trzin",
|
| 3486 |
+
"Tržič",
|
| 3487 |
+
"Turnišče",
|
| 3488 |
+
"Velenje",
|
| 3489 |
+
"Velika Polana",
|
| 3490 |
+
"Velike Lašče",
|
| 3491 |
+
"Veržej",
|
| 3492 |
+
"Videm",
|
| 3493 |
+
"Vipava",
|
| 3494 |
+
"Vitanje",
|
| 3495 |
+
"Vodice",
|
| 3496 |
+
"Vojnik",
|
| 3497 |
+
"Vransko",
|
| 3498 |
+
"Vrhnika",
|
| 3499 |
+
"Vuzenica",
|
| 3500 |
+
"Zagorje ob Savi Municipality",
|
| 3501 |
+
"Zavrč",
|
| 3502 |
+
"Zreče Municipality",
|
| 3503 |
+
"Črenšovci",
|
| 3504 |
+
"Črna na Koroškem Municipality",
|
| 3505 |
+
"Črnomelj Municipality",
|
| 3506 |
+
"Šalovci",
|
| 3507 |
+
"Šempeter-Vrtojba",
|
| 3508 |
+
"Šentilj",
|
| 3509 |
+
"Šentjernej",
|
| 3510 |
+
"Šentrupert",
|
| 3511 |
+
"Šenčur",
|
| 3512 |
+
"Škocjan",
|
| 3513 |
+
"Škofja Loka",
|
| 3514 |
+
"Škofljica",
|
| 3515 |
+
"Šmarje pri Jelšah",
|
| 3516 |
+
"Šmarješke Toplice",
|
| 3517 |
+
"Šmartno ob Paki",
|
| 3518 |
+
"Šmartno pri Litiji",
|
| 3519 |
+
"Šoštanj",
|
| 3520 |
+
"Štore",
|
| 3521 |
+
"Žalec",
|
| 3522 |
+
"Železniki Municipality",
|
| 3523 |
+
"Žetale",
|
| 3524 |
+
"Žiri",
|
| 3525 |
+
"Žirovnica",
|
| 3526 |
+
"Žužemberk"
|
| 3527 |
+
],
|
| 3528 |
+
"Svalbard and Jan Mayen": [
|
| 3529 |
+
"Jan Mayen",
|
| 3530 |
+
"Svalbard"
|
| 3531 |
+
],
|
| 3532 |
+
"Slovakia": [
|
| 3533 |
+
"Banská Bystrica Region",
|
| 3534 |
+
"Bratislava Region",
|
| 3535 |
+
"Košice Region",
|
| 3536 |
+
"Nitra Region",
|
| 3537 |
+
"Prešov Region",
|
| 3538 |
+
"Trenčín Region",
|
| 3539 |
+
"Trnava Region",
|
| 3540 |
+
"Žilina Region"
|
| 3541 |
+
],
|
| 3542 |
+
"Sierra Leone": [
|
| 3543 |
+
"Eastern Province",
|
| 3544 |
+
"North West",
|
| 3545 |
+
"Northern Province",
|
| 3546 |
+
"Southern Province",
|
| 3547 |
+
"Western Area"
|
| 3548 |
+
],
|
| 3549 |
+
"San Marino": [
|
| 3550 |
+
"Acquaviva",
|
| 3551 |
+
"Borgo Maggiore",
|
| 3552 |
+
"Chiesanuova",
|
| 3553 |
+
"Domagnano",
|
| 3554 |
+
"Faetano",
|
| 3555 |
+
"Fiorentino",
|
| 3556 |
+
"Montegiardino",
|
| 3557 |
+
"San Marino",
|
| 3558 |
+
"Serravalle"
|
| 3559 |
+
],
|
| 3560 |
+
"Senegal": [
|
| 3561 |
+
"Dakar",
|
| 3562 |
+
"Diourbel Region",
|
| 3563 |
+
"Fatick",
|
| 3564 |
+
"Kaffrine",
|
| 3565 |
+
"Kaolack",
|
| 3566 |
+
"Kolda",
|
| 3567 |
+
"Kédougou",
|
| 3568 |
+
"Louga",
|
| 3569 |
+
"Matam",
|
| 3570 |
+
"Saint-Louis",
|
| 3571 |
+
"Sédhiou",
|
| 3572 |
+
"Tambacounda",
|
| 3573 |
+
"Thiès",
|
| 3574 |
+
"Ziguinchor"
|
| 3575 |
+
],
|
| 3576 |
+
"Somalia": [
|
| 3577 |
+
"Awdal",
|
| 3578 |
+
"Bakool",
|
| 3579 |
+
"Banaadir",
|
| 3580 |
+
"Bari",
|
| 3581 |
+
"Bay",
|
| 3582 |
+
"Galguduud",
|
| 3583 |
+
"Gedo",
|
| 3584 |
+
"Hiiraan",
|
| 3585 |
+
"Lower Juba",
|
| 3586 |
+
"Lower Shabeelle",
|
| 3587 |
+
"Middle Juba",
|
| 3588 |
+
"Middle Shabele",
|
| 3589 |
+
"Mudug",
|
| 3590 |
+
"Nugaal",
|
| 3591 |
+
"Sanaag",
|
| 3592 |
+
"Sool",
|
| 3593 |
+
"Togdheer",
|
| 3594 |
+
"Woqooyi Galbeed"
|
| 3595 |
+
],
|
| 3596 |
+
"Suriname": [
|
| 3597 |
+
"Brokopondo District",
|
| 3598 |
+
"Commewijne District",
|
| 3599 |
+
"Coronie District",
|
| 3600 |
+
"Marowijne District",
|
| 3601 |
+
"Nickerie District",
|
| 3602 |
+
"Para District",
|
| 3603 |
+
"Paramaribo District",
|
| 3604 |
+
"Saramacca District",
|
| 3605 |
+
"Sipaliwini District",
|
| 3606 |
+
"Wanica District"
|
| 3607 |
+
],
|
| 3608 |
+
"South Sudan": [
|
| 3609 |
+
"Central Equatoria",
|
| 3610 |
+
"Eastern Equatoria",
|
| 3611 |
+
"Jonglei",
|
| 3612 |
+
"Lakes",
|
| 3613 |
+
"Northern Bahr al Ghazal",
|
| 3614 |
+
"Unity",
|
| 3615 |
+
"Upper Nile",
|
| 3616 |
+
"Warrap",
|
| 3617 |
+
"Western Bahr al Ghazal",
|
| 3618 |
+
"Western Equatoria"
|
| 3619 |
+
],
|
| 3620 |
+
"Sao Tome and Principe": [
|
| 3621 |
+
"Príncipe",
|
| 3622 |
+
"São Tomé Island"
|
| 3623 |
+
],
|
| 3624 |
+
"El Salvador": [
|
| 3625 |
+
"Ahuachapán",
|
| 3626 |
+
"Cabañas",
|
| 3627 |
+
"Chalatenango Department",
|
| 3628 |
+
"Cuscatlán",
|
| 3629 |
+
"La Libertad Department",
|
| 3630 |
+
"La Paz Department",
|
| 3631 |
+
"La Unión",
|
| 3632 |
+
"Morazán",
|
| 3633 |
+
"San Miguel Department",
|
| 3634 |
+
"San Salvador Department",
|
| 3635 |
+
"San Vicente Department",
|
| 3636 |
+
"Santa Ana Department",
|
| 3637 |
+
"Sonsonate Department",
|
| 3638 |
+
"Usulután"
|
| 3639 |
+
],
|
| 3640 |
+
"Syria": [
|
| 3641 |
+
"Al-Hasakah",
|
| 3642 |
+
"Aleppo",
|
| 3643 |
+
"Ar-Raqqah",
|
| 3644 |
+
"As-Suwayda",
|
| 3645 |
+
"Daraa",
|
| 3646 |
+
"Deir ez-Zor",
|
| 3647 |
+
"Dimashq",
|
| 3648 |
+
"Hama",
|
| 3649 |
+
"Homs",
|
| 3650 |
+
"Idlib",
|
| 3651 |
+
"Latakia",
|
| 3652 |
+
"Quneitra",
|
| 3653 |
+
"Rif-dimashq",
|
| 3654 |
+
"Tartus"
|
| 3655 |
+
],
|
| 3656 |
+
"Eswatini": [
|
| 3657 |
+
"Hhohho Region",
|
| 3658 |
+
"Lubombo Region",
|
| 3659 |
+
"Manzini Region",
|
| 3660 |
+
"Shiselweni"
|
| 3661 |
+
],
|
| 3662 |
+
"Chad": [
|
| 3663 |
+
"Barh el Gazel",
|
| 3664 |
+
"Batha",
|
| 3665 |
+
"Borkou",
|
| 3666 |
+
"Chari-Baguirmi",
|
| 3667 |
+
"Ennedi-Est",
|
| 3668 |
+
"Ennedi-Ouest",
|
| 3669 |
+
"Guéra",
|
| 3670 |
+
"Hadjer-Lamis",
|
| 3671 |
+
"Kanem",
|
| 3672 |
+
"Lac",
|
| 3673 |
+
"Logone Occidental",
|
| 3674 |
+
"Logone Oriental",
|
| 3675 |
+
"Mandoul",
|
| 3676 |
+
"Mayo-Kebbi Est",
|
| 3677 |
+
"Mayo-Kebbi Ouest",
|
| 3678 |
+
"Moyen-Chari",
|
| 3679 |
+
"N’Djaména",
|
| 3680 |
+
"Ouadaï",
|
| 3681 |
+
"Salamat",
|
| 3682 |
+
"Sila",
|
| 3683 |
+
"Tandjilé",
|
| 3684 |
+
"Tibesti",
|
| 3685 |
+
"Wadi Fira"
|
| 3686 |
+
],
|
| 3687 |
+
"French Southern Territories": [
|
| 3688 |
+
"Crozet",
|
| 3689 |
+
"Kerguelen",
|
| 3690 |
+
"Saint-Paul-et-Amsterdam",
|
| 3691 |
+
"Terre-Adélie",
|
| 3692 |
+
"Îles Éparses"
|
| 3693 |
+
],
|
| 3694 |
+
"Togo": [
|
| 3695 |
+
"Centrale",
|
| 3696 |
+
"Kara",
|
| 3697 |
+
"Maritime",
|
| 3698 |
+
"Plateaux",
|
| 3699 |
+
"Savanes"
|
| 3700 |
+
],
|
| 3701 |
+
"Thailand": [
|
| 3702 |
+
"Amnat Charoen",
|
| 3703 |
+
"Ang Thong",
|
| 3704 |
+
"Bangkok",
|
| 3705 |
+
"Bueng Kan",
|
| 3706 |
+
"Buriram",
|
| 3707 |
+
"Chachoengsao",
|
| 3708 |
+
"Chai Nat",
|
| 3709 |
+
"Chaiyaphum",
|
| 3710 |
+
"Chanthaburi",
|
| 3711 |
+
"Chiang Mai",
|
| 3712 |
+
"Chiang Rai",
|
| 3713 |
+
"Chon Buri",
|
| 3714 |
+
"Chumphon",
|
| 3715 |
+
"Kalasin",
|
| 3716 |
+
"Kamphaeng Phet",
|
| 3717 |
+
"Kanchanaburi",
|
| 3718 |
+
"Khon Kaen",
|
| 3719 |
+
"Krabi",
|
| 3720 |
+
"Lampang",
|
| 3721 |
+
"Lamphun",
|
| 3722 |
+
"Loei",
|
| 3723 |
+
"Lopburi",
|
| 3724 |
+
"Mae Hong Son",
|
| 3725 |
+
"Maha Sarakham",
|
| 3726 |
+
"Mukdahan",
|
| 3727 |
+
"Nakhon Nayok",
|
| 3728 |
+
"Nakhon Pathom",
|
| 3729 |
+
"Nakhon Phanom",
|
| 3730 |
+
"Nakhon Ratchasima",
|
| 3731 |
+
"Nakhon Sawan",
|
| 3732 |
+
"Nakhon Si Thammarat",
|
| 3733 |
+
"Nan",
|
| 3734 |
+
"Narathiwat",
|
| 3735 |
+
"Nong Bua Lamphu",
|
| 3736 |
+
"Nong Khai",
|
| 3737 |
+
"Nonthaburi",
|
| 3738 |
+
"Pathum Thani",
|
| 3739 |
+
"Pattani",
|
| 3740 |
+
"Phang Nga",
|
| 3741 |
+
"Phatthalung",
|
| 3742 |
+
"Phayao",
|
| 3743 |
+
"Phetchabun",
|
| 3744 |
+
"Phetchaburi",
|
| 3745 |
+
"Phichit",
|
| 3746 |
+
"Phitsanulok",
|
| 3747 |
+
"Phra Nakhon Si Ayutthaya",
|
| 3748 |
+
"Phrae",
|
| 3749 |
+
"Phuket",
|
| 3750 |
+
"Prachin Buri",
|
| 3751 |
+
"Prachuap Khiri Khan",
|
| 3752 |
+
"Ranong province",
|
| 3753 |
+
"Ratchaburi",
|
| 3754 |
+
"Rayong",
|
| 3755 |
+
"Roi Et",
|
| 3756 |
+
"Sa Kaeo",
|
| 3757 |
+
"Sakon Nakhon",
|
| 3758 |
+
"Samut Prakan",
|
| 3759 |
+
"Samut Sakhon",
|
| 3760 |
+
"Samut Songkhram",
|
| 3761 |
+
"Saraburi",
|
| 3762 |
+
"Satun",
|
| 3763 |
+
"Si Sa Ket",
|
| 3764 |
+
"Sing Buri",
|
| 3765 |
+
"Songkhla",
|
| 3766 |
+
"Sukhothai",
|
| 3767 |
+
"Suphan Buri",
|
| 3768 |
+
"Surat Thani",
|
| 3769 |
+
"Surin",
|
| 3770 |
+
"Tak",
|
| 3771 |
+
"Trang",
|
| 3772 |
+
"Trat",
|
| 3773 |
+
"Ubon Ratchathani",
|
| 3774 |
+
"Udon Thani",
|
| 3775 |
+
"Uthai Thani",
|
| 3776 |
+
"Uttaradit",
|
| 3777 |
+
"Yala",
|
| 3778 |
+
"Yasothon"
|
| 3779 |
+
],
|
| 3780 |
+
"Tajikistan": [
|
| 3781 |
+
"Dushanbe",
|
| 3782 |
+
"Gorno-Badakhshan",
|
| 3783 |
+
"Khatlon Province",
|
| 3784 |
+
"Republican Subordination",
|
| 3785 |
+
"Sughd"
|
| 3786 |
+
],
|
| 3787 |
+
"Tokelau": [
|
| 3788 |
+
"Atafu",
|
| 3789 |
+
"Fakaofo",
|
| 3790 |
+
"Nukunonu"
|
| 3791 |
+
],
|
| 3792 |
+
"Timor Leste": [
|
| 3793 |
+
"Aileu",
|
| 3794 |
+
"Ainaro",
|
| 3795 |
+
"Baucau",
|
| 3796 |
+
"Bobonaro",
|
| 3797 |
+
"Cova Lima",
|
| 3798 |
+
"Dili Municipality",
|
| 3799 |
+
"Ermera",
|
| 3800 |
+
"Lautém",
|
| 3801 |
+
"Liquiçá",
|
| 3802 |
+
"Manatuto",
|
| 3803 |
+
"Manufahi",
|
| 3804 |
+
"Oecusse",
|
| 3805 |
+
"Viqueque"
|
| 3806 |
+
],
|
| 3807 |
+
"Turkmenistan": [
|
| 3808 |
+
"Ahal",
|
| 3809 |
+
"Ashgabat",
|
| 3810 |
+
"Balkan",
|
| 3811 |
+
"Daşoguz",
|
| 3812 |
+
"Lebap",
|
| 3813 |
+
"Mary"
|
| 3814 |
+
],
|
| 3815 |
+
"Tunisia": [
|
| 3816 |
+
"Ariana Governorate",
|
| 3817 |
+
"Ben Arous Governorate",
|
| 3818 |
+
"Bizerte Governorate",
|
| 3819 |
+
"Béja Governorate",
|
| 3820 |
+
"Gabès Governorate",
|
| 3821 |
+
"Gafsa",
|
| 3822 |
+
"Jendouba Governorate",
|
| 3823 |
+
"Kairouan",
|
| 3824 |
+
"Kasserine Governorate",
|
| 3825 |
+
"Kebili Governorate",
|
| 3826 |
+
"Kef Governorate",
|
| 3827 |
+
"Mahdia Governorate",
|
| 3828 |
+
"Manouba",
|
| 3829 |
+
"Medenine Governorate",
|
| 3830 |
+
"Monastir Governorate",
|
| 3831 |
+
"Nabeul Governorate",
|
| 3832 |
+
"Sfax Governorate",
|
| 3833 |
+
"Sidi Bouzid Governorate",
|
| 3834 |
+
"Siliana Governorate",
|
| 3835 |
+
"Sousse Governorate",
|
| 3836 |
+
"Tataouine",
|
| 3837 |
+
"Tozeur Governorate",
|
| 3838 |
+
"Tunis Governorate",
|
| 3839 |
+
"Zaghouan Governorate"
|
| 3840 |
+
],
|
| 3841 |
+
"Tonga": [
|
| 3842 |
+
"Ha‘apai",
|
| 3843 |
+
"Niuas",
|
| 3844 |
+
"Tongatapu",
|
| 3845 |
+
"Vava‘u",
|
| 3846 |
+
"ʻEua"
|
| 3847 |
+
],
|
| 3848 |
+
"Turkey": [
|
| 3849 |
+
"Adana",
|
| 3850 |
+
"Adıyaman Province",
|
| 3851 |
+
"Afyonkarahisar Province",
|
| 3852 |
+
"Aksaray",
|
| 3853 |
+
"Amasya",
|
| 3854 |
+
"Ankara",
|
| 3855 |
+
"Antalya",
|
| 3856 |
+
"Ardahan",
|
| 3857 |
+
"Artvin",
|
| 3858 |
+
"Aydın",
|
| 3859 |
+
"Ağrı",
|
| 3860 |
+
"Balıkesir",
|
| 3861 |
+
"Bartın",
|
| 3862 |
+
"Batman",
|
| 3863 |
+
"Bayburt Province",
|
| 3864 |
+
"Bilecik",
|
| 3865 |
+
"Bingöl",
|
| 3866 |
+
"Bitlis",
|
| 3867 |
+
"Bolu",
|
| 3868 |
+
"Burdur",
|
| 3869 |
+
"Bursa Province",
|
| 3870 |
+
"Canakkale",
|
| 3871 |
+
"Denizli",
|
| 3872 |
+
"Diyarbakır Province",
|
| 3873 |
+
"Düzce",
|
| 3874 |
+
"Edirne",
|
| 3875 |
+
"Elazığ",
|
| 3876 |
+
"Erzincan",
|
| 3877 |
+
"Erzurum",
|
| 3878 |
+
"Eskişehir",
|
| 3879 |
+
"Gaziantep",
|
| 3880 |
+
"Giresun",
|
| 3881 |
+
"Gümüşhane Province",
|
| 3882 |
+
"Hakkâri",
|
| 3883 |
+
"Hatay",
|
| 3884 |
+
"Isparta",
|
| 3885 |
+
"Istanbul",
|
| 3886 |
+
"Iğdır",
|
| 3887 |
+
"İzmir Province",
|
| 3888 |
+
"Kahramanmaraş",
|
| 3889 |
+
"Karabük Province",
|
| 3890 |
+
"Karaman",
|
| 3891 |
+
"Kars Province",
|
| 3892 |
+
"Kastamonu",
|
| 3893 |
+
"Kayseri",
|
| 3894 |
+
"Kilis",
|
| 3895 |
+
"Kocaeli",
|
| 3896 |
+
"Konya",
|
| 3897 |
+
"Kütahya",
|
| 3898 |
+
"Kırklareli",
|
| 3899 |
+
"Kırıkkale",
|
| 3900 |
+
"Kırşehir",
|
| 3901 |
+
"Malatya",
|
| 3902 |
+
"Manisa",
|
| 3903 |
+
"Mardin",
|
| 3904 |
+
"Mersin",
|
| 3905 |
+
"Muğla",
|
| 3906 |
+
"Muş",
|
| 3907 |
+
"Nevşehir Province",
|
| 3908 |
+
"Niğde Province",
|
| 3909 |
+
"Ordu",
|
| 3910 |
+
"Osmaniye",
|
| 3911 |
+
"Rize Province",
|
| 3912 |
+
"Sakarya",
|
| 3913 |
+
"Samsun",
|
| 3914 |
+
"Siirt",
|
| 3915 |
+
"Sinop",
|
| 3916 |
+
"Sivas",
|
| 3917 |
+
"Tekirdağ",
|
| 3918 |
+
"Tokat Province",
|
| 3919 |
+
"Trabzon",
|
| 3920 |
+
"Tunceli",
|
| 3921 |
+
"Uşak",
|
| 3922 |
+
"Van",
|
| 3923 |
+
"Yalova",
|
| 3924 |
+
"Yozgat",
|
| 3925 |
+
"Zonguldak Province",
|
| 3926 |
+
"Çankırı",
|
| 3927 |
+
"Çorum",
|
| 3928 |
+
"Şanlıurfa",
|
| 3929 |
+
"Şırnak"
|
| 3930 |
+
],
|
| 3931 |
+
"Trinidad and Tobago": [
|
| 3932 |
+
"Borough of Arima",
|
| 3933 |
+
"Chaguanas",
|
| 3934 |
+
"Couva-Tabaquite-Talparo",
|
| 3935 |
+
"Diego Martin Regional Corporation",
|
| 3936 |
+
"Mayaro",
|
| 3937 |
+
"Penal/Debe",
|
| 3938 |
+
"Point Fortin",
|
| 3939 |
+
"Port of Spain",
|
| 3940 |
+
"Princes Town",
|
| 3941 |
+
"San Fernando",
|
| 3942 |
+
"San Juan/Laventille",
|
| 3943 |
+
"Sangre Grande Regional Corporation",
|
| 3944 |
+
"Siparia Regional Corporation",
|
| 3945 |
+
"Tobago",
|
| 3946 |
+
"Tunapuna/Piarco"
|
| 3947 |
+
],
|
| 3948 |
+
"Tuvalu": [
|
| 3949 |
+
"Funafuti",
|
| 3950 |
+
"Nanumanga",
|
| 3951 |
+
"Nanumea",
|
| 3952 |
+
"Niutao",
|
| 3953 |
+
"Nui",
|
| 3954 |
+
"Nukufetau",
|
| 3955 |
+
"Nukulaelae",
|
| 3956 |
+
"Vaitupu"
|
| 3957 |
+
],
|
| 3958 |
+
"Taiwan": [
|
| 3959 |
+
"Fukien",
|
| 3960 |
+
"Taipei",
|
| 3961 |
+
"Taiwan",
|
| 3962 |
+
"Takao"
|
| 3963 |
+
],
|
| 3964 |
+
"Tanzania": [
|
| 3965 |
+
"Arusha",
|
| 3966 |
+
"Dar es Salaam Region",
|
| 3967 |
+
"Dodoma",
|
| 3968 |
+
"Geita",
|
| 3969 |
+
"Iringa",
|
| 3970 |
+
"Kagera",
|
| 3971 |
+
"Katavi",
|
| 3972 |
+
"Kigoma",
|
| 3973 |
+
"Kilimanjaro",
|
| 3974 |
+
"Lindi",
|
| 3975 |
+
"Manyara",
|
| 3976 |
+
"Mara",
|
| 3977 |
+
"Mbeya",
|
| 3978 |
+
"Morogoro",
|
| 3979 |
+
"Mtwara",
|
| 3980 |
+
"Mwanza",
|
| 3981 |
+
"Njombe",
|
| 3982 |
+
"Pemba North",
|
| 3983 |
+
"Pemba South",
|
| 3984 |
+
"Pwani",
|
| 3985 |
+
"Rukwa",
|
| 3986 |
+
"Ruvuma",
|
| 3987 |
+
"Shinyanga",
|
| 3988 |
+
"Simiyu",
|
| 3989 |
+
"Singida",
|
| 3990 |
+
"Songwe",
|
| 3991 |
+
"Tabora",
|
| 3992 |
+
"Tanga",
|
| 3993 |
+
"Zanzibar Central/South",
|
| 3994 |
+
"Zanzibar North",
|
| 3995 |
+
"Zanzibar Urban/West"
|
| 3996 |
+
],
|
| 3997 |
+
"Ukraine": [
|
| 3998 |
+
"Cherkasy",
|
| 3999 |
+
"Chernihiv",
|
| 4000 |
+
"Chernivtsi",
|
| 4001 |
+
"Crimea",
|
| 4002 |
+
"Dnipropetrovsk",
|
| 4003 |
+
"Donetsk",
|
| 4004 |
+
"Ivano-Frankivsk",
|
| 4005 |
+
"Kharkivs’ka Oblast’",
|
| 4006 |
+
"Kherson",
|
| 4007 |
+
"Khmelnytskyi",
|
| 4008 |
+
"Kiev",
|
| 4009 |
+
"Kirovohrad",
|
| 4010 |
+
"Kyiv City",
|
| 4011 |
+
"Luhansk",
|
| 4012 |
+
"Lviv",
|
| 4013 |
+
"Mykolaiv",
|
| 4014 |
+
"Odessa",
|
| 4015 |
+
"Poltava",
|
| 4016 |
+
"Rivne",
|
| 4017 |
+
"Sevastopol City",
|
| 4018 |
+
"Sumy",
|
| 4019 |
+
"Ternopil",
|
| 4020 |
+
"Vinnytsia",
|
| 4021 |
+
"Volyn",
|
| 4022 |
+
"Zakarpattia",
|
| 4023 |
+
"Zaporizhzhia",
|
| 4024 |
+
"Zhytomyr"
|
| 4025 |
+
],
|
| 4026 |
+
"Uganda": [
|
| 4027 |
+
"Central Region",
|
| 4028 |
+
"Eastern Region",
|
| 4029 |
+
"Northern Region",
|
| 4030 |
+
"Western Region"
|
| 4031 |
+
],
|
| 4032 |
+
"United States Minor Outlying Islands": [
|
| 4033 |
+
"Baker Island",
|
| 4034 |
+
"Howland Island",
|
| 4035 |
+
"Jarvis Island",
|
| 4036 |
+
"Johnston Atoll",
|
| 4037 |
+
"Kingman Reef",
|
| 4038 |
+
"Midway Islands",
|
| 4039 |
+
"Navassa Island",
|
| 4040 |
+
"Palmyra Atoll",
|
| 4041 |
+
"Wake Island"
|
| 4042 |
+
],
|
| 4043 |
+
"United States": [
|
| 4044 |
+
"Alabama",
|
| 4045 |
+
"Alaska",
|
| 4046 |
+
"Arizona",
|
| 4047 |
+
"Arkansas",
|
| 4048 |
+
"California",
|
| 4049 |
+
"Colorado",
|
| 4050 |
+
"Connecticut",
|
| 4051 |
+
"Delaware",
|
| 4052 |
+
"District of Columbia",
|
| 4053 |
+
"Florida",
|
| 4054 |
+
"Georgia",
|
| 4055 |
+
"Hawaii",
|
| 4056 |
+
"Idaho",
|
| 4057 |
+
"Illinois",
|
| 4058 |
+
"Indiana",
|
| 4059 |
+
"Iowa",
|
| 4060 |
+
"Kansas",
|
| 4061 |
+
"Kentucky",
|
| 4062 |
+
"Louisiana",
|
| 4063 |
+
"Maine",
|
| 4064 |
+
"Maryland",
|
| 4065 |
+
"Massachusetts",
|
| 4066 |
+
"Michigan",
|
| 4067 |
+
"Minnesota",
|
| 4068 |
+
"Mississippi",
|
| 4069 |
+
"Missouri",
|
| 4070 |
+
"Montana",
|
| 4071 |
+
"Nebraska",
|
| 4072 |
+
"Nevada",
|
| 4073 |
+
"New Hampshire",
|
| 4074 |
+
"New Jersey",
|
| 4075 |
+
"New Mexico",
|
| 4076 |
+
"New York",
|
| 4077 |
+
"North Carolina",
|
| 4078 |
+
"North Dakota",
|
| 4079 |
+
"Ohio",
|
| 4080 |
+
"Oklahoma",
|
| 4081 |
+
"Oregon",
|
| 4082 |
+
"Pennsylvania",
|
| 4083 |
+
"Rhode Island",
|
| 4084 |
+
"South Carolina",
|
| 4085 |
+
"South Dakota",
|
| 4086 |
+
"Tennessee",
|
| 4087 |
+
"Texas",
|
| 4088 |
+
"Utah",
|
| 4089 |
+
"Vermont",
|
| 4090 |
+
"Virginia",
|
| 4091 |
+
"Washington",
|
| 4092 |
+
"West Virginia",
|
| 4093 |
+
"Wisconsin",
|
| 4094 |
+
"Wyoming"
|
| 4095 |
+
],
|
| 4096 |
+
"Uruguay": [
|
| 4097 |
+
"Artigas",
|
| 4098 |
+
"Canelones",
|
| 4099 |
+
"Cerro Largo",
|
| 4100 |
+
"Colonia",
|
| 4101 |
+
"Durazno Department",
|
| 4102 |
+
"Flores Department",
|
| 4103 |
+
"Florida",
|
| 4104 |
+
"Lavalleja",
|
| 4105 |
+
"Maldonado",
|
| 4106 |
+
"Montevideo Department",
|
| 4107 |
+
"Paysandú Department",
|
| 4108 |
+
"Rivera Department",
|
| 4109 |
+
"Rocha Department",
|
| 4110 |
+
"Río Negro Department",
|
| 4111 |
+
"Salto Department",
|
| 4112 |
+
"San José Department",
|
| 4113 |
+
"Soriano",
|
| 4114 |
+
"Tacuarembó Department",
|
| 4115 |
+
"Treinta y Tres Department"
|
| 4116 |
+
],
|
| 4117 |
+
"Uzbekistan": [
|
| 4118 |
+
"Andijan Region",
|
| 4119 |
+
"Bukhara",
|
| 4120 |
+
"Fergana",
|
| 4121 |
+
"Jizzakh Region",
|
| 4122 |
+
"Karakalpakstan",
|
| 4123 |
+
"Namangan",
|
| 4124 |
+
"Navoiy Region",
|
| 4125 |
+
"Qashqadaryo",
|
| 4126 |
+
"Samarqand Region",
|
| 4127 |
+
"Sirdaryo Region",
|
| 4128 |
+
"Surxondaryo Region",
|
| 4129 |
+
"Tashkent",
|
| 4130 |
+
"Tashkent Region",
|
| 4131 |
+
"Xorazm Region"
|
| 4132 |
+
],
|
| 4133 |
+
"Saint Vincent and the Grenadines": [
|
| 4134 |
+
"Charlotte Parish",
|
| 4135 |
+
"Grenadines Parish",
|
| 4136 |
+
"Saint Andrew Parish",
|
| 4137 |
+
"Saint David Parish",
|
| 4138 |
+
"Saint George Parish",
|
| 4139 |
+
"Saint Patrick Parish"
|
| 4140 |
+
],
|
| 4141 |
+
"Venezuela": [
|
| 4142 |
+
"Amazonas",
|
| 4143 |
+
"Anzoátegui",
|
| 4144 |
+
"Apure",
|
| 4145 |
+
"Aragua",
|
| 4146 |
+
"Barinas",
|
| 4147 |
+
"Bolívar",
|
| 4148 |
+
"Carabobo",
|
| 4149 |
+
"Cojedes",
|
| 4150 |
+
"Delta Amacuro",
|
| 4151 |
+
"Dependencias Federales",
|
| 4152 |
+
"Distrito Federal",
|
| 4153 |
+
"Falcón",
|
| 4154 |
+
"Guárico",
|
| 4155 |
+
"Lara",
|
| 4156 |
+
"Miranda",
|
| 4157 |
+
"Monagas",
|
| 4158 |
+
"Mérida",
|
| 4159 |
+
"Nueva Esparta",
|
| 4160 |
+
"Portuguesa",
|
| 4161 |
+
"Sucre",
|
| 4162 |
+
"Trujillo",
|
| 4163 |
+
"Táchira",
|
| 4164 |
+
"Vargas",
|
| 4165 |
+
"Yaracuy",
|
| 4166 |
+
"Zulia"
|
| 4167 |
+
],
|
| 4168 |
+
"U.S. Virgin Islands": [
|
| 4169 |
+
"Saint Croix Island",
|
| 4170 |
+
"Saint John Island",
|
| 4171 |
+
"Saint Thomas Island"
|
| 4172 |
+
],
|
| 4173 |
+
"Vietnam": [
|
| 4174 |
+
"An Giang",
|
| 4175 |
+
"Bac Ninh",
|
| 4176 |
+
"Ca Mau",
|
| 4177 |
+
"Can Tho City",
|
| 4178 |
+
"Cao Bằng Province",
|
| 4179 |
+
"Da Nang City",
|
| 4180 |
+
"Dak Lak",
|
| 4181 |
+
"Dong Nai",
|
| 4182 |
+
"Dong Thap",
|
| 4183 |
+
"Gia Lai",
|
| 4184 |
+
"Hai Phong",
|
| 4185 |
+
"Hanoi",
|
| 4186 |
+
"Ho Chi Minh City (HCMC)",
|
| 4187 |
+
"Hà Tĩnh Province",
|
| 4188 |
+
"Hưng Yên Province",
|
| 4189 |
+
"Khanh Hoa",
|
| 4190 |
+
"Lai Châu Province",
|
| 4191 |
+
"Lam Dong",
|
| 4192 |
+
"Lao Cai",
|
| 4193 |
+
"Lạng Sơn Province",
|
| 4194 |
+
"Nghệ An Province",
|
| 4195 |
+
"Ninh Binh",
|
| 4196 |
+
"Phu Tho",
|
| 4197 |
+
"Quang Ngai",
|
| 4198 |
+
"Quang Tri",
|
| 4199 |
+
"Quảng Ninh",
|
| 4200 |
+
"Sơn La Province",
|
| 4201 |
+
"Tay Ninh",
|
| 4202 |
+
"Thai Nguyen",
|
| 4203 |
+
"Thanh Hóa Province",
|
| 4204 |
+
"Thừa Thiên Huế Province",
|
| 4205 |
+
"Tuyen Quang",
|
| 4206 |
+
"Vinh Long",
|
| 4207 |
+
"Điện Biên Province"
|
| 4208 |
+
],
|
| 4209 |
+
"Vanuatu": [
|
| 4210 |
+
"Malampa",
|
| 4211 |
+
"Penama",
|
| 4212 |
+
"Sanma",
|
| 4213 |
+
"Shefa",
|
| 4214 |
+
"Tafea",
|
| 4215 |
+
"Torba"
|
| 4216 |
+
],
|
| 4217 |
+
"Wallis and Futuna": [
|
| 4218 |
+
"Alo",
|
| 4219 |
+
"Sigave",
|
| 4220 |
+
"Uvea"
|
| 4221 |
+
],
|
| 4222 |
+
"Samoa": [
|
| 4223 |
+
"A'ana",
|
| 4224 |
+
"Aiga-i-le-Tai",
|
| 4225 |
+
"Atua",
|
| 4226 |
+
"Fa'asaleleaga",
|
| 4227 |
+
"Gaga'emauga",
|
| 4228 |
+
"Gaga'ifomauga",
|
| 4229 |
+
"Palauli",
|
| 4230 |
+
"Satupa'itea",
|
| 4231 |
+
"Tuamasaga",
|
| 4232 |
+
"Va'a-o-Fonoti",
|
| 4233 |
+
"Vaisigano"
|
| 4234 |
+
],
|
| 4235 |
+
"Kosovo": [
|
| 4236 |
+
"Ferizaj",
|
| 4237 |
+
"Gjakova",
|
| 4238 |
+
"Gjilan",
|
| 4239 |
+
"Mitrovica",
|
| 4240 |
+
"Pec",
|
| 4241 |
+
"Pristina",
|
| 4242 |
+
"Prizren"
|
| 4243 |
+
],
|
| 4244 |
+
"Yemen": [
|
| 4245 |
+
"Abyan Governorate",
|
| 4246 |
+
"Aden",
|
| 4247 |
+
"Al Bayda",
|
| 4248 |
+
"Al Hudaydah",
|
| 4249 |
+
"Al Jawf",
|
| 4250 |
+
"Al Mahrah Governorate",
|
| 4251 |
+
"Al Mahwit Governorate",
|
| 4252 |
+
"Amanat Alasimah",
|
| 4253 |
+
"Aḑ Ḑāli‘",
|
| 4254 |
+
"Dhamār",
|
| 4255 |
+
"Ibb Governorate",
|
| 4256 |
+
"Laḩij",
|
| 4257 |
+
"Ma’rib",
|
| 4258 |
+
"Muhafazat Hadramaout",
|
| 4259 |
+
"Omran",
|
| 4260 |
+
"Raymah",
|
| 4261 |
+
"Sanaa Governorate",
|
| 4262 |
+
"Shabwah",
|
| 4263 |
+
"Soqatra",
|
| 4264 |
+
"Ta‘izz",
|
| 4265 |
+
"Şa‘dah",
|
| 4266 |
+
"Ḩajjah"
|
| 4267 |
+
],
|
| 4268 |
+
"Mayotte": [
|
| 4269 |
+
"Acoua",
|
| 4270 |
+
"Bandraboua",
|
| 4271 |
+
"Bandrele",
|
| 4272 |
+
"Bouéni",
|
| 4273 |
+
"Chiconi",
|
| 4274 |
+
"Chirongui",
|
| 4275 |
+
"Dembeni",
|
| 4276 |
+
"Dzaoudzi",
|
| 4277 |
+
"Kani-Kéli",
|
| 4278 |
+
"Koungou",
|
| 4279 |
+
"M'Tsangamouji",
|
| 4280 |
+
"Mamoudzou",
|
| 4281 |
+
"Mtsamboro",
|
| 4282 |
+
"Ouangani",
|
| 4283 |
+
"Pamandzi",
|
| 4284 |
+
"Sada",
|
| 4285 |
+
"Tsingoni"
|
| 4286 |
+
],
|
| 4287 |
+
"South Africa": [
|
| 4288 |
+
"Eastern Cape",
|
| 4289 |
+
"Free State",
|
| 4290 |
+
"Gauteng",
|
| 4291 |
+
"KwaZulu-Natal",
|
| 4292 |
+
"Limpopo",
|
| 4293 |
+
"Mpumalanga",
|
| 4294 |
+
"North West",
|
| 4295 |
+
"Northern Cape",
|
| 4296 |
+
"Western Cape"
|
| 4297 |
+
],
|
| 4298 |
+
"Zambia": [
|
| 4299 |
+
"Central Province",
|
| 4300 |
+
"Copperbelt",
|
| 4301 |
+
"Eastern Province",
|
| 4302 |
+
"Luapula Province",
|
| 4303 |
+
"Lusaka Province",
|
| 4304 |
+
"Muchinga",
|
| 4305 |
+
"North-Western",
|
| 4306 |
+
"Northern Province",
|
| 4307 |
+
"Southern Province",
|
| 4308 |
+
"Western Province"
|
| 4309 |
+
],
|
| 4310 |
+
"Zimbabwe": [
|
| 4311 |
+
"Bulawayo",
|
| 4312 |
+
"Harare",
|
| 4313 |
+
"Manicaland",
|
| 4314 |
+
"Mashonaland Central",
|
| 4315 |
+
"Mashonaland East Province",
|
| 4316 |
+
"Mashonaland West",
|
| 4317 |
+
"Masvingo Province",
|
| 4318 |
+
"Matabeleland North",
|
| 4319 |
+
"Matabeleland South Province",
|
| 4320 |
+
"Midlands Province"
|
| 4321 |
+
]
|
| 4322 |
+
}
|