diff --git a/app/config.py.example b/app/config.py.example index b6059ece..079711e0 100644 --- a/app/config.py.example +++ b/app/config.py.example @@ -1,6 +1,7 @@ import os from fastapi_mail import ConnectionConfig +from pathlib import Path from pydantic import BaseSettings from starlette.templating import Jinja2Templates @@ -67,6 +68,7 @@ MAX_EVENTS_START_DATE = 10 # Max Events with the same start date. # PATHS STATIC_ABS_PATH = os.path.abspath("static") +RESOURCES_PATH = Path(__file__).parent / 'resources' # LOGGER LOG_PATH = "./var/log" diff --git a/app/internal/world_clock.py b/app/internal/world_clock.py new file mode 100644 index 00000000..7e76b7ff --- /dev/null +++ b/app/internal/world_clock.py @@ -0,0 +1,512 @@ +import json +import logging +from datetime import datetime, timedelta +from typing import Any, Dict, List, NamedTuple, Optional, Tuple + +import dateutil.parser +import httpx + +from app import config + +TOTAL_SEC_IN_HOUR = 3600 +BLANK = " " +UNDERSCORE = "_" +UNPACK_ELEMENT = 0 +TIMEZONES_BASE_URL = "http://worldtimeapi.org/api/timezone" +COUNTRY_TO_CONTINENT_DATA_SET_PATH = ( + f"{config.RESOURCES_PATH}/" f"country-continent.json" +) +CITY_TO_COUNTRY_DATA_SET_PATH = f"{config.RESOURCES_PATH}/world-cities.json" +TIMEZONES_COUNTRY_SUBCOUNTRY_PATH = ( + f"{config.RESOURCES_PATH}/" f"country-subcountry.json" +) + +CONTINENTS = { + "Africa", + "America", + "Antarctica", + "Asia", + "Australia", + "Europe", + "Indian", + "Pacific", +} +CITY_NAME_KEY = "name" +COUNTRY_NAME_KEY_IN_CITIES = "country" +SUBCOUNTRY_NAME_KEY_IN_CITIES = "subcountry" +CONTINENT_NAME_KEY = "Continent_Name" +CONTINENT = "continent" +COUNTRY = "country" +PLACE = "place" +CURRENT_TIME_KEY = "datetime" +TIMEZONE_PARTS_MAP = {CONTINENT: 0, PLACE: -1} +TIME_SCOPE_INDEX = 0 +FEEDBACK_INDEX = 1 +ARB_COUNTRY_TIMEZONE = -1 +PATH_SEPARETOR = "/" + + +class MeetingTime(NamedTuple): + time: str + start: str + end: str + desirability: str + + +PARTS_OF_THE_DAY_FEEDBACK = [ + MeetingTime( + time="Early Morning", + start="05:00:00", + end="07:59:59", + desirability="Better not", + ), + MeetingTime( + time="Morning", + start="08:00:00", + end="10:59:59", + desirability="OK" + ), + MeetingTime( + time="Late morning", + start="11:00:00", + end="11:59:59", + desirability="OK", + ), + MeetingTime( + time="Early afternoon", + start="12:00:00", + end="12:59:59", + desirability="OK", + ), + MeetingTime( + time="Afternoon", + start="13:00:00", + end="15:59:59", + desirability="OK" + ), + MeetingTime( + time="Late afternoon", + start="16:00:00", + end="16:59:59", + desirability="Can be considered", + ), + MeetingTime( + time="Early evening", + start="17:00:00", + end="18:59:59", + desirability="Can be considered", + ), + MeetingTime( + time="Evening", + start="19:00:00", + end="20:59:59", + desirability="Better not", + ), + MeetingTime( + time="Night", + start="21:00:00", + end="23:59:59", + desirability="Better not", + ), + MeetingTime( + time="Late night", + start="00:00:00", + end="04:59:59", + desirability="Not possible", + ), +] + + +def normalize_continent_name(continent_name: str) -> Optional[str]: + """Normalize a given continent name to the continent name + that appears in the timezone list. + Args: + continent_name (str): The given continent name. + Returns: + str: The normalized continent name. + """ + for continent in CONTINENTS: + if continent in continent_name: + return continent + return continent_name + + +def load_country_continent_data_set() -> List[Dict[str, str]]: + """Load the country-continent data set. + + Returns: + list: The country-continent data set + """ + with open(COUNTRY_TO_CONTINENT_DATA_SET_PATH) as file: + return json.load(file) + + +def get_continent(country_name: str) -> Optional[str]: + """Get the continent of a given country. + Args: + country_name (str): The given country name. + Returns: + str: The suitable continent name. + """ + data = load_country_continent_data_set() + details = data.get(country_name.title()) + if not details: + return + return details.get(CONTINENT_NAME_KEY) + + +def load_city_country_data_set() -> List[Dict[str, str]]: + """Load the city-country data set. + + Returns: + list: The city-country data set. + """ + with open(CITY_TO_COUNTRY_DATA_SET_PATH) as file: + return json.load(file) + + +def get_country(city_name: str) -> Optional[str]: + """Get the country of a city. + Args: + city_name (str): The given city name. + Returns: + str: The suitable country name. + """ + data = load_city_country_data_set() + details = data.get(city_name.title()) + if not details: + return + return details.get(COUNTRY_NAME_KEY_IN_CITIES) + + +def get_subcountry(city_name: str) -> Optional[str]: + """Get the subcountry of a city. + Args: + city_name (str): The given city name. + Returns: + str: The suitable subcountry name. + """ + data = load_city_country_data_set() + details = data.get(city_name.title()) + if not details: + return + return details.get(SUBCOUNTRY_NAME_KEY_IN_CITIES) + + +async def get_api_data(url: str) -> Optional[List[Any]]: + """Get the data from an API url. + Args: + url (str): The API url. + Returns: + list: The data. + """ + try: + async with httpx.AsyncClient() as client: + resp = await client.get(url) + return resp.json() + except (json.JSONDecodeError, httpx.HTTPError): + logging.exception("Http Error") + + +async def parse_timezones_list() -> List[Tuple[str, ...]]: + """Parse the timezones list into pairs of continent-place. + Returns: + list: The parsed data. + """ + timezones = await get_api_data(TIMEZONES_BASE_URL) + if timezones: + return [tuple(timezone.split(PATH_SEPARETOR)) + for timezone in timezones] + + +async def get_timezones_parts(part: str) -> List[str]: + """Get a given part of the timezones. + Args: + part (str): The given part. + Returns: + list: a list of the relevant parts of the timezones list. + """ + parse_list = await parse_timezones_list() + return [timezone[TIMEZONE_PARTS_MAP[part]] for timezone in parse_list] + + +def standardize_country_or_place(place_name: str) -> Optional[str]: + """Standardize a given country or place name to the equivalent + name that appears in the timezone list. + Args: + place_name (str): The given country or place name. + Returns: + str: The standardized name. + """ + if place_name: + return place_name.replace(BLANK, UNDERSCORE).title() + + +async def standardize_continent(continent_name: str) -> Optional[str]: + """Standardize a given continent name to the equivalent name that + appears in the timezone list. + Args: + continent_name (str): The given continent name. + Returns: + str: The standardized name. + """ + if continent_name in await get_timezones_parts(CONTINENT): + return continent_name + + +async def search_timezone_by_just_place(place_name: str) -> Optional[str]: + """Search for a timezone in the timezones list by a given place name. + Args: + place_name (str): The given place name. + Returns: + str: The suitable timezone. + """ + timezones = await get_api_data(TIMEZONES_BASE_URL) + if not timezones: + return + res = [timezone for timezone in timezones if place_name in timezone] + if res: + return res[UNPACK_ELEMENT] + + +def generate_possible_timezone_path( + map_hierarchy: Dict[str, Optional[str]], +) -> List[Optional[str]]: + """Generate all possible timezone paths, given a map hierarchy + of continent -> country -> place. + Args: + map_hierarchy (dict): The hierarchy details. + Returns: + list: The list of possible timezones. + """ + prefix = map_hierarchy[CONTINENT] + possibilities = [ + f"{prefix}/{map_hierarchy[COUNTRY]}", + f"{prefix}/{map_hierarchy[PLACE]}", + ] + return possibilities + + +async def generate_possible_timezone_path_by_country( + country: str, + place_name: str, +) -> List[Optional[str]]: + """Generate possible timezone paths by country. + Args: + country (str): The country. + place_name (str): The place name. + Returns: + list: The list of possible timezones. + """ + map_hierarchy = { + CONTINENT: None, + COUNTRY: None, + PLACE: None, + } + possibilities = [] + map_hierarchy[COUNTRY] = country + map_hierarchy[PLACE] = place_name + continent = get_continent(country) + continent = await standardize_continent(continent) + map_hierarchy[CONTINENT] = continent + if continent: + return possibilities + generate_possible_timezone_path(map_hierarchy) + elif country in await get_timezones_parts(PLACE): + possibilities.append(await search_timezone_by_just_place(country)) + return possibilities + + +async def generate_possible_timezone_path_with_no_extra_data( + place_name: str, +) -> List[Optional[str]]: + """Generate possible timezone paths with no extra data. + Args: + place_name (str): The place name. + Returns: + list: The list of possible timezones. + """ + possibilities = [] + place_name = standardize_country_or_place(place_name) + if place_name in await get_timezones_parts(PLACE): + possibilities.append(await search_timezone_by_just_place(place_name)) + return possibilities + + +async def get_all_possible_timezone_paths_for_given_place( + place_name: str, +) -> Optional[List[str]]: + """Get all possible timezone paths for given place. + Args: + place_name (str): The given place name. + Returns: + list: The list of possible timezones. + """ + possibilities = [] + country = get_country(place_name) + country = standardize_country_or_place(country) + if country: + res = await generate_possible_timezone_path_by_country( + country, place_name + ) + if res: + return res + continent = get_continent(place_name) + continent = await standardize_continent(continent) + if not continent: + res = await generate_possible_timezone_path_with_no_extra_data( + place_name + ) + return res + return possibilities.append(f"{continent}/{place_name}") + + +async def get_arbitrary_timezone_of_country(place_name: str) -> str: + """Get an arbitrary timezone of country. + Args: + place_name (str): The given place name. + Returns: + str: The timezone. + """ + continent_url = f"{TIMEZONES_BASE_URL}/{place_name}" + api_data = await get_api_data(continent_url) + timezone = api_data[ARB_COUNTRY_TIMEZONE] + return f"{TIMEZONES_BASE_URL}/{timezone}" + + +def load_country_subcountry_data_set() -> List[Dict[str, str]]: + """Load the country-csubcountry data set. + + Returns: + list: The country-subcountry data set. + """ + with open(TIMEZONES_COUNTRY_SUBCOUNTRY_PATH) as file: + return json.load(file) + + +def get_timezone_from_subcountry(place_name: str) -> str: + """Get the timezone from the subcountry. + Args: + place_name (str): The given place name. + Returns: + str: The timezone. + """ + subcountry = get_subcountry(place_name) + country = get_country(place_name) + if subcountry: + for timezone, details in load_country_subcountry_data_set().items(): + if (details[SUBCOUNTRY_NAME_KEY_IN_CITIES] == subcountry) or ( + details[COUNTRY] == country + ): + return f"{TIMEZONES_BASE_URL}/{timezone}" + + +async def get_timezone_path_for_given_place(place_name: str) -> Optional[str]: + """Get a timezone path for a given place. + Args: + place_name (str): The given place name. + Returns: + str: The timezone path. + """ + possibilities = await get_all_possible_timezone_paths_for_given_place( + place_name + ) + timezones = await get_api_data(TIMEZONES_BASE_URL) + if not timezones: + return + for possibility in possibilities: + if possibility in timezones: + return f"{TIMEZONES_BASE_URL}/{possibility}" + # No explicit such timezones. Get an arbitrary timezone of country + if await standardize_continent(place_name.title()): + return await get_arbitrary_timezone_of_country(place_name) + return get_timezone_from_subcountry(place_name) + + +async def get_current_time_in_place(place_name: str) -> Optional[str]: + """Get the current time in a given place. + Args: + place_name (str): The given place name. + Returns: + str: The timezone path. + """ + path = await get_timezone_path_for_given_place(place_name) + if not path: + return + current_datetime_details = await get_api_data(path) + current_datetime_full = current_datetime_details[CURRENT_TIME_KEY] + current_datetime_parsed = dateutil.parser.parse(current_datetime_full) + current_time = current_datetime_parsed.strftime("%H:%M:%S") + return current_time + + +def get_part_of_day_and_feedback(time: datetime) -> Tuple[str, str]: + """Get the part of day and a suitable feedback for a given time. + Args: + time (datetime): The given time. + Returns: + tuple: The part of day description and the feedback. + """ + for part in PARTS_OF_THE_DAY_FEEDBACK: + start_time = datetime.strptime( + part.start, + "%H:%M:%S", + ) + end_time = datetime.strptime(part.end, "%H:%M:%S") + if time >= start_time and time <= end_time: + return part.time, part.desirability + + +def get_equivalent_time_in_place( + time_in_place: str, + time_part: datetime, + wanted_time: datetime, +) -> datetime: + """Get the equivalent time in place. + Args: + time_in_place (str): The time in place. + time_part (datetime): The current time part. + wanted_time (datetime): The wanted time here. + Returns: + datetime: The wanted time there. + """ + time_in_place = datetime.strptime(time_in_place, "%H:%M:%S") + delta_in_hours = int( + (time_part - time_in_place).total_seconds() / TOTAL_SEC_IN_HOUR, + ) + wanted_time_there = ( + (wanted_time + timedelta(hours=delta_in_hours)).strftime("%H:%M:%S",) + ) + return datetime.strptime(wanted_time_there, "%H:%M:%S") + + +async def meeting_possibility_feedback( + wanted_time_here: str, + place_name: str, +) -> Optional[Tuple[str, str, str]]: + """Get the equivalent time in a given place, + the part of the day of that time and a feedback. + Args: + wanted_time_here (str): The given time as string in format HH:MM:SS. + place_name (str): The given place name. + Returns: + tuple: The equivalent time in the given place, + the part of the day of that time and a feedback. + """ + now = datetime.now() + now_time_part = now.strftime("%H:%M:%S") + now_time_part = datetime.strptime(now_time_part, "%H:%M:%S") + wanted_time_here = datetime.strptime(wanted_time_here, "%H:%M:%S") + current_time_in_place = await get_current_time_in_place(place_name) + if current_time_in_place: + wanted_time_there = get_equivalent_time_in_place( + current_time_in_place, + now_time_part, + wanted_time_here, + ) + part_of_day, feedback = get_part_of_day_and_feedback(wanted_time_there) + return ( + f"{wanted_time_there.strftime('%H')}:" + f"{datetime.strftime(wanted_time_here, '%M:%S')}", + part_of_day, + feedback, + ) diff --git a/app/resources/country-continent.json b/app/resources/country-continent.json new file mode 100644 index 00000000..1894aa01 --- /dev/null +++ b/app/resources/country-continent.json @@ -0,0 +1 @@ +{"Afghanistan": {"Continent_Name": "Asia"}, "Albania": {"Continent_Name": "Europe"}, "Antarctica (The Territory South Of 60 Deg S)": {"Continent_Name": "Antarctica"}, "Algeria": {"Continent_Name": "Africa"}, "American Samoa": {"Continent_Name": "Oceania"}, "Andorra": {"Continent_Name": "Europe"}, "Angola": {"Continent_Name": "Africa"}, "Antigua And Barbuda": {"Continent_Name": "America"}, "Azerbaijan": {"Continent_Name": "Asia"}, "Argentina": {"Continent_Name": "America"}, "Australia": {"Continent_Name": "Oceania"}, "Austria": {"Continent_Name": "Europe"}, "Bahamas": {"Continent_Name": "America"}, "Bahrain": {"Continent_Name": "Asia"}, "Bangladesh": {"Continent_Name": "Asia"}, "Armenia": {"Continent_Name": "Asia"}, "Barbados": {"Continent_Name": "America"}, "Belgium": {"Continent_Name": "Europe"}, "Bermuda": {"Continent_Name": "America"}, "Bhutan": {"Continent_Name": "Asia"}, "Bolivia": {"Continent_Name": "America"}, "Bosnia And Herzegovina": {"Continent_Name": "Europe"}, "Botswana": {"Continent_Name": "Africa"}, "Bouvet Island (Bouvetoya)": {"Continent_Name": "Antarctica"}, "Brazil": {"Continent_Name": "America"}, "Belize": {"Continent_Name": "America"}, "British Indian Ocean Territory (Chagos Archipelago)": {"Continent_Name": "Asia"}, "Solomon Islands": {"Continent_Name": "Oceania"}, "British Virgin Islands": {"Continent_Name": "America"}, "Brunei Darussalam": {"Continent_Name": "Asia"}, "Bulgaria": {"Continent_Name": "Europe"}, "Myanmar": {"Continent_Name": "Asia"}, "Burundi": {"Continent_Name": "Africa"}, "Belarus": {"Continent_Name": "Europe"}, "Cambodia": {"Continent_Name": "Asia"}, "Cameroon": {"Continent_Name": "Africa"}, "Canada": {"Continent_Name": "America"}, "Cape Verde": {"Continent_Name": "Africa"}, "Cayman Islands": {"Continent_Name": "America"}, "Central African Republic": {"Continent_Name": "Africa"}, "Sri Lanka": {"Continent_Name": "Asia"}, "Chad": {"Continent_Name": "Africa"}, "Chile": {"Continent_Name": "America"}, "China": {"Continent_Name": "Asia"}, "Taiwan": {"Continent_Name": "Asia"}, "Christmas Island": {"Continent_Name": "Asia"}, "Cocos (Keeling) Islands": {"Continent_Name": "Asia"}, "Colombia": {"Continent_Name": "America"}, "Comoros": {"Continent_Name": "Africa"}, "Mayotte": {"Continent_Name": "Africa"}, "Congo": {"Continent_Name": "Africa"}, "Cook Islands": {"Continent_Name": "Oceania"}, "Costa Rica": {"Continent_Name": "America"}, "Croatia": {"Continent_Name": "Europe"}, "Cuba": {"Continent_Name": "America"}, "Cyprus": {"Continent_Name": "Asia"}, "Czech Republic": {"Continent_Name": "Europe"}, "Benin": {"Continent_Name": "Africa"}, "Denmark": {"Continent_Name": "Europe"}, "Dominica": {"Continent_Name": "America"}, "Dominican Republic": {"Continent_Name": "America"}, "Ecuador": {"Continent_Name": "America"}, "El Salvador": {"Continent_Name": "America"}, "Equatorial Guinea": {"Continent_Name": "Africa"}, "Ethiopia": {"Continent_Name": "Africa"}, "Eritrea": {"Continent_Name": "Africa"}, "Estonia": {"Continent_Name": "Europe"}, "Faroe Islands": {"Continent_Name": "Europe"}, "Falkland Islands (Malvinas)": {"Continent_Name": "America"}, "South Georgia And The South Sandwich Islands": {"Continent_Name": "Antarctica"}, "Fiji": {"Continent_Name": "Oceania"}, "Finland": {"Continent_Name": "Europe"}, "\u00c5land Islands": {"Continent_Name": "Europe"}, "France": {"Continent_Name": "Europe"}, "French Guiana": {"Continent_Name": "America"}, "French Polynesia": {"Continent_Name": "Oceania"}, "French Southern Territories": {"Continent_Name": "Antarctica"}, "Djibouti": {"Continent_Name": "Africa"}, "Gabon": {"Continent_Name": "Africa"}, "Georgia": {"Continent_Name": "Asia"}, "Gambia": {"Continent_Name": "Africa"}, "Palestinian Territory": {"Continent_Name": "Asia"}, "Germany": {"Continent_Name": "Europe"}, "Ghana": {"Continent_Name": "Africa"}, "Gibraltar": {"Continent_Name": "Europe"}, "Kiribati": {"Continent_Name": "Oceania"}, "Greece": {"Continent_Name": "Europe"}, "Greenland": {"Continent_Name": "America"}, "Grenada": {"Continent_Name": "America"}, "Guadeloupe": {"Continent_Name": "America"}, "Guam": {"Continent_Name": "Oceania"}, "Guatemala": {"Continent_Name": "America"}, "Guinea": {"Continent_Name": "Africa"}, "Guyana": {"Continent_Name": "America"}, "Haiti": {"Continent_Name": "America"}, "Heard Island And Mcdonald Islands": {"Continent_Name": "Antarctica"}, "Holy See (Vatican City State)": {"Continent_Name": "Europe"}, "Honduras": {"Continent_Name": "America"}, "Hong Kong": {"Continent_Name": "Asia"}, "Hungary": {"Continent_Name": "Europe"}, "Iceland": {"Continent_Name": "Europe"}, "India": {"Continent_Name": "Asia"}, "Indonesia": {"Continent_Name": "Asia"}, "Iran": {"Continent_Name": "Asia"}, "Iraq": {"Continent_Name": "Asia"}, "Ireland": {"Continent_Name": "Europe"}, "Israel": {"Continent_Name": "Asia"}, "Italy": {"Continent_Name": "Europe"}, "Cote D'Ivoire": {"Continent_Name": "Africa"}, "Jamaica": {"Continent_Name": "America"}, "Japan": {"Continent_Name": "Asia"}, "Kazakhstan": {"Continent_Name": "Asia"}, "Jordan": {"Continent_Name": "Asia"}, "Kenya": {"Continent_Name": "Africa"}, "Korea": {"Continent_Name": "Asia"}, "Kuwait": {"Continent_Name": "Asia"}, "Kyrgyz Republic": {"Continent_Name": "Asia"}, "Lao People'S Democratic Republic": {"Continent_Name": "Asia"}, "Lebanon": {"Continent_Name": "Asia"}, "Lesotho": {"Continent_Name": "Africa"}, "Latvia": {"Continent_Name": "Europe"}, "Liberia": {"Continent_Name": "Africa"}, "Libyan Arab Jamahiriya": {"Continent_Name": "Africa"}, "Liechtenstein": {"Continent_Name": "Europe"}, "Lithuania": {"Continent_Name": "Europe"}, "Luxembourg": {"Continent_Name": "Europe"}, "Macao": {"Continent_Name": "Asia"}, "Madagascar": {"Continent_Name": "Africa"}, "Malawi": {"Continent_Name": "Africa"}, "Malaysia": {"Continent_Name": "Asia"}, "Maldives": {"Continent_Name": "Asia"}, "Mali": {"Continent_Name": "Africa"}, "Malta": {"Continent_Name": "Europe"}, "Martinique": {"Continent_Name": "America"}, "Mauritania": {"Continent_Name": "Africa"}, "Mauritius": {"Continent_Name": "Africa"}, "Mexico": {"Continent_Name": "America"}, "Monaco": {"Continent_Name": "Europe"}, "Mongolia": {"Continent_Name": "Asia"}, "Moldova": {"Continent_Name": "Europe"}, "Montenegro": {"Continent_Name": "Europe"}, "Montserrat": {"Continent_Name": "America"}, "Morocco": {"Continent_Name": "Africa"}, "Mozambique": {"Continent_Name": "Africa"}, "Oman": {"Continent_Name": "Asia"}, "Namibia": {"Continent_Name": "Africa"}, "Nauru": {"Continent_Name": "Oceania"}, "Nepal": {"Continent_Name": "Asia"}, "Netherlands": {"Continent_Name": "Europe"}, "Netherlands Antilles": {"Continent_Name": "America"}, "Cura\u00e7ao": {"Continent_Name": "America"}, "Aruba": {"Continent_Name": "America"}, "Sint Maarten (Netherlands)": {"Continent_Name": "America"}, "Bonaire": {"Continent_Name": "America"}, "New Caledonia": {"Continent_Name": "Oceania"}, "Vanuatu": {"Continent_Name": "Oceania"}, "New Zealand": {"Continent_Name": "Oceania"}, "Nicaragua": {"Continent_Name": "America"}, "Niger": {"Continent_Name": "Africa"}, "Nigeria": {"Continent_Name": "Africa"}, "Niue": {"Continent_Name": "Oceania"}, "Norfolk Island": {"Continent_Name": "Oceania"}, "Norway": {"Continent_Name": "Europe"}, "Northern Mariana Islands": {"Continent_Name": "Oceania"}, "United States Minor Outlying Islands": {"Continent_Name": "America"}, "Micronesia": {"Continent_Name": "Oceania"}, "Marshall Islands": {"Continent_Name": "Oceania"}, "Palau": {"Continent_Name": "Oceania"}, "Pakistan": {"Continent_Name": "Asia"}, "Panama": {"Continent_Name": "America"}, "Papua New Guinea": {"Continent_Name": "Oceania"}, "Paraguay": {"Continent_Name": "America"}, "Peru": {"Continent_Name": "America"}, "Philippines": {"Continent_Name": "Asia"}, "Pitcairn Islands": {"Continent_Name": "Oceania"}, "Poland": {"Continent_Name": "Europe"}, "Portugal": {"Continent_Name": "Europe"}, "Guinea-Bissau": {"Continent_Name": "Africa"}, "Timor-Leste": {"Continent_Name": "Asia"}, "Puerto Rico": {"Continent_Name": "America"}, "Qatar": {"Continent_Name": "Asia"}, "Reunion": {"Continent_Name": "Africa"}, "Romania": {"Continent_Name": "Europe"}, "Russian Federation": {"Continent_Name": "Asia"}, "Rwanda": {"Continent_Name": "Africa"}, "Saint Barthelemy": {"Continent_Name": "America"}, "Saint Helena": {"Continent_Name": "Africa"}, "Saint Kitts And Nevis": {"Continent_Name": "America"}, "Anguilla": {"Continent_Name": "America"}, "Saint Lucia": {"Continent_Name": "America"}, "Saint Martin": {"Continent_Name": "America"}, "Saint Pierre And Miquelon": {"Continent_Name": "America"}, "Saint Vincent And The Grenadines": {"Continent_Name": "America"}, "San Marino": {"Continent_Name": "Europe"}, "Sao Tome And Principe": {"Continent_Name": "Africa"}, "Saudi Arabia": {"Continent_Name": "Asia"}, "Senegal": {"Continent_Name": "Africa"}, "Serbia": {"Continent_Name": "Europe"}, "Seychelles": {"Continent_Name": "Africa"}, "Sierra Leone": {"Continent_Name": "Africa"}, "Singapore": {"Continent_Name": "Asia"}, "Slovakia (Slovak Republic)": {"Continent_Name": "Europe"}, "Vietnam": {"Continent_Name": "Asia"}, "Slovenia": {"Continent_Name": "Europe"}, "Somalia": {"Continent_Name": "Africa"}, "South Africa": {"Continent_Name": "Africa"}, "Zimbabwe": {"Continent_Name": "Africa"}, "Spain": {"Continent_Name": "Europe"}, "South Sudan": {"Continent_Name": "Africa"}, "Western Sahara": {"Continent_Name": "Africa"}, "Sudan": {"Continent_Name": "Africa"}, "Suriname": {"Continent_Name": "America"}, "Svalbard & Jan Mayen Islands": {"Continent_Name": "Europe"}, "Swaziland": {"Continent_Name": "Africa"}, "Sweden": {"Continent_Name": "Europe"}, "Switzerland": {"Continent_Name": "Europe"}, "Syrian Arab Republic": {"Continent_Name": "Asia"}, "Tajikistan": {"Continent_Name": "Asia"}, "Thailand": {"Continent_Name": "Asia"}, "Togo": {"Continent_Name": "Africa"}, "Tokelau": {"Continent_Name": "Oceania"}, "Tonga": {"Continent_Name": "Oceania"}, "Trinidad And Tobago": {"Continent_Name": "America"}, "United Arab Emirates": {"Continent_Name": "Asia"}, "Tunisia": {"Continent_Name": "Africa"}, "Turkey": {"Continent_Name": "Asia"}, "Turkmenistan": {"Continent_Name": "Asia"}, "Turks And Caicos Islands": {"Continent_Name": "America"}, "Tuvalu": {"Continent_Name": "Oceania"}, "Uganda": {"Continent_Name": "Africa"}, "Ukraine": {"Continent_Name": "Europe"}, "Macedonia": {"Continent_Name": "Europe"}, "Egypt": {"Continent_Name": "Africa"}, "United Kingdom Of Great Britain & Northern Ireland": {"Continent_Name": "Europe"}, "Guernsey": {"Continent_Name": "Europe"}, "Jersey": {"Continent_Name": "Europe"}, "Isle Of Man": {"Continent_Name": "Europe"}, "Tanzania": {"Continent_Name": "Africa"}, "United States Of America": {"Continent_Name": "America"}, "United States Virgin Islands": {"Continent_Name": "America"}, "Burkina Faso": {"Continent_Name": "Africa"}, "Uruguay": {"Continent_Name": "America"}, "Uzbekistan": {"Continent_Name": "Asia"}, "Venezuela": {"Continent_Name": "America"}, "Wallis And Futuna": {"Continent_Name": "Oceania"}, "Samoa": {"Continent_Name": "Oceania"}, "Yemen": {"Continent_Name": "Asia"}, "Zambia": {"Continent_Name": "Africa"}, "Disputed Territory": {"Continent_Name": "Oceania"}, "Iraq-Saudi Arabia Neutral Zone": {"Continent_Name": "Asia"}, "United Nations Neutral Zone": {"Continent_Name": "Asia"}, "Spratly Islands": {"Continent_Name": "Asia"}} diff --git a/app/resources/country-subcountry.json b/app/resources/country-subcountry.json new file mode 100644 index 00000000..fc350e35 --- /dev/null +++ b/app/resources/country-subcountry.json @@ -0,0 +1,348 @@ +{ + "Africa/Abidjan": {"country": "Ivory Coast", "subcountry": "Lagunes"}, + "Africa/Accra": {"country": "Ghana", "subcountry": "Greater Accra"}, + "Africa/Algiers": {"country": "Algeria", "subcountry": "Alger"}, + "Africa/Bissau": {"country": "Guinea-Bissau", "subcountry": "Bissau"}, + "Africa/Cairo": {"country": "Egypt", "subcountry": "Cairo Governorate"}, + "Africa/Casablanca": {"country": "Morocco", + "subcountry": "Grand Casablanca"}, + "Africa/Ceuta": {"country": "Spain", "subcountry": "Ceuta"}, + "Africa/Johannesburg": {"country": "South Africa", + "subcountry": "Gauteng"}, + "Africa/Juba": {"country": "Jordan", "subcountry": "Amman"}, + "Africa/Khartoum": {"country": "Sudan", "subcountry": "Khartoum"}, + "Africa/Lagos": {"country": "Mexico", "subcountry": "Jalisco"}, + "Africa/Maputo": {"country": "Mozambique", + "subcountry": "Maputo City"}, + "Africa/Monrovia": {"country": "Liberia", + "subcountry": "Montserrado"}, + "Africa/Nairobi": {"country": "Kenya", "subcountry": "Nairobi Area"}, + "Africa/Tripoli": {"country": "Lebanon", "subcountry": "Liban-Nord"}, + "Africa/Tunis": {"country": "Tunisia", "subcountry": "Tunis"}, + "Africa/Windhoek": {"country": "Namibia", "subcountry": "Khomas"}, + "America/Anchorage": {"country": "United States", + "subcountry": "Alaska"}, + "America/Argentina/Buenos_Aires": {"country": "Argentina", + "subcountry": "Buenos Aires F.D."}, + "America/Argentina/Catamarca": {"country": "Argentina", + "subcountry": "Catamarca"}, + "America/Argentina/Jujuy": {"country": "Argentina", + "subcountry": "Jujuy"}, + "America/Argentina/La_Rioja": {"country": "Argentina", + "subcountry": "La Rioja"}, + "America/Argentina/Mendoza": {"country": "Argentina", + "subcountry": "Mendoza"}, + "America/Argentina/Salta": {"country": "Argentina", + "subcountry": "Salta"}, + "America/Argentina/San_Juan": {"country": "Argentina", + "subcountry": "San Juan"}, + "America/Argentina/San_Luis": {"country": "Argentina", + "subcountry": "Corrientes"}, + "America/Argentina/Ushuaia": {"country": "Argentina", + "subcountry": "Tierra del Fuego"}, + "America/Belize": {"country": "Belize", "subcountry": "Belize"}, + "America/Boa_Vista": {"country": "Brazil", "subcountry": "Sao Paulo"}, + "America/Boise": {"country": "United States", "subcountry": "Idaho"}, + "America/Campo_Grande": {"country": "Brazil", + "subcountry": "Mato Grosso do Sul"}, + "America/Caracas": {"country": "Venezuela", "subcountry": "Capital"}, + "America/Cayenne": {"country": "French Guiana", "subcountry": "Guyane"}, + "America/Chicago": {"country": "United States", + "subcountry": "Illinois"}, + "America/Chihuahua": {"country": "Mexico", "subcountry": "Chihuahua"}, + "America/Costa_Rica": {"country": "Mexico", "subcountry": "Sinaloa"}, + "America/Denver": {"country": "United States", + "subcountry": "Colorado"}, + "America/Detroit": {"country": "United States", + "subcountry": "Michigan"}, + "America/Edmonton": {"country": "Canada", "subcountry": "Alberta"}, + "America/Fortaleza": {"country": "Brazil", "subcountry": "Ceará"}, + "America/Glace_Bay": {"country": "Canada", "subcountry": "Nova Scotia"}, + "America/Guatemala": {"country": "Guatemala", + "subcountry": "Chimaltenango"}, + "America/Guayaquil": {"country": "Ecuador", "subcountry": "Guayas"}, + "America/Halifax": {"country": "Canada", "subcountry": "Nova Scotia"}, + "America/Havana": {"country": "Cuba", "subcountry": "La Habana"}, + "America/Hermosillo": {"country": "Mexico", "subcountry": "Sonora"}, + "America/Indiana/Indianapolis": {"country": "United States", + "subcountry": "Indiana"}, + "America/Indiana/Knox": {"country": "United States", + "subcountry": "Tennessee"}, + "America/Indiana/Petersburg": {"country": "Russia", + "subcountry": "St.-Petersburg"}, + "America/Indiana/Vincennes": {"country": "France", + "subcountry": "Ile-de-France"}, + "America/Jamaica": {"country": "United States", + "subcountry": "Massachusetts"}, + "America/Juneau": {"country": "United States", "subcountry": "Alaska"}, + "America/Kentucky/Louisville": {"country": "United States", + "subcountry": "Kentucky"}, + "America/La_Paz": {"country": "Argentina", "subcountry": "Entre Rios"}, + "America/Lima": {"country": "Brazil", "subcountry": "Pernambuco"}, + "America/Los_Angeles": {"country": "United States", + "subcountry": "California"}, + "America/Managua": {"country": "Nicaragua", "subcountry": "Managua"}, + "America/Manaus": {"country": "Brazil", "subcountry": "Amazonas"}, + "America/Matamoros": {"country": "Mexico", "subcountry": "Tamaulipas"}, + "America/Mexico_City": {"country": "Mexico", + "subcountry": "Mexico City"}, + "America/Moncton": {"country": "Canada", + "subcountry": "New Brunswick"}, + "America/Monterrey": {"country": "Mexico", "subcountry": "Nuevo León"}, + "America/Montevideo": {"country": "Uruguay", + "subcountry": "Montevideo"}, + "America/Nassau": {"country": "Bahamas", + "subcountry": "New Providence"}, + "America/New_York": {"country": "United States", + "subcountry": "New Jersey"}, + "America/North_Dakota/Center": {"country": "United States", + "subcountry": "North Dakota"}, + "America/Nuuk": {"country": "Greenland", "subcountry": "Sermersooq"}, + "America/Ojinaga": {"country": "Mexico", "subcountry": "Chihuahua"}, + "America/Panama": {"country": "United States", "subcountry": "Florida"}, + "America/Paramaribo": {"country": "Suriname", + "subcountry": "Paramaribo"}, + "America/Phoenix": {"country": "United States", + "subcountry": "Pennsylvania"}, + "America/Port-au-Prince": {"country": "Haiti", "subcountry": "Ouest"}, + "America/Port_of_Spain": {"country": "Trinidad and Tobago", + "subcountry": "City of Port of Spain"}, + "America/Porto_Velho": {"country": "Brazil", + "subcountry": "Rond?nia"}, + "America/Puerto_Rico": {"country": "Argentina", + "subcountry": "Misiones"}, + "America/Punta_Arenas": {"country": "Chile", + "subcountry": "Magallanes"}, + "America/Recife": {"country": "Brazil", "subcountry": "Pernambuco"}, + "America/Regina": {"country": "Argentina", + "subcountry": "Rio Negro"}, + "America/Rio_Branco": {"country": "Brazil", + "subcountry": "Minas Gerais"}, + "America/Santiago": {"country": "Argentina", + "subcountry": "Santiago del Estero"}, + "America/Santo_Domingo": {"country": "Cuba", + "subcountry": "Villa Clara"}, + "America/Tegucigalpa": {"country": "Honduras", + "subcountry": "Francisco Morazán"}, + "America/Thunder_Bay": {"country": "Canada", "subcountry": "Ontario"}, + "America/Tijuana": {"country": "Mexico", + "subcountry": "Baja California"}, + "America/Toronto": {"country": "Canada", + "subcountry": "Ontario"}, + "America/Vancouver": {"country": "Canada", + "subcountry": "British Columbia"}, + "America/Whitehorse": {"country": "Canada", + "subcountry": "Yukon"}, + "America/Winnipeg": {"country": "Canada", + "subcountry": "Manitoba"}, + "America/Yellowknife": {"country": "Canada", + "subcountry": "Northwest Territories"}, + "Antarctica/Davis": {"country": "United States", + "subcountry": "California"}, + "Antarctica/Macquarie": {"country": "Australia", + "subcountry": "New South Wales"}, + "Antarctica/Palmer": {"country": "Australia", + "subcountry": "Northern Territory"}, + "Antarctica/Troll": {"country": "Sweden", + "subcountry": "V?stra G?taland"}, + "Asia/Almaty": {"country": "Kazakhstan", + "subcountry": "Almaty Qalasy"}, + "Asia/Amman": {"country": "Jordan", "subcountry": "Amman"}, + "Asia/Ashgabat": {"country": "Turkmenistan", "subcountry": "Ahal"}, + "Asia/Atyrau": {"country": "Kazakhstan", "subcountry": "Atyrau"}, + "Asia/Baghdad": {"country": "Iraq", + "subcountry": "Mayorality of Baghdad"}, + "Asia/Baku": {"country": "Azerbaijan", "subcountry": "Baki"}, + "Asia/Bangkok": {"country": "Thailand", "subcountry": "Bangkok"}, + "Asia/Barnaul": {"country": "Russia", "subcountry": "Altai Krai"}, + "Asia/Beirut": {"country": "Lebanon", "subcountry": "Beyrouth"}, + "Asia/Bishkek": {"country": "Kyrgyzstan", "subcountry": "Bishkek"}, + "Asia/Chita": {"country": "Russia", + "subcountry": "Transbaikal Territory"}, + "Asia/Colombo": {"country": "Brazil", "subcountry": "Paraná"}, + "Asia/Damascus": {"country": "Syria", "subcountry": "Dimashq"}, + "Asia/Dhaka": {"country": "Bangladesh", "subcountry": "Dhaka"}, + "Asia/Dili": {"country": "Egypt", "subcountry": "Al Bu?ayrah"}, + "Asia/Dubai": {"country": "United Arab Emirates", + "subcountry": "Dubai"}, + "Asia/Dushanbe": {"country": "Tajikistan", + "subcountry": "Dushanbe"}, + "Asia/Famagusta": {"country": "Cyprus", + "subcountry": "Ammochostos"}, + "Asia/Gaza": {"country": "Palestinian Territory", + "subcountry": "Gaza Strip"}, + "Asia/Hebron": {"country": "Palestinian Territory", + "subcountry": "West Bank"}, + "Asia/Ho_Chi_Minh": {"country": "Vietnam", + "subcountry": "Ho Chi Minh City"}, + "Asia/Hong_Kong": {"country": "Hong Kong", + "subcountry": "Central and Western"}, + "Asia/Hovd": {"country": "Mongolia", "subcountry": "?v?rhangay"}, + "Asia/Irkutsk": {"country": "Russia", "subcountry": "Irkutsk"}, + "Asia/Jakarta": {"country": "Indonesia", + "subcountry": "Jakarta Raya"}, + "Asia/Jayapura": {"country": "Indonesia", "subcountry": "Papua"}, + "Asia/Jerusalem": {"country": "Israel", + "subcountry": "Jerusalem"}, + "Asia/Kabul": {"country": "Afghanistan", "subcountry": "Kabul"}, + "Asia/Karachi": {"country": "Pakistan", "subcountry": "Sindh"}, + "Asia/Kathmandu": {"country": "Nepal", + "subcountry": "Central Region"}, + "Asia/Kolkata": {"country": "India", "subcountry": "West Bengal"}, + "Asia/Krasnoyarsk": {"country": "Russia", + "subcountry": "Krasnoyarskiy"}, + "Asia/Kuala_Lumpur": {"country": "Malaysia", + "subcountry": "Kuala Lumpur"}, + "Asia/Kuching": {"country": "Malaysia", "subcountry": "Sarawak"}, + "Asia/Macau": {"country": "Brazil", + "subcountry": "Rio Grande do Norte"}, + "Asia/Magadan": {"country": "Russia", "subcountry": "Magadan"}, + "Asia/Makassar": {"country": "Indonesia", + "subcountry": "South Sulawesi"}, + "Asia/Manila": {"country": "Philippines", + "subcountry": "Metro Manila"}, + "Asia/Nicosia": {"country": "Cyprus", "subcountry": "Lefkosia"}, + "Asia/Novokuznetsk": {"country": "Russia", + "subcountry": "Kemerovo"}, + "Asia/Novosibirsk": {"country": "Russia", + "subcountry": "Novosibirsk"}, + "Asia/Omsk": {"country": "Russia", "subcountry": "Omsk"}, + "Asia/Oral": {"country": "Kazakhstan", + "subcountry": "Batys Qazaqstan"}, + + "Asia/Pontianak": {"country": "Indonesia", + "subcountry": "West Kalimantan"}, + "Asia/Pyongyang": {"country": "North Korea", + "subcountry": "Pyongyang"}, + "Asia/Riyadh": {"country": "Saudi Arabia", + "subcountry": "Ar Riya?"}, + "Asia/Sakhalin": {"country": "Russia", + "subcountry": "Sakhalin"}, + "Asia/Seoul": {"country": "South Korea", + "subcountry": "Seoul"}, + "Asia/Shanghai": {"country": "China", + "subcountry": "Shanghai Shi"}, + "Asia/Singapore": {"country": "Singapore", + "subcountry": "Central Singapore"}, + "Asia/Taipei": {"country": "Taiwan", "subcountry": "Taipei"}, + "Asia/Tashkent": {"country": "Uzbekistan", + "subcountry": "Toshkent Shahri"}, + "Asia/Tbilisi": {"country": "Georgia", + "subcountry": "T'bilisi"}, + "Asia/Tehran": {"country": "Iran", "subcountry": "Tehran"}, + "Asia/Thimphu": {"country": "Bhutan", + "subcountry": "Thimphu"}, + "Asia/Tokyo": {"country": "Japan", "subcountry": "Tokyo"}, + "Asia/Tomsk": {"country": "Russia", "subcountry": "Tomsk"}, + "Asia/Vladivostok": {"country": "Russia", + "subcountry": "Primorskiy"}, + "Asia/Yakutsk": {"country": "Russia", "subcountry": "Sakha"}, + "Asia/Yangon": {"country": "Myanmar", "subcountry": "Yangon"}, + "Asia/Yekaterinburg": {"country": "Russia", + "subcountry": "Sverdlovsk"}, + "Asia/Yerevan": {"country": "Armenia", "subcountry": "Yerevan"}, + "Atlantic/Canary": {"country": "United Kingdom", + "subcountry": "England"}, + "Atlantic/Madeira": {"country": "Portugal", "subcountry": "Aveiro"}, + "Atlantic/Stanley": {"country": "Falkland Islands", + "subcountry": "N/A"}, + "Australia/Adelaide": {"country": "Australia", + "subcountry": "South Australia"}, + "Australia/Brisbane": {"country": "Australia", + "subcountry": "Queensland"}, + "Australia/Broken_Hill": {"country": "Australia", + "subcountry": "New South Wales"}, + "Australia/Darwin": {"country": "Australia", + "subcountry": "Northern Territory"}, + "Australia/Hobart": {"country": "Australia", "subcountry": "Tasmania"}, + "Australia/Melbourne": {"country": "Australia", + "subcountry": "Victoria"}, + "Australia/Perth": {"country": "Australia", + "subcountry": "Western Australia"}, + "Australia/Sydney": {"country": "Australia", + "subcountry": "New South Wales"}, + "Europe/Amsterdam": {"country": "Guyana", + "subcountry": "East Berbice-Corentyne"}, + "Europe/Andorra": {"country": "Andorra", + "subcountry": "Andorra la Vella"}, + "Europe/Astrakhan": {"country": "Russia", + "subcountry": "Astrakhan"}, + "Europe/Athens": {"country": "Greece", "subcountry": "Attica"}, + "Europe/Belgrade": {"country": "Serbia", + "subcountry": "Central Serbia"}, + "Europe/Berlin": {"country": "Germany", "subcountry": "Berlin"}, + "Europe/Brussels": {"country": "Belgium", + "subcountry": "Brussels Capital"}, + "Europe/Bucharest": {"country": "Romania", + "subcountry": "Bucuresti"}, + "Europe/Budapest": {"country": "Hungary", + "subcountry": "Budapest"}, + "Europe/Copenhagen": {"country": "Denmark", + "subcountry": "Capital Region"}, + "Europe/Dublin": {"country": "Ireland", "subcountry": "Leinster"}, + "Europe/Gibraltar": {"country": "Gibraltar", "subcountry": "N/A"}, + "Europe/Helsinki": {"country": "Finland", "subcountry": "Uusimaa"}, + "Europe/Kaliningrad": {"country": "Russia", + "subcountry": "Kaliningrad"}, + "Europe/Kiev": {"country": "Ukraine", "subcountry": "Kyiv City"}, + "Europe/Kirov": {"country": "Russia", "subcountry": "Murmansk"}, + "Europe/Lisbon": {"country": "Portugal", "subcountry": "Lisbon"}, + "Europe/London": {"country": "Canada", "subcountry": "Ontario"}, + "Europe/Luxembourg": {"country": "Luxembourg", + "subcountry": "Luxembourg"}, + "Europe/Madrid": {"country": "Colombia", + "subcountry": "Cundinamarca"}, + "Europe/Minsk": {"country": "Belarus", "subcountry": "Minsk City"}, + "Europe/Monaco": {"country": "Monaco", "subcountry": "None"}, + "Europe/Moscow": {"country": "Russia", "subcountry": "Moscow"}, + "Europe/Oslo": {"country": "Norway", "subcountry": "Oslo"}, + "Europe/Paris": {"country": "France", + "subcountry": "Ile-de-France"}, + "Europe/Prague": {"country": "Czech Republic", + "subcountry": "Praha"}, + "Europe/Riga": {"country": "Latvia", "subcountry": "Riga"}, + "Europe/Rome": {"country": "Italy", "subcountry": "Latium"}, + "Europe/Samara": {"country": "Russia", "subcountry": "Samara"}, + "Europe/Saratov": {"country": "Russia", "subcountry": "Saratov"}, + "Europe/Simferopol": {"country": "Ukraine", + "subcountry": "Crimea"}, + "Europe/Sofia": {"country": "Bulgaria", + "subcountry": "Sofia-Capital"}, + "Europe/Stockholm": {"country": "Sweden", + "subcountry": "Stockholm"}, + "Europe/Tallinn": {"country": "Estonia", "subcountry": "Harjumaa"}, + "Europe/Ulyanovsk": {"country": "Russia", "subcountry": "Ulyanovsk"}, + "Europe/Vienna": {"country": "Austria", "subcountry": "Vienna"}, + "Europe/Vilnius": {"country": "Lithuania", + "subcountry": "Vilnius County"}, + "Europe/Volgograd": {"country": "Russia", "subcountry": "Volgograd"}, + "Europe/Warsaw": {"country": "Poland", + "subcountry": "Masovian Voivodeship"}, + "Europe/Zurich": {"country": "United States", + "subcountry": "Illinois"}, + "Indian/Mahe": {"country": "India", + "subcountry": "Madhya Pradesh"}, + "Pacific/Apia": {"country": "Brazil", "subcountry": "Sao Paulo"}, + "Pacific/Auckland": {"country": "United Kingdom", + "subcountry": "England"}, + "Pacific/Chatham": {"country": "United Kingdom", + "subcountry": "England"}, + "Pacific/Funafuti": {"country": "Tuvalu", "subcountry": "Funafuti"}, + "Pacific/Gambier": {"country": "Australia", + "subcountry": "South Australia"}, + "Pacific/Guam": {"country": "Brazil", "subcountry": "Pará"}, + "Pacific/Honolulu": {"country": "United States", + "subcountry": "Hawaii"}, + "Pacific/Majuro": {"country": "Marshall Islands", + "subcountry": "Majuro Atoll"}, + "Pacific/Norfolk": {"country": "Canada", "subcountry": "Ontario"}, + "Pacific/Pago_Pago": {"country": "American Samoa", + "subcountry": "Eastern District"}, + "Pacific/Palau": {"country": "Mexico", "subcountry": "Coahuila"}, + "Pacific/Port_Moresby": {"country": "Papua New Guinea", + "subcountry": "National Capital"}, + "Pacific/Tarawa": {"country": "Kiribati", + "subcountry": "Gilbert Islands"}, + "Pacific/Wake": {"country": "United Kingdom", "subcountry": "England"}, + "Pacific/Wake": {"country": "United Kingdom", "subcountry": "England"} +} \ No newline at end of file diff --git a/app/resources/world-cities.json b/app/resources/world-cities.json new file mode 100644 index 00000000..ff9040e4 --- /dev/null +++ b/app/resources/world-cities.json @@ -0,0 +1 @@ +{"Les Escaldes": {"country": "Andorra", "subcountry": "Escaldes-Engordany"}, "Andorra La Vella": {"country": "Andorra", "subcountry": "Andorra la Vella"}, "Umm Al Qaywayn": {"country": "United Arab Emirates", "subcountry": "Umm al Qaywayn"}, "Ras Al-Khaimah": {"country": "United Arab Emirates", "subcountry": "Ra\u02bcs al Khaymah"}, "Khawr Fakk\u0101n": {"country": "United Arab Emirates", "subcountry": "Ash Sh\u0101riqah"}, "Dubai": {"country": "United Arab Emirates", "subcountry": "Dubai"}, "Dibba Al-Fujairah": {"country": "United Arab Emirates", "subcountry": "Al Fujayrah"}, "Dibba Al-Hisn": {"country": "United Arab Emirates", "subcountry": "Al Fujayrah"}, "Sharjah": {"country": "United Arab Emirates", "subcountry": "Ash Sh\u0101riqah"}, "Ar Ruways": {"country": "United Arab Emirates", "subcountry": "Abu Dhabi"}, "Al Fujayrah": {"country": "United Arab Emirates", "subcountry": "Al Fujayrah"}, "Al Ain": {"country": "United Arab Emirates", "subcountry": "Abu Dhabi"}, "Ajman": {"country": "United Arab Emirates", "subcountry": "Ajman"}, "Adh Dhayd": {"country": "United Arab Emirates", "subcountry": "Ash Sh\u0101riqah"}, "Abu Dhabi": {"country": "United Arab Emirates", "subcountry": "Abu Dhabi"}, "Zaranj": {"country": "Afghanistan", "subcountry": "N\u012bmr\u016bz"}, "Taloqan": {"country": "Afghanistan", "subcountry": "Takh\u0101r"}, "Sh\u012bn\u1e0fan\u1e0f": {"country": "Afghanistan", "subcountry": "Herat"}, "Shibirgh\u0101n": {"country": "Afghanistan", "subcountry": "Jowzj\u0101n"}, "Shahrak": {"country": "Afghanistan", "subcountry": "Ghowr"}, "Sar-E Pul": {"country": "Afghanistan", "subcountry": "Sar-e Pol"}, "Sang-E Ch\u0101rak": {"country": "Afghanistan", "subcountry": "Sar-e Pol"}, "A\u012bbak": {"country": "Afghanistan", "subcountry": "Samang\u0101n"}, "Rust\u0101q": {"country": "Afghanistan", "subcountry": "Takh\u0101r"}, "Qarq\u012bn": {"country": "Afghanistan", "subcountry": "Jowzj\u0101n"}, "Qar\u0101wul": {"country": "Afghanistan", "subcountry": "Kunduz"}, "Pul-E Khumr\u012b": {"country": "Afghanistan", "subcountry": "Wil\u0101yat-e Baghl\u0101n"}, "Paghm\u0101n": {"country": "Afghanistan", "subcountry": "Kabul"}, "Nahr\u012bn": {"country": "Afghanistan", "subcountry": "Wil\u0101yat-e Baghl\u0101n"}, "Maymana": {"country": "Afghanistan", "subcountry": "Faryab"}, "Mehtar L\u0101m": {"country": "Afghanistan", "subcountry": "Laghm\u0101n"}, "Maz\u0101r-E Shar\u012bf": {"country": "Afghanistan", "subcountry": "Balkh"}, "Lashkar G\u0101h": {"country": "Afghanistan", "subcountry": "Helmand"}, "Kushk": {"country": "Afghanistan", "subcountry": "Herat"}, "Kunduz": {"country": "Afghanistan", "subcountry": "Kunduz"}, "Kh\u014dst": {"country": "Afghanistan", "subcountry": "Khowst"}, "Khulm": {"country": "Afghanistan", "subcountry": "Balkh"}, "Kh\u0101sh": {"country": "Iran", "subcountry": "Sistan and Baluchestan"}, "Khanabad": {"country": "Afghanistan", "subcountry": "Kunduz"}, "Karukh": {"country": "Afghanistan", "subcountry": "Herat"}, "Kandah\u0101r": {"country": "Afghanistan", "subcountry": "Kandah\u0101r"}, "Kabul": {"country": "Afghanistan", "subcountry": "Kabul"}, "Jal\u0101l\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Jabal Os Saraj": {"country": "Afghanistan", "subcountry": "Parv\u0101n"}, "Her\u0101t": {"country": "Afghanistan", "subcountry": "Herat"}, "Ghormach": {"country": "Afghanistan", "subcountry": "Badghis"}, "Ghazni": {"country": "Afghanistan", "subcountry": "Ghazn\u012b"}, "Gereshk": {"country": "Afghanistan", "subcountry": "Helmand"}, "Gard\u0113z": {"country": "Afghanistan", "subcountry": "Paktia"}, "Fayzabad": {"country": "Afghanistan", "subcountry": "Badakhshan"}, "Farah": {"country": "Afghanistan", "subcountry": "Farah"}, "Kafir Qala": {"country": "Afghanistan", "subcountry": "Herat"}, "Charikar": {"country": "Afghanistan", "subcountry": "Parv\u0101n"}, "Barak\u012b Barak": {"country": "Afghanistan", "subcountry": "Lowgar"}, "B\u0101my\u0101n": {"country": "Afghanistan", "subcountry": "B\u0101m\u012b\u0101n"}, "Balkh": {"country": "Afghanistan", "subcountry": "Balkh"}, "Baghl\u0101n": {"country": "Afghanistan", "subcountry": "Wil\u0101yat-e Baghl\u0101n"}, "\u0100rt Khw\u0101jah": {"country": "Afghanistan", "subcountry": "Takh\u0101r"}, "\u0100sm\u0101r": {"country": "Afghanistan", "subcountry": "Konar"}, "Asad\u0101b\u0101d": {"country": "Iran", "subcountry": "Hamad\u0101n"}, "Andkh\u014dy": {"country": "Afghanistan", "subcountry": "Faryab"}, "B\u0101z\u0101rak": {"country": "Afghanistan", "subcountry": "Panjshir"}, "Markaz-E Woluswal\u012b-Ye \u0100ch\u012bn": {"country": "Afghanistan", "subcountry": "Nangarh\u0101r"}, "Saint John\u2019S": {"country": "Antigua and Barbuda", "subcountry": "Saint John"}, "The Valley": {"country": "Anguilla", "subcountry": "N/A"}, "Sarand\u00eb": {"country": "Albania", "subcountry": "Vlor\u00eb"}, "Kuk\u00ebs": {"country": "Albania", "subcountry": "Kuk\u00ebs"}, "Kor\u00e7\u00eb": {"country": "Albania", "subcountry": "Kor\u00e7\u00eb"}, "Gjirokast\u00ebr": {"country": "Albania", "subcountry": "Gjirokast\u00ebr"}, "Elbasan": {"country": "Albania", "subcountry": "Elbasan"}, "Burrel": {"country": "Albania", "subcountry": "Dib\u00ebr"}, "Vlor\u00eb": {"country": "Albania", "subcountry": "Vlor\u00eb"}, "Tirana": {"country": "Albania", "subcountry": "Tiran\u00eb"}, "Shkod\u00ebr": {"country": "Albania", "subcountry": "Shkod\u00ebr"}, "Patos Fshat": {"country": "Albania", "subcountry": "Fier"}, "Lushnj\u00eb": {"country": "Albania", "subcountry": "Fier"}, "Lezh\u00eb": {"country": "Albania", "subcountry": "Lezh\u00eb"}, "La\u00e7": {"country": "Albania", "subcountry": "Lezh\u00eb"}, "Ku\u00e7ov\u00eb": {"country": "Albania", "subcountry": "Berat"}, "Kruj\u00eb": {"country": "Albania", "subcountry": "Durr\u00ebs"}, "Kavaj\u00eb": {"country": "Albania", "subcountry": "Tiran\u00eb"}, "Fier-\u00c7if\u00e7i": {"country": "Albania", "subcountry": "Fier"}, "Fier": {"country": "Albania", "subcountry": "Fier"}, "Durr\u00ebs": {"country": "Albania", "subcountry": "Durr\u00ebs"}, "Berat": {"country": "Albania", "subcountry": "Berat"}, "Kapan": {"country": "Armenia", "subcountry": "Syunik Province"}, "Goris": {"country": "Armenia", "subcountry": "Syunik Province"}, "Hats\u2019Avan": {"country": "Armenia", "subcountry": "Syunik Province"}, "Artashat": {"country": "Armenia", "subcountry": "Ararat Province"}, "Ararat": {"country": "Armenia", "subcountry": "Ararat Province"}, "Yerevan": {"country": "Armenia", "subcountry": "Yerevan"}, "Ejmiatsin": {"country": "Armenia", "subcountry": "Armavir Province"}, "Spitak": {"country": "Armenia", "subcountry": "Lori Province"}, "Sevan": {"country": "Armenia", "subcountry": "Gegharkunik Province"}, "Masis": {"country": "Armenia", "subcountry": "Ararat Province"}, "Vanadzor": {"country": "Armenia", "subcountry": "Lori Province"}, "Gavarr": {"country": "Armenia", "subcountry": "Gegharkunik Province"}, "Hrazdan": {"country": "Armenia", "subcountry": "Kotayk Province"}, "Armavir": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Gyumri": {"country": "Armenia", "subcountry": "Shirak Province"}, "Ashtarak": {"country": "Armenia", "subcountry": "Aragatsotn Province"}, "Abovyan": {"country": "Armenia", "subcountry": "Kotayk Province"}, "Saurimo": {"country": "Angola", "subcountry": "Lunda Sul"}, "Lucapa": {"country": "Angola", "subcountry": "Lunda Norte"}, "Luau": {"country": "Angola", "subcountry": "Moxico"}, "U\u00edge": {"country": "Angola", "subcountry": "U\u00edge"}, "Soio": {"country": "Angola", "subcountry": "Zaire"}, "Nzeto": {"country": "Angola", "subcountry": "Zaire"}, "N\u2019Dalatando": {"country": "Angola", "subcountry": "Cuanza Norte"}, "Mbanza Congo": {"country": "Angola", "subcountry": "Zaire"}, "Malanje": {"country": "Angola", "subcountry": "Malanje"}, "Luanda": {"country": "Angola", "subcountry": "Luanda"}, "Caxito": {"country": "Angola", "subcountry": "Bengo"}, "Cabinda": {"country": "Angola", "subcountry": "Cabinda"}, "Sumbe": {"country": "Angola", "subcountry": "Cuanza Sul"}, "Namibe": {"country": "Angola", "subcountry": "Namibe"}, "Menongue": {"country": "Angola", "subcountry": "Cuando Cubango"}, "Luena": {"country": "Angola", "subcountry": "Moxico"}, "Lubango": {"country": "Angola", "subcountry": "Hu\u00edla"}, "Longonjo": {"country": "Angola", "subcountry": "Huambo"}, "Lobito": {"country": "Angola", "subcountry": "Benguela"}, "Cuito": {"country": "Angola", "subcountry": "Bi\u00e9"}, "Huambo": {"country": "Angola", "subcountry": "Huambo"}, "Catumbela": {"country": "Angola", "subcountry": "Benguela"}, "Catabola": {"country": "Angola", "subcountry": "Bi\u00e9"}, "Camacupa": {"country": "Angola", "subcountry": "Bi\u00e9"}, "Caluquembe": {"country": "Angola", "subcountry": "Hu\u00edla"}, "Ca\u00e1la": {"country": "Angola", "subcountry": "Huambo"}, "Benguela": {"country": "Angola", "subcountry": "Benguela"}, "Z\u00e1rate": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Villa Ocampo": {"country": "Argentina", "subcountry": "Santa Fe"}, "Villa Lugano": {"country": "Argentina", "subcountry": "Buenos Aires F.D."}, "Villaguay": {"country": "Argentina", "subcountry": "Entre Rios"}, "Villa Gesell": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Tigre": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Tandil": {"country": "Argentina", "subcountry": "Buenos Aires"}, "San Vicente": {"country": "El Salvador", "subcountry": "San Vicente"}, "Santo Tom\u00e9": {"country": "Argentina", "subcountry": "Santa Fe"}, "Santa Elena": {"country": "Ecuador", "subcountry": "Santa Elena"}, "San Pedro": {"country": "United States", "subcountry": "California"}, "San Luis Del Palmar": {"country": "Argentina", "subcountry": "Corrientes"}, "San Lorenzo": {"country": "United States", "subcountry": "California"}, "San Javier": {"country": "Spain", "subcountry": "Murcia"}, "San Isidro": {"country": "Peru", "subcountry": "Lima region"}, "Saladas": {"country": "Argentina", "subcountry": "Corrientes"}, "Retiro": {"country": "Spain", "subcountry": "Madrid"}, "Resistencia": {"country": "Argentina", "subcountry": "Chaco"}, "Reconquista": {"country": "Argentina", "subcountry": "Santa Fe"}, "Quilmes": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Puerto Rico": {"country": "Argentina", "subcountry": "Misiones"}, "Puerto Iguaz\u00fa": {"country": "Argentina", "subcountry": "Misiones"}, "Puerto Esperanza": {"country": "Argentina", "subcountry": "Misiones"}, "Puerto Eldorado": {"country": "Argentina", "subcountry": "Misiones"}, "Posadas": {"country": "Argentina", "subcountry": "Misiones"}, "Pontevedra": {"country": "Spain", "subcountry": "Galicia"}, "Piran\u00e9": {"country": "Argentina", "subcountry": "Formosa"}, "Paso De Los Libres": {"country": "Argentina", "subcountry": "Corrientes"}, "Ober\u00e1": {"country": "Argentina", "subcountry": "Misiones"}, "Necochea": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Mor\u00f3n": {"country": "Venezuela", "subcountry": "Carabobo"}, "Monte Caseros": {"country": "Argentina", "subcountry": "Corrientes"}, "Montecarlo": {"country": "Argentina", "subcountry": "Misiones"}, "Mercedes": {"country": "Uruguay", "subcountry": "Soriano"}, "Mar Del Plata": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Luj\u00e1n": {"country": "Argentina", "subcountry": "Buenos Aires"}, "La Plata": {"country": "Colombia", "subcountry": "Huila"}, "La Paz": {"country": "Uruguay", "subcountry": "Canelones"}, "Jard\u00edn Am\u00e9rica": {"country": "Argentina", "subcountry": "Misiones"}, "Gualeguaych\u00fa": {"country": "Argentina", "subcountry": "Entre Rios"}, "Gualeguay": {"country": "Argentina", "subcountry": "Entre Rios"}, "Goya": {"country": "Argentina", "subcountry": "Corrientes"}, "Gobernador Ingeniero Valent\u00edn Virasoro": {"country": "Argentina", "subcountry": "Corrientes"}, "General Jos\u00e9 De San Mart\u00edn": {"country": "Argentina", "subcountry": "Chaco"}, "Garup\u00e1": {"country": "Argentina", "subcountry": "Misiones"}, "Formosa": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Fontana": {"country": "United States", "subcountry": "California"}, "Federal": {"country": "Argentina", "subcountry": "Entre Rios"}, "Esquina": {"country": "Argentina", "subcountry": "Corrientes"}, "El Soberbio": {"country": "Argentina", "subcountry": "Misiones"}, "Dolores": {"country": "Uruguay", "subcountry": "Soriano"}, "Curuz\u00fa Cuati\u00e1": {"country": "Argentina", "subcountry": "Corrientes"}, "Corrientes": {"country": "Argentina", "subcountry": "Corrientes"}, "Concordia": {"country": "Argentina", "subcountry": "Entre Rios"}, "Concepci\u00f3n Del Uruguay": {"country": "Argentina", "subcountry": "Entre Rios"}, "Colegiales": {"country": "Argentina", "subcountry": "Buenos Aires F.D."}, "Chajar\u00ed": {"country": "Argentina", "subcountry": "Entre Rios"}, "Campana": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Buenos Aires": {"country": "Argentina", "subcountry": "Buenos Aires F.D."}, "Barranqueras": {"country": "Argentina", "subcountry": "Chaco"}, "Azul": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Avellaneda": {"country": "Argentina", "subcountry": "Santa Fe"}, "Arist\u00f3bulo Del Valle": {"country": "Argentina", "subcountry": "Misiones"}, "Zapala": {"country": "Argentina", "subcountry": "Neuquen"}, "Yerba Buena": {"country": "Argentina", "subcountry": "Tucum\u00e1n"}, "Villa Regina": {"country": "Argentina", "subcountry": "Rio Negro"}, "Villa Paula De Sarmiento": {"country": "Argentina", "subcountry": "San Juan"}, "Villa Nueva": {"country": "Guatemala", "subcountry": "Guatemala"}, "Villa Mar\u00eda": {"country": "Argentina", "subcountry": "Cordoba"}, "Villa Dolores": {"country": "Argentina", "subcountry": "Cordoba"}, "Villa Constituci\u00f3n": {"country": "Argentina", "subcountry": "Santa Fe"}, "Villa Carlos Paz": {"country": "Argentina", "subcountry": "Cordoba"}, "Villa \u00c1ngela": {"country": "Argentina", "subcountry": "Chaco"}, "Villa Allende": {"country": "Argentina", "subcountry": "Cordoba"}, "Viedma": {"country": "Argentina", "subcountry": "Rio Negro"}, "Victoria": {"country": "Seychelles", "subcountry": "English River"}, "Vera": {"country": "Argentina", "subcountry": "Santa Fe"}, "Venado Tuerto": {"country": "Argentina", "subcountry": "Santa Fe"}, "Veinticinco De Mayo": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Ushuaia": {"country": "Argentina", "subcountry": "Tierra del Fuego"}, "Unquillo": {"country": "Argentina", "subcountry": "Cordoba"}, "Tres Isletas": {"country": "Argentina", "subcountry": "Chaco"}, "Tres Arroyos": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Trelew": {"country": "Argentina", "subcountry": "Chubut"}, "Termas De R\u00edo Hondo": {"country": "Argentina", "subcountry": "Santiago del Estero"}, "Tartagal": {"country": "Argentina", "subcountry": "Salta"}, "Taf\u00ed Viejo": {"country": "Argentina", "subcountry": "Tucum\u00e1n"}, "Sunchales": {"country": "Argentina", "subcountry": "Santa Fe"}, "Santiago Del Estero": {"country": "Argentina", "subcountry": "Santiago del Estero"}, "Santa Rosa": {"country": "United States", "subcountry": "California"}, "Santa Luc\u00eda": {"country": "Uruguay", "subcountry": "Canelones"}, "Santa Fe De La Vera Cruz": {"country": "Argentina", "subcountry": "Santa Fe"}, "San Salvador De Jujuy": {"country": "Argentina", "subcountry": "Jujuy"}, "San Ram\u00f3n De La Nueva Or\u00e1n": {"country": "Argentina", "subcountry": "Salta"}, "San Rafael": {"country": "United States", "subcountry": "California"}, "San Nicol\u00e1s De Los Arroyos": {"country": "Argentina", "subcountry": "Buenos Aires"}, "San Miguel De Tucum\u00e1n": {"country": "Argentina", "subcountry": "Tucum\u00e1n"}, "San Mart\u00edn De Los Andes": {"country": "Argentina", "subcountry": "Neuquen"}, "San Mart\u00edn": {"country": "El Salvador", "subcountry": "Cuscatl\u00e1n"}, "San Luis": {"country": "United States", "subcountry": "Arizona"}, "San Justo": {"country": "Argentina", "subcountry": "Santa Fe"}, "San Juan": {"country": "Puerto Rico", "subcountry": "San Juan"}, "San Jos\u00e9 De J\u00e1chal": {"country": "Argentina", "subcountry": "San Juan"}, "San Jorge": {"country": "Argentina", "subcountry": "Santa Fe"}, "San Francisco": {"country": "United States", "subcountry": "California"}, "San Fernando Del Valle De Catamarca": {"country": "Argentina", "subcountry": "Catamarca"}, "San Antonio Oeste": {"country": "Argentina", "subcountry": "Rio Negro"}, "Salta": {"country": "Argentina", "subcountry": "Salta"}, "Rufino": {"country": "Argentina", "subcountry": "Santa Fe"}, "Rosario": {"country": "Argentina", "subcountry": "Santa Fe"}, "R\u00edo Tercero": {"country": "Argentina", "subcountry": "Cordoba"}, "R\u00edo Segundo": {"country": "Argentina", "subcountry": "Cordoba"}, "R\u00edo Gallegos": {"country": "Argentina", "subcountry": "Santa Cruz"}, "R\u00edo Cuarto": {"country": "Argentina", "subcountry": "Cordoba"}, "R\u00edo Ceballos": {"country": "Argentina", "subcountry": "Cordoba"}, "Rawson": {"country": "Argentina", "subcountry": "Chubut"}, "Rafaela": {"country": "Argentina", "subcountry": "Santa Fe"}, "Quitilipi": {"country": "Argentina", "subcountry": "Chaco"}, "Punta Alta": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Puerto Madryn": {"country": "Argentina", "subcountry": "Chubut"}, "Presidencia Roque S\u00e1enz Pe\u00f1a": {"country": "Argentina", "subcountry": "Chaco"}, "Pocito": {"country": "Argentina", "subcountry": "San Juan"}, "Plottier": {"country": "Argentina", "subcountry": "Neuquen"}, "Pergamino": {"country": "Argentina", "subcountry": "Buenos Aires"}, "P\u00e9rez": {"country": "Argentina", "subcountry": "Santa Fe"}, "Paran\u00e1": {"country": "Argentina", "subcountry": "Entre Rios"}, "Palpal\u00e1": {"country": "Argentina", "subcountry": "Jujuy"}, "Olavarr\u00eda": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Nueve De Julio": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Neuqu\u00e9n": {"country": "Argentina", "subcountry": "Neuquen"}, "Morteros": {"country": "Argentina", "subcountry": "Cordoba"}, "Monteros": {"country": "Argentina", "subcountry": "Tucum\u00e1n"}, "Mendoza": {"country": "Argentina", "subcountry": "Mendoza"}, "Marcos Ju\u00e1rez": {"country": "Argentina", "subcountry": "Cordoba"}, "Machagai": {"country": "Argentina", "subcountry": "Chaco"}, "Lincoln": {"country": "United States", "subcountry": "Nebraska"}, "Libertador General San Mart\u00edn": {"country": "Argentina", "subcountry": "Jujuy"}, "Las Bre\u00f1as": {"country": "Argentina", "subcountry": "Chaco"}, "La Rioja": {"country": "Argentina", "subcountry": "La Rioja"}, "La Falda": {"country": "Argentina", "subcountry": "Cordoba"}, "La Calera": {"country": "Argentina", "subcountry": "Cordoba"}, "Laboulaye": {"country": "Argentina", "subcountry": "Cordoba"}, "Jun\u00edn": {"country": "Peru", "subcountry": "Jun\u00edn"}, "Joaqu\u00edn V. Gonz\u00e1lez": {"country": "Argentina", "subcountry": "Salta"}, "Jes\u00fas Mar\u00eda": {"country": "Mexico", "subcountry": "Aguascalientes"}, "Granadero Baigorria": {"country": "Argentina", "subcountry": "Santa Fe"}, "Gobernador G\u00e1lvez": {"country": "Argentina", "subcountry": "Santa Fe"}, "General Roca": {"country": "Argentina", "subcountry": "Rio Negro"}, "General Pinedo": {"country": "Argentina", "subcountry": "Chaco"}, "General Pico": {"country": "Argentina", "subcountry": "La Pampa"}, "General Enrique Mosconi": {"country": "Argentina", "subcountry": "Salta"}, "G\u00e1lvez": {"country": "Argentina", "subcountry": "Santa Fe"}, "Firmat": {"country": "Argentina", "subcountry": "Santa Fe"}, "Famaill\u00e1": {"country": "Argentina", "subcountry": "Tucum\u00e1n"}, "Esquel": {"country": "Argentina", "subcountry": "Chubut"}, "Esperanza": {"country": "Dominican Republic", "subcountry": "Valverde"}, "Embarcaci\u00f3n": {"country": "Argentina", "subcountry": "Salta"}, "Embalse": {"country": "Argentina", "subcountry": "Cordoba"}, "El Bols\u00f3n": {"country": "Argentina", "subcountry": "Rio Negro"}, "Diamante": {"country": "Argentina", "subcountry": "Entre Rios"}, "De\u00e1n Funes": {"country": "Argentina", "subcountry": "Cordoba"}, "Cutral-C\u00f3": {"country": "Argentina", "subcountry": "Neuquen"}, "Cruz Del Eje": {"country": "Argentina", "subcountry": "Cordoba"}, "Crespo": {"country": "Argentina", "subcountry": "Entre Rios"}, "Cosqu\u00edn": {"country": "Argentina", "subcountry": "Cordoba"}, "Coronel Su\u00e1rez": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Coronda": {"country": "Argentina", "subcountry": "Santa Fe"}, "C\u00f3rdoba": {"country": "Mexico", "subcountry": "Veracruz"}, "Comodoro Rivadavia": {"country": "Argentina", "subcountry": "Chubut"}, "Cipolletti": {"country": "Argentina", "subcountry": "Rio Negro"}, "Cinco Saltos": {"country": "Argentina", "subcountry": "Rio Negro"}, "Chivilcoy": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Chimbas": {"country": "Argentina", "subcountry": "San Juan"}, "Chilecito": {"country": "Argentina", "subcountry": "La Rioja"}, "Charata": {"country": "Argentina", "subcountry": "Chaco"}, "Chacabuco": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Centenario": {"country": "Argentina", "subcountry": "Neuquen"}, "Caucete": {"country": "Argentina", "subcountry": "San Juan"}, "Catriel": {"country": "Argentina", "subcountry": "Rio Negro"}, "Castelli": {"country": "Argentina", "subcountry": "Chaco"}, "Casilda": {"country": "Argentina", "subcountry": "Santa Fe"}, "Carcara\u00f1\u00e1": {"country": "Argentina", "subcountry": "Santa Fe"}, "Capit\u00e1n Berm\u00fadez": {"country": "Argentina", "subcountry": "Santa Fe"}, "Ca\u00f1ada De G\u00f3mez": {"country": "Argentina", "subcountry": "Santa Fe"}, "Caleta Olivia": {"country": "Argentina", "subcountry": "Santa Cruz"}, "Bell Ville": {"country": "Argentina", "subcountry": "Cordoba"}, "Bella Vista": {"country": "United States", "subcountry": "Arkansas"}, "Bah\u00eda Blanca": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Arroyo Seco": {"country": "Argentina", "subcountry": "Santa Fe"}, "Arroyito": {"country": "Argentina", "subcountry": "Cordoba"}, "A\u00f1atuya": {"country": "Argentina", "subcountry": "Santiago del Estero"}, "Alta Gracia": {"country": "Argentina", "subcountry": "Cordoba"}, "Allen": {"country": "United States", "subcountry": "Texas"}, "Alderetes": {"country": "Argentina", "subcountry": "Tucum\u00e1n"}, "Albard\u00f3n": {"country": "Argentina", "subcountry": "San Juan"}, "Aguilares": {"country": "El Salvador", "subcountry": "San Salvador"}, "Villa Santa Rita": {"country": "Argentina", "subcountry": "Buenos Aires F.D."}, "Villa Mercedes": {"country": "Argentina", "subcountry": "San Luis"}, "San Carlos De Bariloche": {"country": "Argentina", "subcountry": "Rio Negro"}, "Adrogu\u00e9": {"country": "Argentina", "subcountry": "Buenos Aires"}, "Pago Pago": {"country": "American Samoa", "subcountry": "Eastern District"}, "Wolfsberg": {"country": "Austria", "subcountry": "Carinthia"}, "Wiener Neustadt": {"country": "Austria", "subcountry": "Lower Austria"}, "Vienna": {"country": "Austria", "subcountry": "Vienna"}, "Wels": {"country": "Austria", "subcountry": "Upper Austria"}, "Weinzierl Bei Krems": {"country": "Austria", "subcountry": "Lower Austria"}, "Villach": {"country": "Austria", "subcountry": "Carinthia"}, "Traun": {"country": "Austria", "subcountry": "Upper Austria"}, "Traiskirchen": {"country": "Austria", "subcountry": "Lower Austria"}, "Ternitz": {"country": "Austria", "subcountry": "Lower Austria"}, "Steyr": {"country": "Austria", "subcountry": "Upper Austria"}, "Spittal An Der Drau": {"country": "Austria", "subcountry": "Carinthia"}, "Schwechat": {"country": "Austria", "subcountry": "Lower Austria"}, "Sankt P\u00f6lten": {"country": "Austria", "subcountry": "Lower Austria"}, "Salzburg": {"country": "Austria", "subcountry": "Salzburg"}, "Saalfelden Am Steinernen Meer": {"country": "Austria", "subcountry": "Salzburg"}, "M\u00f6dling": {"country": "Austria", "subcountry": "Lower Austria"}, "Lustenau": {"country": "Austria", "subcountry": "Vorarlberg"}, "Linz": {"country": "Austria", "subcountry": "Upper Austria"}, "Leonding": {"country": "Austria", "subcountry": "Upper Austria"}, "Leoben": {"country": "Austria", "subcountry": "Styria"}, "Kufstein": {"country": "Austria", "subcountry": "Tyrol"}, "Krems An Der Donau": {"country": "Austria", "subcountry": "Lower Austria"}, "Klosterneuburg": {"country": "Austria", "subcountry": "Lower Austria"}, "Klagenfurt Am W\u00f6rthersee": {"country": "Austria", "subcountry": "Carinthia"}, "Kapfenberg": {"country": "Austria", "subcountry": "Styria"}, "Innsbruck": {"country": "Austria", "subcountry": "Tyrol"}, "Hallein": {"country": "Austria", "subcountry": "Salzburg"}, "Graz": {"country": "Austria", "subcountry": "Styria"}, "Feldkirch": {"country": "Austria", "subcountry": "Vorarlberg"}, "Dornbirn": {"country": "Austria", "subcountry": "Vorarlberg"}, "Bregenz": {"country": "Austria", "subcountry": "Vorarlberg"}, "Braunau Am Inn": {"country": "Austria", "subcountry": "Upper Austria"}, "Baden": {"country": "Switzerland", "subcountry": "Aargau"}, "Amstetten": {"country": "Austria", "subcountry": "Lower Austria"}, "Ansfelden": {"country": "Austria", "subcountry": "Salzburg"}, "Whyalla": {"country": "Australia", "subcountry": "South Australia"}, "Rockingham": {"country": "Australia", "subcountry": "Western Australia"}, "Prospect": {"country": "Australia", "subcountry": "South Australia"}, "Port Hedland": {"country": "Australia", "subcountry": "Western Australia"}, "Perth": {"country": "United Kingdom", "subcountry": "Scotland"}, "Murray Bridge": {"country": "Australia", "subcountry": "South Australia"}, "Mount Isa": {"country": "Australia", "subcountry": "Queensland"}, "Morphett Vale": {"country": "Australia", "subcountry": "South Australia"}, "Mandurah": {"country": "Australia", "subcountry": "Western Australia"}, "Kwinana": {"country": "Australia", "subcountry": "Western Australia"}, "Kalgoorlie": {"country": "Australia", "subcountry": "Western Australia"}, "Gosnells": {"country": "Australia", "subcountry": "Western Australia"}, "Geraldton": {"country": "Australia", "subcountry": "Western Australia"}, "Gawler": {"country": "Australia", "subcountry": "South Australia"}, "Fremantle": {"country": "Australia", "subcountry": "Western Australia"}, "Darwin": {"country": "Australia", "subcountry": "Northern Territory"}, "Busselton": {"country": "Australia", "subcountry": "Western Australia"}, "Bunbury": {"country": "Australia", "subcountry": "Western Australia"}, "Armadale": {"country": "Australia", "subcountry": "Western Australia"}, "Alice Springs": {"country": "Australia", "subcountry": "Northern Territory"}, "Albany": {"country": "United States", "subcountry": "Oregon"}, "Adelaide": {"country": "Australia", "subcountry": "South Australia"}, "Woodridge": {"country": "United States", "subcountry": "Illinois"}, "Wodonga": {"country": "Australia", "subcountry": "Victoria"}, "Werribee": {"country": "Australia", "subcountry": "Victoria"}, "Warrnambool": {"country": "Australia", "subcountry": "Victoria"}, "Wantirna South": {"country": "Australia", "subcountry": "Victoria"}, "Wangaratta": {"country": "Australia", "subcountry": "Victoria"}, "Wagga Wagga": {"country": "Australia", "subcountry": "New South Wales"}, "Traralgon": {"country": "Australia", "subcountry": "Victoria"}, "Townsville": {"country": "Australia", "subcountry": "Queensland"}, "Toowoomba": {"country": "Australia", "subcountry": "Queensland"}, "Thornbury": {"country": "Australia", "subcountry": "Victoria"}, "Thomastown": {"country": "Australia", "subcountry": "Victoria"}, "Tarneit": {"country": "Australia", "subcountry": "Victoria"}, "Taree": {"country": "Australia", "subcountry": "New South Wales"}, "Tamworth": {"country": "Australia", "subcountry": "New South Wales"}, "Sydney": {"country": "Canada", "subcountry": "Nova Scotia"}, "Surfers Paradise": {"country": "Australia", "subcountry": "Queensland"}, "Sunnybank": {"country": "Australia", "subcountry": "Queensland"}, "Sunbury": {"country": "Australia", "subcountry": "Victoria"}, "Port Stephens": {"country": "Australia", "subcountry": "New South Wales"}, "Springvale": {"country": "Australia", "subcountry": "Victoria"}, "Southport": {"country": "United Kingdom", "subcountry": "England"}, "South Grafton": {"country": "Australia", "subcountry": "New South Wales"}, "Shepparton": {"country": "Australia", "subcountry": "Victoria"}, "Seaford": {"country": "United States", "subcountry": "New York"}, "Saint Kilda": {"country": "Australia", "subcountry": "Victoria"}, "Saint Albans": {"country": "Australia", "subcountry": "Victoria"}, "Rowville": {"country": "Australia", "subcountry": "Victoria"}, "Rockhampton": {"country": "Australia", "subcountry": "Queensland"}, "Richmond": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Reservoir": {"country": "Australia", "subcountry": "Victoria"}, "Queanbeyan": {"country": "Australia", "subcountry": "New South Wales"}, "Quakers Hill": {"country": "Australia", "subcountry": "New South Wales"}, "Preston": {"country": "United Kingdom", "subcountry": "England"}, "Port Macquarie": {"country": "Australia", "subcountry": "New South Wales"}, "Point Cook": {"country": "Australia", "subcountry": "Victoria"}, "Pakenham South": {"country": "Australia", "subcountry": "Victoria"}, "Orange": {"country": "United States", "subcountry": "California"}, "Nowra": {"country": "Australia", "subcountry": "New South Wales"}, "Northcote": {"country": "Australia", "subcountry": "Victoria"}, "Noble Park": {"country": "Australia", "subcountry": "Victoria"}, "Newcastle": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Nerang": {"country": "Australia", "subcountry": "Queensland"}, "Narre Warren": {"country": "Australia", "subcountry": "Victoria"}, "Narangba": {"country": "Australia", "subcountry": "Queensland"}, "Mulgrave": {"country": "Australia", "subcountry": "Victoria"}, "Mount Martha": {"country": "Australia", "subcountry": "Victoria"}, "Mount Gambier": {"country": "Australia", "subcountry": "South Australia"}, "Mount Eliza": {"country": "Australia", "subcountry": "Victoria"}, "Mosman": {"country": "Australia", "subcountry": "New South Wales"}, "Mornington": {"country": "Australia", "subcountry": "Victoria"}, "Morayfield": {"country": "Australia", "subcountry": "Queensland"}, "Moe": {"country": "Australia", "subcountry": "Victoria"}, "Mill Park": {"country": "Australia", "subcountry": "Victoria"}, "Mildura": {"country": "Australia", "subcountry": "Victoria"}, "Melton": {"country": "Australia", "subcountry": "Victoria"}, "Melbourne": {"country": "United States", "subcountry": "Florida"}, "Maryborough": {"country": "Australia", "subcountry": "Queensland"}, "Marrickville": {"country": "Australia", "subcountry": "New South Wales"}, "Maroubra": {"country": "Australia", "subcountry": "New South Wales"}, "Maitland": {"country": "United States", "subcountry": "Florida"}, "Mackay": {"country": "Australia", "subcountry": "Queensland"}, "Liverpool": {"country": "United Kingdom", "subcountry": "England"}, "Lismore": {"country": "Australia", "subcountry": "New South Wales"}, "Lilydale": {"country": "Australia", "subcountry": "Victoria"}, "Launceston": {"country": "Australia", "subcountry": "Tasmania"}, "Lara": {"country": "Australia", "subcountry": "Victoria"}, "Langwarrin": {"country": "Australia", "subcountry": "Victoria"}, "Lalor": {"country": "Australia", "subcountry": "Victoria"}, "Keysborough": {"country": "Australia", "subcountry": "Victoria"}, "Kew": {"country": "Australia", "subcountry": "Victoria"}, "Katoomba": {"country": "Australia", "subcountry": "New South Wales"}, "Hornsby": {"country": "Australia", "subcountry": "New South Wales"}, "Hobart": {"country": "United States", "subcountry": "Indiana"}, "Hawthorn South": {"country": "Australia", "subcountry": "Victoria"}, "Hampton Park": {"country": "Australia", "subcountry": "Victoria"}, "Griffith": {"country": "United States", "subcountry": "Indiana"}, "Greensborough": {"country": "Australia", "subcountry": "Victoria"}, "Granville": {"country": "Australia", "subcountry": "New South Wales"}, "Goulburn": {"country": "Australia", "subcountry": "New South Wales"}, "Gold Coast": {"country": "Australia", "subcountry": "Queensland"}, "Glenroy": {"country": "Australia", "subcountry": "Victoria"}, "Glenferrie": {"country": "Australia", "subcountry": "Victoria"}, "Gladstone": {"country": "United States", "subcountry": "Missouri"}, "Geelong": {"country": "Australia", "subcountry": "Victoria"}, "Frankston East": {"country": "Australia", "subcountry": "Victoria"}, "Frankston": {"country": "Australia", "subcountry": "Victoria"}, "Forster": {"country": "Australia", "subcountry": "New South Wales"}, "Essendon": {"country": "Australia", "subcountry": "Victoria"}, "Epping": {"country": "Australia", "subcountry": "New South Wales"}, "Engadine": {"country": "Australia", "subcountry": "New South Wales"}, "Eltham": {"country": "Australia", "subcountry": "Victoria"}, "Echuca": {"country": "Australia", "subcountry": "Victoria"}, "Earlwood": {"country": "Australia", "subcountry": "New South Wales"}, "Dubbo": {"country": "Australia", "subcountry": "New South Wales"}, "Doncaster East": {"country": "Australia", "subcountry": "Victoria"}, "Doncaster": {"country": "Australia", "subcountry": "Victoria"}, "Devonport": {"country": "Australia", "subcountry": "Tasmania"}, "Deer Park": {"country": "United States", "subcountry": "New York"}, "Deception Bay": {"country": "Australia", "subcountry": "Queensland"}, "Dandenong": {"country": "Australia", "subcountry": "Victoria"}, "Cronulla": {"country": "Australia", "subcountry": "New South Wales"}, "Cranbourne": {"country": "Australia", "subcountry": "Victoria"}, "Craigieburn": {"country": "Australia", "subcountry": "Victoria"}, "Coffs Harbour": {"country": "Australia", "subcountry": "New South Wales"}, "Coburg": {"country": "Germany", "subcountry": "Bavaria"}, "Clayton": {"country": "United States", "subcountry": "North Carolina"}, "Wollongong": {"country": "Australia", "subcountry": "New South Wales"}, "Cessnock": {"country": "Australia", "subcountry": "New South Wales"}, "Castle Hill": {"country": "Australia", "subcountry": "New South Wales"}, "Carrum Downs": {"country": "Australia", "subcountry": "Victoria"}, "Carnegie": {"country": "Australia", "subcountry": "Victoria"}, "Carlingford": {"country": "Australia", "subcountry": "New South Wales"}, "Caringbah": {"country": "Australia", "subcountry": "New South Wales"}, "Canberra": {"country": "Australia", "subcountry": "Australian Capital Territory"}, "Camberwell": {"country": "Australia", "subcountry": "Victoria"}, "Caloundra": {"country": "Australia", "subcountry": "Queensland"}, "Cairns": {"country": "Australia", "subcountry": "Queensland"}, "Caboolture": {"country": "Australia", "subcountry": "Queensland"}, "Burnie": {"country": "Australia", "subcountry": "Tasmania"}, "Bundaberg": {"country": "Australia", "subcountry": "Queensland"}, "Buderim": {"country": "Australia", "subcountry": "Queensland"}, "Brunswick": {"country": "United States", "subcountry": "Ohio"}, "Broken Hill": {"country": "Australia", "subcountry": "New South Wales"}, "Brisbane": {"country": "Australia", "subcountry": "Queensland"}, "Boronia": {"country": "Australia", "subcountry": "Victoria"}, "Blacktown": {"country": "Australia", "subcountry": "New South Wales"}, "Berwick": {"country": "Australia", "subcountry": "Victoria"}, "Bendigo": {"country": "Australia", "subcountry": "Victoria"}, "Baulkham Hills": {"country": "Australia", "subcountry": "New South Wales"}, "Bathurst": {"country": "Australia", "subcountry": "New South Wales"}, "Banora Point": {"country": "Australia", "subcountry": "New South Wales"}, "Bankstown": {"country": "Australia", "subcountry": "New South Wales"}, "Ballarat": {"country": "Australia", "subcountry": "Victoria"}, "Auburn": {"country": "United States", "subcountry": "Washington"}, "Ashfield": {"country": "Australia", "subcountry": "New South Wales"}, "Armidale": {"country": "Australia", "subcountry": "New South Wales"}, "Albury": {"country": "Australia", "subcountry": "New South Wales"}, "South Brisbane": {"country": "Australia", "subcountry": "Queensland"}, "Cheltenham": {"country": "United Kingdom", "subcountry": "England"}, "Randwick": {"country": "Australia", "subcountry": "New South Wales"}, "Dee Why": {"country": "Australia", "subcountry": "New South Wales"}, "Umina": {"country": "Australia", "subcountry": "New South Wales"}, "Palmerston": {"country": "Australia", "subcountry": "Northern Territory"}, "Bracken Ridge": {"country": "Australia", "subcountry": "Queensland"}, "North Ryde": {"country": "Australia", "subcountry": "New South Wales"}, "Hoppers Crossing": {"country": "Australia", "subcountry": "Victoria"}, "Logan City": {"country": "Australia", "subcountry": "Queensland"}, "Carindale": {"country": "Australia", "subcountry": "Queensland"}, "Paramatta": {"country": "Australia", "subcountry": "New South Wales"}, "Ferntree Gully": {"country": "Australia", "subcountry": "Victoria"}, "City Of Parramatta": {"country": "Australia", "subcountry": "New South Wales"}, "Adelaide Hills": {"country": "Australia", "subcountry": "South Australia"}, "Canning Vale": {"country": "Australia", "subcountry": "Western Australia"}, "Glenmore Park": {"country": "Australia", "subcountry": "New South Wales"}, "Glen Iris": {"country": "Australia", "subcountry": "Victoria"}, "Balwyn North": {"country": "Australia", "subcountry": "Victoria"}, "Malvern East": {"country": "Australia", "subcountry": "Victoria"}, "Brighton East": {"country": "Australia", "subcountry": "Victoria"}, "Booval": {"country": "Australia", "subcountry": "Queensland"}, "St Albans": {"country": "United Kingdom", "subcountry": "England"}, "Endeavour Hills": {"country": "Australia", "subcountry": "Victoria"}, "Taylors Lakes": {"country": "Australia", "subcountry": "Victoria"}, "Roxburgh Park": {"country": "Australia", "subcountry": "Victoria"}, "Wyndham Vale": {"country": "Australia", "subcountry": "Victoria"}, "Willetton": {"country": "Australia", "subcountry": "Western Australia"}, "Thornlie": {"country": "Australia", "subcountry": "Western Australia"}, "Hillside": {"country": "United States", "subcountry": "New Jersey"}, "Bundoora": {"country": "Australia", "subcountry": "Victoria"}, "Forest Lake": {"country": "United States", "subcountry": "Minnesota"}, "Sunnybank Hills": {"country": "Australia", "subcountry": "Queensland"}, "Narre Warren South": {"country": "Australia", "subcountry": "Victoria"}, "Dandenong North": {"country": "Australia", "subcountry": "Victoria"}, "Frankston South": {"country": "Australia", "subcountry": "Victoria"}, "Sunshine West": {"country": "Australia", "subcountry": "Victoria"}, "Altona Meadows": {"country": "Australia", "subcountry": "Victoria"}, "West Pennant": {"country": "Australia", "subcountry": "New South Wales"}, "Oranjestad": {"country": "Aruba", "subcountry": "N/A"}, "Babijn": {"country": "Aruba", "subcountry": "N/A"}, "Angochi": {"country": "Aruba", "subcountry": "N/A"}, "Mariehamn": {"country": "Aland Islands", "subcountry": "Mariehamns stad"}, "Xankandi": {"country": "Azerbaijan", "subcountry": "Xank\u01ddndi"}, "\u018fhm\u0259db\u0259yli": {"country": "Azerbaijan", "subcountry": "Saatl\u0131"}, "Shushi": {"country": "Azerbaijan", "subcountry": "\u015eu\u015fa"}, "Salyan": {"country": "Azerbaijan", "subcountry": "Salyan"}, "Saatl\u0131": {"country": "Azerbaijan", "subcountry": "Saatl\u0131"}, "Neft\u00e7ala": {"country": "Azerbaijan", "subcountry": "Neft\u00e7ala"}, "Nakhchivan": {"country": "Azerbaijan", "subcountry": "Nakhichevan"}, "Lankaran": {"country": "Azerbaijan", "subcountry": "L\u0259nk\u0259ran"}, "Imishli": {"country": "Azerbaijan", "subcountry": "\u0130mi\u015fli"}, "Fizuli": {"country": "Azerbaijan", "subcountry": "F\u00fczuli"}, "Dzhalilabad": {"country": "Azerbaijan", "subcountry": "Jalilabad"}, "Pushkino": {"country": "Russia", "subcountry": "MO"}, "Beylagan": {"country": "Azerbaijan", "subcountry": "Beyl\u0259qan"}, "Astara": {"country": "Azerbaijan", "subcountry": "Astara"}, "\u015eirvan": {"country": "Azerbaijan", "subcountry": "Shirvan"}, "A\u011fdam": {"country": "Azerbaijan", "subcountry": "A\u011fdam"}, "Zaqatala": {"country": "Azerbaijan", "subcountry": "Zaqatala"}, "Zabrat": {"country": "Azerbaijan", "subcountry": "Baki"}, "Yevlakh": {"country": "Azerbaijan", "subcountry": "Yevlax City"}, "Yelenendorf": {"country": "Azerbaijan", "subcountry": "Goygol Rayon"}, "Xa\u00e7maz": {"country": "Azerbaijan", "subcountry": "Xa\u00e7maz"}, "Ujar": {"country": "Azerbaijan", "subcountry": "Ucar"}, "Terter": {"country": "Azerbaijan", "subcountry": "T\u01ddrt\u01ddr"}, "Sumqay\u0131t": {"country": "Azerbaijan", "subcountry": "Sumqayit"}, "Qara\u00e7uxur": {"country": "Azerbaijan", "subcountry": "Baki"}, "Shamkhor": {"country": "Azerbaijan", "subcountry": "\u015e\u01ddmkir"}, "Shamakhi": {"country": "Azerbaijan", "subcountry": "\u015eamax\u0131"}, "Sheki": {"country": "Azerbaijan", "subcountry": "Shaki City"}, "Sabun\u00e7u": {"country": "Azerbaijan", "subcountry": "Baki"}, "Sabirabad": {"country": "Azerbaijan", "subcountry": "Sabirabad"}, "Qusar": {"country": "Azerbaijan", "subcountry": "Qusar"}, "Quba": {"country": "Azerbaijan", "subcountry": "Quba"}, "Hac\u0131qabul": {"country": "Azerbaijan", "subcountry": "Hac\u0131qabul"}, "Qazax": {"country": "Azerbaijan", "subcountry": "Qazax"}, "Hac\u0131 Zeynalabdin": {"country": "Azerbaijan", "subcountry": "Sumqayit"}, "Mingelchaur": {"country": "Azerbaijan", "subcountry": "Ming\u01ddcevir"}, "Ma\u015fta\u011fa": {"country": "Azerbaijan", "subcountry": "Baki"}, "Mardakan": {"country": "Azerbaijan", "subcountry": "Baki"}, "L\u00f6kbatan": {"country": "Azerbaijan", "subcountry": "Baki"}, "Kyurdarmir": {"country": "Azerbaijan", "subcountry": "K\u00fcrd\u01ddmir"}, "Khirdalan": {"country": "Azerbaijan", "subcountry": "Ab\u015feron"}, "Yeni Suraxan\u0131": {"country": "Azerbaijan", "subcountry": "Baki"}, "Geoktschai": {"country": "Azerbaijan", "subcountry": "G\u00f6y\u00e7ay"}, "H\u00f6vsan": {"country": "Azerbaijan", "subcountry": "Baki"}, "Ganja": {"country": "Azerbaijan", "subcountry": "G\u01ddnc\u01dd"}, "Divichibazar": {"country": "Azerbaijan", "subcountry": "Shabran"}, "Buzovna": {"country": "Azerbaijan", "subcountry": "Baki"}, "Biny Selo": {"country": "Azerbaijan", "subcountry": "Baki"}, "Barda": {"country": "Azerbaijan", "subcountry": "B\u01ddrd\u01dd"}, "Bilajari": {"country": "Azerbaijan", "subcountry": "Baki"}, "Baku": {"country": "Azerbaijan", "subcountry": "Baki"}, "Amirdzhan": {"country": "Azerbaijan", "subcountry": "Baki"}, "Aghsu": {"country": "Azerbaijan", "subcountry": "A\u011fsu"}, "A\u011fda\u015f": {"country": "Azerbaijan", "subcountry": "A\u011fda\u015f"}, "Agdzhabedy": {"country": "Azerbaijan", "subcountry": "A\u011fcab\u01dddi"}, "Bak\u0131xanov": {"country": "Azerbaijan", "subcountry": "Baki"}, "Zenica": {"country": "Bosnia and Herzegovina", "subcountry": "Federation of Bosnia and Herzegovina"}, "Visoko": {"country": "Bosnia and Herzegovina", "subcountry": "Federation of Bosnia and Herzegovina"}, "Velika Kladu\u0161a": {"country": "Bosnia and Herzegovina", "subcountry": "Federation of Bosnia and Herzegovina"}, "Tuzla": {"country": "Bosnia and Herzegovina", "subcountry": "Federation of Bosnia and Herzegovina"}, "Trebinje": {"country": "Bosnia and Herzegovina", "subcountry": "Republika Srpska"}, "Travnik": {"country": "Bosnia and Herzegovina", "subcountry": "Federation of Bosnia and Herzegovina"}, "Sarajevo": {"country": "Bosnia and Herzegovina", "subcountry": "Federation of Bosnia and Herzegovina"}, "Prijedor": {"country": "Bosnia and Herzegovina", "subcountry": "Republika Srpska"}, "Mostar": {"country": "Bosnia and Herzegovina", "subcountry": "Federation of Bosnia and Herzegovina"}, "Grada\u010dac": {"country": "Bosnia and Herzegovina", "subcountry": "Federation of Bosnia and Herzegovina"}, "Gra\u010danica": {"country": "Bosnia and Herzegovina", "subcountry": "Federation of Bosnia and Herzegovina"}, "Gora\u017ede": {"country": "Bosnia and Herzegovina", "subcountry": "Federation of Bosnia and Herzegovina"}, "Doboj": {"country": "Bosnia and Herzegovina", "subcountry": "Republika Srpska"}, "Cazin": {"country": "Bosnia and Herzegovina", "subcountry": "Federation of Bosnia and Herzegovina"}, "Bugojno": {"country": "Bosnia and Herzegovina", "subcountry": "Federation of Bosnia and Herzegovina"}, "Br\u010dko": {"country": "Bosnia and Herzegovina", "subcountry": "Br\u010dko"}, "Bosanska Krupa": {"country": "Bosnia and Herzegovina", "subcountry": "Federation of Bosnia and Herzegovina"}, "Bijeljina": {"country": "Bosnia and Herzegovina", "subcountry": "Republika Srpska"}, "Biha\u0107": {"country": "Bosnia and Herzegovina", "subcountry": "Federation of Bosnia and Herzegovina"}, "Banja Luka": {"country": "Bosnia and Herzegovina", "subcountry": "Republika Srpska"}, "Konjic": {"country": "Bosnia and Herzegovina", "subcountry": "Federation of Bosnia and Herzegovina"}, "Bridgetown": {"country": "Barbados", "subcountry": "Saint Michael"}, "Th\u0101kurgaon": {"country": "Bangladesh", "subcountry": "Rangpur Division"}, "Tekn\u0101f": {"country": "Bangladesh", "subcountry": "Chittagong"}, "Tungi": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Sylhet": {"country": "Bangladesh", "subcountry": "Sylhet"}, "Doh\u0101r": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Jam\u0101lpur": {"country": "India", "subcountry": "Bihar"}, "Shibganj": {"country": "Bangladesh", "subcountry": "R\u0101jsh\u0101hi"}, "S\u0101tkhira": {"country": "Bangladesh", "subcountry": "Khulna"}, "Sir\u0101jganj": {"country": "Bangladesh", "subcountry": "R\u0101jsh\u0101hi"}, "Netrakona": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Narsingdi": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Sandw\u012bp": {"country": "Bangladesh", "subcountry": "Chittagong"}, "Sh\u0101hz\u0101dpur": {"country": "Bangladesh", "subcountry": "R\u0101jsh\u0101hi"}, "R\u0101mganj": {"country": "Bangladesh", "subcountry": "Chittagong"}, "R\u0101jsh\u0101hi": {"country": "Bangladesh", "subcountry": "R\u0101jsh\u0101hi"}, "Pirojpur": {"country": "Bangladesh", "subcountry": "Baris\u0101l"}, "Panchagarh": {"country": "Bangladesh", "subcountry": "Rangpur Division"}, "Patiya": {"country": "Bangladesh", "subcountry": "Chittagong"}, "Parbatipur": {"country": "Bangladesh", "subcountry": "Rangpur Division"}, "N\u0101r\u0101yanganj": {"country": "Bangladesh", "subcountry": "Dhaka"}, "N\u0101lchiti": {"country": "Bangladesh", "subcountry": "Baris\u0101l"}, "N\u0101garpur": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Nageswari": {"country": "Bangladesh", "subcountry": "Rangpur Division"}, "Mymensingh": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Mukt\u0101g\u0101cha": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Mirz\u0101pur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Maulavi B\u0101z\u0101r": {"country": "Bangladesh", "subcountry": "Sylhet"}, "Morrelgonj": {"country": "Bangladesh", "subcountry": "Khulna"}, "Mehendiganj": {"country": "Bangladesh", "subcountry": "Baris\u0101l"}, "Mathba": {"country": "Bangladesh", "subcountry": "Baris\u0101l"}, "Lalmanirhat": {"country": "Bangladesh", "subcountry": "Rangpur Division"}, "L\u0101ksh\u0101m": {"country": "Bangladesh", "subcountry": "Chittagong"}, "Comilla": {"country": "Bangladesh", "subcountry": "Chittagong"}, "Rangpur": {"country": "Bangladesh", "subcountry": "Rangpur Division"}, "Kushtia": {"country": "Bangladesh", "subcountry": "Khulna"}, "K\u0101l\u012bganj": {"country": "Bangladesh", "subcountry": "Khulna"}, "Jhingerg\u0101cha": {"country": "Bangladesh", "subcountry": "Khulna"}, "Joypur H\u0101t": {"country": "Bangladesh", "subcountry": "R\u0101jsh\u0101hi"}, "Ishurdi": {"country": "Bangladesh", "subcountry": "R\u0101jsh\u0101hi"}, "Habiganj": {"country": "Bangladesh", "subcountry": "Sylhet"}, "Gaurnadi": {"country": "Bangladesh", "subcountry": "Baris\u0101l"}, "Gafargaon": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Feni": {"country": "Bangladesh", "subcountry": "Chittagong"}, "R\u0101ipur": {"country": "India", "subcountry": "Uttarakhand"}, "Sarankhola": {"country": "Bangladesh", "subcountry": "Khulna"}, "Dhaka": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Chilm\u0101ri": {"country": "Bangladesh", "subcountry": "Rangpur Division"}, "Chh\u0101galn\u0101iya": {"country": "Bangladesh", "subcountry": "Chittagong"}, "L\u0101lmohan": {"country": "Bangladesh", "subcountry": "Baris\u0101l"}, "Khagrachhari": {"country": "Bangladesh", "subcountry": "Chittagong"}, "Chh\u0101tak": {"country": "Bangladesh", "subcountry": "Sylhet"}, "Bh\u0101tp\u0101ra Abhaynagar": {"country": "Bangladesh", "subcountry": "Khulna"}, "Bher\u0101m\u0101ra": {"country": "Bangladesh", "subcountry": "Khulna"}, "Bhairab B\u0101z\u0101r": {"country": "Bangladesh", "subcountry": "Dhaka"}, "B\u0101ndarban": {"country": "Bangladesh", "subcountry": "Chittagong"}, "K\u0101lia": {"country": "Bangladesh", "subcountry": "Khulna"}, "Baniachang": {"country": "Bangladesh", "subcountry": "Sylhet"}, "B\u0101jitpur": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Badarganj": {"country": "Bangladesh", "subcountry": "Rangpur Division"}, "Narail": {"country": "Bangladesh", "subcountry": "Khulna"}, "Tungip\u0101ra": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Sarish\u0101b\u0101ri": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Sakhipur": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Raoj\u0101n": {"country": "Bangladesh", "subcountry": "Chittagong"}, "Phultala": {"country": "Bangladesh", "subcountry": "Khulna"}, "P\u0101lang": {"country": "Bangladesh", "subcountry": "Dhaka"}, "P\u0101r Naogaon": {"country": "Bangladesh", "subcountry": "R\u0101jsh\u0101hi"}, "Nab\u012bnagar": {"country": "India", "subcountry": "Bihar"}, "Lakshm\u012bpur": {"country": "Bangladesh", "subcountry": "Chittagong"}, "Kesabpur": {"country": "Bangladesh", "subcountry": "Khulna"}, "H\u0101j\u012bganj": {"country": "Bangladesh", "subcountry": "Chittagong"}, "Far\u012bdpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Din\u0101jpur": {"country": "Bangladesh", "subcountry": "Rangpur Division"}, "Uttar Char Fasson": {"country": "Bangladesh", "subcountry": "Khulna"}, "Chittagong": {"country": "Bangladesh", "subcountry": "Chittagong"}, "Char Bhadr\u0101san": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Bera": {"country": "Bangladesh", "subcountry": "R\u0101jsh\u0101hi"}, "Burh\u0101nuddin": {"country": "Bangladesh", "subcountry": "Baris\u0101l"}, "S\u0101tkania": {"country": "Bangladesh", "subcountry": "Chittagong"}, "Cox\u2019S B\u0101z\u0101r": {"country": "Bangladesh", "subcountry": "Chittagong"}, "Khulna": {"country": "Bangladesh", "subcountry": "Khulna"}, "Bhola": {"country": "Bangladesh", "subcountry": "Baris\u0101l"}, "Baris\u0101l": {"country": "Bangladesh", "subcountry": "Baris\u0101l"}, "Jessore": {"country": "Bangladesh", "subcountry": "Khulna"}, "P\u0101bna": {"country": "Bangladesh", "subcountry": "R\u0101jsh\u0101hi"}, "T\u0101ng\u0101il": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Bogra": {"country": "Bangladesh", "subcountry": "R\u0101jsh\u0101hi"}, "P\u012brgaaj": {"country": "Bangladesh", "subcountry": "Rangpur Division"}, "Naw\u0101bganj": {"country": "India", "subcountry": "Uttar Pradesh"}, "M\u0101d\u0101r\u012bpur": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Sherpur": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Kishorganj": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Manikchari": {"country": "Bangladesh", "subcountry": "Chittagong"}, "Bh\u0101nd\u0101ria": {"country": "Bangladesh", "subcountry": "Baris\u0101l"}, "Fatikchari": {"country": "Bangladesh", "subcountry": "Chittagong"}, "Saidpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Azimpur": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Paltan": {"country": "Bangladesh", "subcountry": "Dhaka"}, "Zwijndrecht": {"country": "Netherlands", "subcountry": "South Holland"}, "Zwevegem": {"country": "Belgium", "subcountry": "Flanders"}, "Zottegem": {"country": "Belgium", "subcountry": "Flanders"}, "Zonhoven": {"country": "Belgium", "subcountry": "Flanders"}, "Zoersel": {"country": "Belgium", "subcountry": "Flanders"}, "Zemst": {"country": "Belgium", "subcountry": "Flanders"}, "Zele": {"country": "Belgium", "subcountry": "Flanders"}, "Zedelgem": {"country": "Belgium", "subcountry": "Flanders"}, "Zaventem": {"country": "Belgium", "subcountry": "Flanders"}, "Wuustwezel": {"country": "Belgium", "subcountry": "Flanders"}, "Willebroek": {"country": "Belgium", "subcountry": "Flanders"}, "Wevelgem": {"country": "Belgium", "subcountry": "Flanders"}, "Wetteren": {"country": "Belgium", "subcountry": "Flanders"}, "Westerlo": {"country": "Belgium", "subcountry": "Flanders"}, "Wervik": {"country": "Belgium", "subcountry": "Flanders"}, "Wavre": {"country": "Belgium", "subcountry": "Wallonia"}, "Waterloo": {"country": "United States", "subcountry": "Iowa"}, "Waregem": {"country": "Belgium", "subcountry": "Flanders"}, "Walcourt": {"country": "Belgium", "subcountry": "Wallonia"}, "Vis\u00e9": {"country": "Belgium", "subcountry": "Wallonia"}, "Vilvoorde": {"country": "Belgium", "subcountry": "Flanders"}, "Verviers": {"country": "Belgium", "subcountry": "Wallonia"}, "Turnhout": {"country": "Belgium", "subcountry": "Flanders"}, "Tubize": {"country": "Belgium", "subcountry": "Wallonia"}, "Tournai": {"country": "Belgium", "subcountry": "Wallonia"}, "Torhout": {"country": "Belgium", "subcountry": "Flanders"}, "Tongeren": {"country": "Belgium", "subcountry": "Flanders"}, "Tienen": {"country": "Belgium", "subcountry": "Flanders"}, "Tielt": {"country": "Belgium", "subcountry": "Flanders"}, "Tessenderlo": {"country": "Belgium", "subcountry": "Flanders"}, "Tervuren": {"country": "Belgium", "subcountry": "Flanders"}, "Temse": {"country": "Belgium", "subcountry": "Flanders"}, "Stekene": {"country": "Belgium", "subcountry": "Flanders"}, "Stabroek": {"country": "Belgium", "subcountry": "Flanders"}, "Soumagne": {"country": "Belgium", "subcountry": "Wallonia"}, "Soignies": {"country": "Belgium", "subcountry": "Wallonia"}, "Sint-Truiden": {"country": "Belgium", "subcountry": "Flanders"}, "Sint-Pieters-Leeuw": {"country": "Belgium", "subcountry": "Flanders"}, "Sint-Niklaas": {"country": "Belgium", "subcountry": "Flanders"}, "Sint-Kruis": {"country": "Belgium", "subcountry": "Flanders"}, "Sint-Katelijne-Waver": {"country": "Belgium", "subcountry": "Flanders"}, "Sint-Gillis-Waas": {"country": "Belgium", "subcountry": "Flanders"}, "Sint-Genesius-Rode": {"country": "Belgium", "subcountry": "Flanders"}, "Seraing": {"country": "Belgium", "subcountry": "Wallonia"}, "Schoten": {"country": "Belgium", "subcountry": "Flanders"}, "Schilde": {"country": "Belgium", "subcountry": "Flanders"}, "Saint-Nicolas": {"country": "Belgium", "subcountry": "Wallonia"}, "Saint-Ghislain": {"country": "Belgium", "subcountry": "Wallonia"}, "Rotselaar": {"country": "Belgium", "subcountry": "Flanders"}, "Ronse": {"country": "Belgium", "subcountry": "Flanders"}, "Roeselare": {"country": "Belgium", "subcountry": "Flanders"}, "Rixensart": {"country": "Belgium", "subcountry": "Wallonia"}, "Riemst": {"country": "Belgium", "subcountry": "Flanders"}, "Ranst": {"country": "Belgium", "subcountry": "Flanders"}, "Quaregnon": {"country": "Belgium", "subcountry": "Wallonia"}, "Puurs": {"country": "Belgium", "subcountry": "Flanders"}, "Putte": {"country": "Belgium", "subcountry": "Flanders"}, "Poperinge": {"country": "Belgium", "subcountry": "Flanders"}, "Pont-\u00c0-Celles": {"country": "Belgium", "subcountry": "Wallonia"}, "P\u00e9ruwelz": {"country": "Belgium", "subcountry": "Wallonia"}, "Peer": {"country": "Belgium", "subcountry": "Flanders"}, "Overijse": {"country": "Belgium", "subcountry": "Flanders"}, "Oupeye": {"country": "Belgium", "subcountry": "Wallonia"}, "Oudenaarde": {"country": "Belgium", "subcountry": "Flanders"}, "Oostkamp": {"country": "Belgium", "subcountry": "Flanders"}, "Ostend": {"country": "Belgium", "subcountry": "Flanders"}, "Nivelles": {"country": "Belgium", "subcountry": "Wallonia"}, "Ninove": {"country": "Belgium", "subcountry": "Flanders"}, "Nijlen": {"country": "Belgium", "subcountry": "Flanders"}, "Neerpelt": {"country": "Belgium", "subcountry": "Flanders"}, "Namur": {"country": "Belgium", "subcountry": "Wallonia"}, "Mouscron": {"country": "Belgium", "subcountry": "Wallonia"}, "Mortsel": {"country": "Belgium", "subcountry": "Flanders"}, "Morlanwelz-Mariemont": {"country": "Belgium", "subcountry": "Wallonia"}, "Mons": {"country": "Belgium", "subcountry": "Wallonia"}, "Mol": {"country": "Belgium", "subcountry": "Flanders"}, "Middelkerke": {"country": "Belgium", "subcountry": "Flanders"}, "Merelbeke": {"country": "Belgium", "subcountry": "Flanders"}, "Menen": {"country": "Belgium", "subcountry": "Flanders"}, "Meise": {"country": "Belgium", "subcountry": "Flanders"}, "Mechelen": {"country": "Belgium", "subcountry": "Flanders"}, "Marche-En-Famenne": {"country": "Belgium", "subcountry": "Wallonia"}, "Manage": {"country": "Belgium", "subcountry": "Wallonia"}, "Maldegem": {"country": "Belgium", "subcountry": "Flanders"}, "Maasmechelen": {"country": "Belgium", "subcountry": "Flanders"}, "Maaseik": {"country": "Belgium", "subcountry": "Flanders"}, "Louvain-La-Neuve": {"country": "Belgium", "subcountry": "Wallonia"}, "Londerzeel": {"country": "Belgium", "subcountry": "Flanders"}, "Lommel": {"country": "Belgium", "subcountry": "Flanders"}, "Lokeren": {"country": "Belgium", "subcountry": "Flanders"}, "Lochristi": {"country": "Belgium", "subcountry": "Flanders"}, "Lille": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Lier": {"country": "Belgium", "subcountry": "Flanders"}, "Li\u00e8ge": {"country": "Belgium", "subcountry": "Wallonia"}, "Leuven": {"country": "Belgium", "subcountry": "Flanders"}, "Lessines": {"country": "Belgium", "subcountry": "Wallonia"}, "Lede": {"country": "Belgium", "subcountry": "Flanders"}, "Lebbeke": {"country": "Belgium", "subcountry": "Flanders"}, "Lanaken": {"country": "Belgium", "subcountry": "Flanders"}, "La Louvi\u00e8re": {"country": "Belgium", "subcountry": "Wallonia"}, "Kortrijk": {"country": "Belgium", "subcountry": "Flanders"}, "Kortenberg": {"country": "Belgium", "subcountry": "Flanders"}, "Kontich": {"country": "Belgium", "subcountry": "Flanders"}, "Koksijde": {"country": "Belgium", "subcountry": "Flanders"}, "Knokke-Heist": {"country": "Belgium", "subcountry": "Flanders"}, "Kasterlee": {"country": "Belgium", "subcountry": "Flanders"}, "Kapellen": {"country": "Belgium", "subcountry": "Flanders"}, "Kalmthout": {"country": "Belgium", "subcountry": "Flanders"}, "Izegem": {"country": "Belgium", "subcountry": "Flanders"}, "Ieper": {"country": "Belgium", "subcountry": "Flanders"}, "Huy": {"country": "Belgium", "subcountry": "Wallonia"}, "Houthalen": {"country": "Belgium", "subcountry": "Flanders"}, "Hoogstraten": {"country": "Belgium", "subcountry": "Flanders"}, "Hoboken": {"country": "United States", "subcountry": "New Jersey"}, "Heusden": {"country": "Netherlands", "subcountry": "North Brabant"}, "Herzele": {"country": "Belgium", "subcountry": "Flanders"}, "Herve": {"country": "Belgium", "subcountry": "Wallonia"}, "Herstal": {"country": "Belgium", "subcountry": "Wallonia"}, "Herentals": {"country": "Belgium", "subcountry": "Flanders"}, "Herent": {"country": "Belgium", "subcountry": "Flanders"}, "Helchteren": {"country": "Belgium", "subcountry": "Flanders"}, "Heist-Op-Den-Berg": {"country": "Belgium", "subcountry": "Flanders"}, "Hasselt": {"country": "Belgium", "subcountry": "Flanders"}, "Harelbeke": {"country": "Belgium", "subcountry": "Flanders"}, "Hamme": {"country": "Belgium", "subcountry": "Flanders"}, "Halle": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Haaltert": {"country": "Belgium", "subcountry": "Flanders"}, "Grimbergen": {"country": "Belgium", "subcountry": "Flanders"}, "Geraardsbergen": {"country": "Belgium", "subcountry": "Flanders"}, "Gent": {"country": "Belgium", "subcountry": "Flanders"}, "Genk": {"country": "Belgium", "subcountry": "Flanders"}, "Gembloux": {"country": "Belgium", "subcountry": "Wallonia"}, "Geel": {"country": "Belgium", "subcountry": "Flanders"}, "Frameries": {"country": "Belgium", "subcountry": "Wallonia"}, "Fleurus": {"country": "Belgium", "subcountry": "Wallonia"}, "Fl\u00e9ron": {"country": "Belgium", "subcountry": "Wallonia"}, "Fl\u00e9malle-Haute": {"country": "Belgium", "subcountry": "Wallonia"}, "Evergem": {"country": "Belgium", "subcountry": "Flanders"}, "Eupen": {"country": "Belgium", "subcountry": "Wallonia"}, "Essen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Eeklo": {"country": "Belgium", "subcountry": "Flanders"}, "Edegem": {"country": "Belgium", "subcountry": "Flanders"}, "Duffel": {"country": "Belgium", "subcountry": "Flanders"}, "Dour": {"country": "Belgium", "subcountry": "Wallonia"}, "Dilbeek": {"country": "Belgium", "subcountry": "Flanders"}, "Diksmuide": {"country": "Belgium", "subcountry": "Flanders"}, "Diest": {"country": "Belgium", "subcountry": "Flanders"}, "Diepenbeek": {"country": "Belgium", "subcountry": "Flanders"}, "Destelbergen": {"country": "Belgium", "subcountry": "Flanders"}, "Dendermonde": {"country": "Belgium", "subcountry": "Flanders"}, "Denderleeuw": {"country": "Belgium", "subcountry": "Flanders"}, "Deinze": {"country": "Belgium", "subcountry": "Flanders"}, "Courcelles": {"country": "Belgium", "subcountry": "Wallonia"}, "Colfontaine": {"country": "Belgium", "subcountry": "Wallonia"}, "Chaudfontaine": {"country": "Belgium", "subcountry": "Wallonia"}, "Ch\u00e2telet": {"country": "Belgium", "subcountry": "Wallonia"}, "Chasse Royale": {"country": "Belgium", "subcountry": "Wallonia"}, "Charleroi": {"country": "Belgium", "subcountry": "Wallonia"}, "Brussels": {"country": "Belgium", "subcountry": "Brussels Capital"}, "Brugge": {"country": "Belgium", "subcountry": "Flanders"}, "Brecht": {"country": "Belgium", "subcountry": "Flanders"}, "Brasschaat": {"country": "Belgium", "subcountry": "Flanders"}, "Braine-Le-Comte": {"country": "Belgium", "subcountry": "Wallonia"}, "Braine-L'Alleud": {"country": "Belgium", "subcountry": "Wallonia"}, "Boussu": {"country": "Belgium", "subcountry": "Wallonia"}, "Bornem": {"country": "Belgium", "subcountry": "Flanders"}, "Boom": {"country": "Belgium", "subcountry": "Flanders"}, "Blankenberge": {"country": "Belgium", "subcountry": "Flanders"}, "Binche": {"country": "Belgium", "subcountry": "Wallonia"}, "Bilzen": {"country": "Belgium", "subcountry": "Flanders"}, "Beveren": {"country": "Belgium", "subcountry": "Flanders"}, "Beringen": {"country": "Belgium", "subcountry": "Flanders"}, "Beersel": {"country": "Belgium", "subcountry": "Flanders"}, "Beerse": {"country": "Belgium", "subcountry": "Flanders"}, "Balen": {"country": "Belgium", "subcountry": "Flanders"}, "Ath": {"country": "Belgium", "subcountry": "Wallonia"}, "Asse": {"country": "Belgium", "subcountry": "Flanders"}, "Arlon": {"country": "Belgium", "subcountry": "Wallonia"}, "Antwerpen": {"country": "Belgium", "subcountry": "Flanders"}, "Ans": {"country": "Belgium", "subcountry": "Wallonia"}, "Andenne": {"country": "Belgium", "subcountry": "Wallonia"}, "Aarschot": {"country": "Belgium", "subcountry": "Flanders"}, "Aalter": {"country": "Belgium", "subcountry": "Flanders"}, "Aalst": {"country": "Belgium", "subcountry": "Flanders"}, "Zorgo": {"country": "Burkina Faso", "subcountry": "Plateau-Central"}, "Yako": {"country": "Burkina Faso", "subcountry": "Nord"}, "Tougan": {"country": "Burkina Faso", "subcountry": "Boucle du Mouhoun"}, "Titao": {"country": "Burkina Faso", "subcountry": "Nord"}, "Tenkodogo": {"country": "Burkina Faso", "subcountry": "Centre-Est"}, "R\u00e9o": {"country": "Burkina Faso", "subcountry": "Centre-Ouest"}, "P\u00f4": {"country": "Burkina Faso", "subcountry": "Centre-Sud"}, "Ouahigouya": {"country": "Burkina Faso", "subcountry": "Nord"}, "Ouagadougou": {"country": "Burkina Faso", "subcountry": "Centre"}, "Nouna": {"country": "Burkina Faso", "subcountry": "Boucle du Mouhoun"}, "Manga": {"country": "Burkina Faso", "subcountry": "Centre-Sud"}, "L\u00e9o": {"country": "Burkina Faso", "subcountry": "Centre-Ouest"}, "Koup\u00e9la": {"country": "Burkina Faso", "subcountry": "Centre-Est"}, "Koudougou": {"country": "Burkina Faso", "subcountry": "Centre-Ouest"}, "Kongoussi": {"country": "Burkina Faso", "subcountry": "Centre-Nord"}, "Kombissiri": {"country": "Burkina Faso", "subcountry": "Centre-Sud"}, "Kokologo": {"country": "Burkina Faso", "subcountry": "Centre-Ouest"}, "Kaya": {"country": "Burkina Faso", "subcountry": "Centre-Nord"}, "Hound\u00e9": {"country": "Burkina Faso", "subcountry": "High-Basins"}, "Gourcy": {"country": "Burkina Faso", "subcountry": "Nord"}, "Garango": {"country": "Burkina Faso", "subcountry": "Centre-Est"}, "Fada N'Gourma": {"country": "Burkina Faso", "subcountry": "Est"}, "Dori": {"country": "Burkina Faso", "subcountry": "Sahel"}, "Djibo": {"country": "Burkina Faso", "subcountry": "Sahel"}, "Diapaga": {"country": "Burkina Faso", "subcountry": "Est"}, "D\u00e9dougou": {"country": "Burkina Faso", "subcountry": "Boucle du Mouhoun"}, "Bouss\u00e9": {"country": "Burkina Faso", "subcountry": "Plateau-Central"}, "Boulsa": {"country": "Burkina Faso", "subcountry": "Centre-Nord"}, "Bobo-Dioulasso": {"country": "Burkina Faso", "subcountry": "High-Basins"}, "Banfora": {"country": "Burkina Faso", "subcountry": "Cascades"}, "Gaoua": {"country": "Burkina Faso", "subcountry": "Southwest"}, "Orodara": {"country": "Burkina Faso", "subcountry": "High-Basins"}, "Yambol": {"country": "Bulgaria", "subcountry": "Yambol"}, "Vratsa": {"country": "Bulgaria", "subcountry": "Vratsa"}, "Vidin": {"country": "Bulgaria", "subcountry": "Vidin"}, "Velingrad": {"country": "Bulgaria", "subcountry": "Pazardzhik"}, "Veliko T\u016drnovo": {"country": "Bulgaria", "subcountry": "Veliko T\u016drnovo"}, "Varna": {"country": "Bulgaria", "subcountry": "Varna"}, "Targovishte": {"country": "Bulgaria", "subcountry": "T\u016drgovishte"}, "Troyan": {"country": "Bulgaria", "subcountry": "Lovech"}, "Dobrich": {"country": "Bulgaria", "subcountry": "Dobrich"}, "Svishtov": {"country": "Bulgaria", "subcountry": "Veliko T\u016drnovo"}, "Svilengrad": {"country": "Bulgaria", "subcountry": "Khaskovo"}, "Stara Zagora": {"country": "Bulgaria", "subcountry": "Stara Zagora"}, "Dupnitsa": {"country": "Bulgaria", "subcountry": "Kyustendil"}, "Sofia": {"country": "Bulgaria", "subcountry": "Sofia-Capital"}, "Smolyan": {"country": "Bulgaria", "subcountry": "Smolyan"}, "Sliven": {"country": "Bulgaria", "subcountry": "Sliven"}, "Silistra": {"country": "Bulgaria", "subcountry": "Silistra"}, "Shumen": {"country": "Bulgaria", "subcountry": "Shumen"}, "Sevlievo": {"country": "Bulgaria", "subcountry": "Gabrovo"}, "Sandanski": {"country": "Bulgaria", "subcountry": "Blagoevgrad"}, "Samokov": {"country": "Bulgaria", "subcountry": "Sofiya"}, "Ruse": {"country": "Bulgaria", "subcountry": "Ruse"}, "Razgrad": {"country": "Bulgaria", "subcountry": "Razgrad"}, "Rakovski": {"country": "Bulgaria", "subcountry": "Plovdiv"}, "Popovo": {"country": "Bulgaria", "subcountry": "T\u016drgovishte"}, "Plovdiv": {"country": "Bulgaria", "subcountry": "Plovdiv"}, "Pleven": {"country": "Bulgaria", "subcountry": "Pleven"}, "Petrich": {"country": "Bulgaria", "subcountry": "Blagoevgrad"}, "Peshtera": {"country": "Bulgaria", "subcountry": "Pazardzhik"}, "Pernik": {"country": "Bulgaria", "subcountry": "Pernik"}, "Pazardzhik": {"country": "Bulgaria", "subcountry": "Pazardzhik"}, "Panagyurishte": {"country": "Bulgaria", "subcountry": "Pazardzhik"}, "Nova Zagora": {"country": "Bulgaria", "subcountry": "Sliven"}, "Montana": {"country": "Bulgaria", "subcountry": "Montana"}, "Lovech": {"country": "Bulgaria", "subcountry": "Lovech"}, "Lom": {"country": "Bulgaria", "subcountry": "Montana"}, "Kyustendil": {"country": "Bulgaria", "subcountry": "Kyustendil"}, "Kardzhali": {"country": "Bulgaria", "subcountry": "K\u016drdzhali"}, "Haskovo": {"country": "Bulgaria", "subcountry": "Khaskovo"}, "Kharmanli": {"country": "Bulgaria", "subcountry": "Khaskovo"}, "Kazanl\u016dk": {"country": "Bulgaria", "subcountry": "Stara Zagora"}, "Karnobat": {"country": "Bulgaria", "subcountry": "Burgas"}, "Karlovo": {"country": "Bulgaria", "subcountry": "Plovdiv"}, "Gotse Delchev": {"country": "Bulgaria", "subcountry": "Blagoevgrad"}, "Gorna Oryakhovitsa": {"country": "Bulgaria", "subcountry": "Veliko T\u016drnovo"}, "Gabrovo": {"country": "Bulgaria", "subcountry": "Gabrovo"}, "Dimitrovgrad": {"country": "Russia", "subcountry": "Ulyanovsk"}, "Chirpan": {"country": "Bulgaria", "subcountry": "Stara Zagora"}, "Cherven Bryag": {"country": "Bulgaria", "subcountry": "Pleven"}, "Burgas": {"country": "Bulgaria", "subcountry": "Burgas"}, "Botevgrad": {"country": "Bulgaria", "subcountry": "Sofiya"}, "Blagoevgrad": {"country": "Bulgaria", "subcountry": "Blagoevgrad"}, "Berkovitsa": {"country": "Bulgaria", "subcountry": "Montana"}, "Aytos": {"country": "Bulgaria", "subcountry": "Burgas"}, "Asenovgrad": {"country": "Bulgaria", "subcountry": "Plovdiv"}, "Sitrah": {"country": "Bahrain", "subcountry": "Manama"}, "Mad\u012bnat \u2018\u012as\u00e1": {"country": "Bahrain", "subcountry": "Southern Governorate"}, "Jidd \u1e28af\u015f": {"country": "Bahrain", "subcountry": "Manama"}, "Mad\u012bnat \u1e28amad": {"country": "Bahrain", "subcountry": "Central Governorate"}, "D\u0101r Kulayb": {"country": "Bahrain", "subcountry": "Southern Governorate"}, "Al Muharraq": {"country": "Bahrain", "subcountry": "Muharraq"}, "Manama": {"country": "Bahrain", "subcountry": "Manama"}, "Ar Rif\u0101\u2018": {"country": "Bahrain", "subcountry": "Southern Governorate"}, "Makamba": {"country": "Burundi", "subcountry": "Makamba"}, "Bururi": {"country": "Burundi", "subcountry": "Bururi"}, "Bujumbura": {"country": "Burundi", "subcountry": "Bujumbura Mairie"}, "Muramvya": {"country": "Burundi", "subcountry": "Muramvya"}, "Gitega": {"country": "Burundi", "subcountry": "Gitega"}, "Ruyigi": {"country": "Burundi", "subcountry": "Ruyigi"}, "Ngozi": {"country": "Burundi", "subcountry": "Ngozi"}, "Kayanza": {"country": "Burundi", "subcountry": "Kayanza"}, "Muyinga": {"country": "Burundi", "subcountry": "Muyinga"}, "Rutana": {"country": "Burundi", "subcountry": "Rutana"}, "Tchaourou": {"country": "Benin", "subcountry": "Borgou"}, "Tangui\u00e9ta": {"country": "Benin", "subcountry": "Atakora"}, "Sav\u00e9": {"country": "Benin", "subcountry": "Collines"}, "Savalou": {"country": "Benin", "subcountry": "Collines"}, "Sak\u00e9t\u00e9": {"country": "Benin", "subcountry": "Plateau"}, "Porto-Novo": {"country": "Benin", "subcountry": "Qu\u00e9m\u00e9"}, "Pob\u00e9": {"country": "Benin", "subcountry": "Plateau"}, "Parakou": {"country": "Benin", "subcountry": "Borgou"}, "Ouidah": {"country": "Benin", "subcountry": "Atlantique"}, "Nikki": {"country": "Benin", "subcountry": "Borgou"}, "Natitingou": {"country": "Benin", "subcountry": "Atakora"}, "Malanville": {"country": "Benin", "subcountry": "Atakora"}, "Lokossa": {"country": "Benin", "subcountry": "Mono"}, "K\u00e9tou": {"country": "Benin", "subcountry": "Plateau"}, "Kandi": {"country": "Benin", "subcountry": "Alibori"}, "Dogbo": {"country": "Benin", "subcountry": "Kouffo"}, "Djougou": {"country": "Benin", "subcountry": "Donga"}, "Dassa-Zoum\u00e9": {"country": "Benin", "subcountry": "Collines"}, "Cov\u00e9": {"country": "Benin", "subcountry": "Zou"}, "Cotonou": {"country": "Benin", "subcountry": "Littoral"}, "Com\u00e9": {"country": "Benin", "subcountry": "Mono"}, "Bohicon": {"country": "Benin", "subcountry": "Zou"}, "Bemb\u00e8r\u00e8k\u00e8": {"country": "Benin", "subcountry": "Borgou"}, "Bassila": {"country": "Benin", "subcountry": "Donga"}, "Banikoara": {"country": "Benin", "subcountry": "Alibori"}, "Aplahou\u00e9": {"country": "Benin", "subcountry": "Kouffo"}, "Allada": {"country": "Benin", "subcountry": "Atlantique"}, "Abomey-Calavi": {"country": "Benin", "subcountry": "Atlantique"}, "Abomey": {"country": "Benin", "subcountry": "Zou"}, "Gustavia": {"country": "Saint Barthelemy", "subcountry": "N/A"}, "Hamilton": {"country": "United States", "subcountry": "Ohio"}, "Tutong": {"country": "Brunei", "subcountry": "Tutong"}, "Seria": {"country": "Brunei", "subcountry": "Belait"}, "Kuala Belait": {"country": "Brunei", "subcountry": "Belait"}, "Bandar Seri Begawan": {"country": "Brunei", "subcountry": "Brunei and Muara"}, "Yacuiba": {"country": "Bolivia", "subcountry": "Tarija"}, "Warnes": {"country": "Bolivia", "subcountry": "Santa Cruz"}, "Villaz\u00f3n": {"country": "Bolivia", "subcountry": "Potos\u00ed"}, "Villa Yapacan\u00ed": {"country": "Bolivia", "subcountry": "Santa Cruz"}, "Villamontes": {"country": "Bolivia", "subcountry": "Tarija"}, "Tupiza": {"country": "Bolivia", "subcountry": "Potos\u00ed"}, "Trinidad": {"country": "Uruguay", "subcountry": "Flores"}, "Tarija": {"country": "Bolivia", "subcountry": "Tarija"}, "Sucre": {"country": "Ecuador", "subcountry": "Manab\u00ed"}, "Santiago Del Torno": {"country": "Bolivia", "subcountry": "Santa Cruz"}, "Santa Cruz De La Sierra": {"country": "Bolivia", "subcountry": "Santa Cruz"}, "San Ignacio De Velasco": {"country": "Bolivia", "subcountry": "Santa Cruz"}, "San Borja": {"country": "Bolivia", "subcountry": "El Beni"}, "Riberalta": {"country": "Bolivia", "subcountry": "El Beni"}, "Punata": {"country": "Bolivia", "subcountry": "Cochabamba"}, "Potos\u00ed": {"country": "Bolivia", "subcountry": "Potos\u00ed"}, "Oruro": {"country": "Bolivia", "subcountry": "Oruro"}, "Montero": {"country": "Bolivia", "subcountry": "Santa Cruz"}, "Mizque": {"country": "Bolivia", "subcountry": "Cochabamba"}, "Llallagua": {"country": "Bolivia", "subcountry": "Potos\u00ed"}, "Huanuni": {"country": "Bolivia", "subcountry": "Oruro"}, "Guayaramer\u00edn": {"country": "Bolivia", "subcountry": "El Beni"}, "Cotoca": {"country": "Bolivia", "subcountry": "Santa Cruz"}, "Cochabamba": {"country": "Bolivia", "subcountry": "Cochabamba"}, "Cobija": {"country": "Bolivia", "subcountry": "Pando"}, "Camiri": {"country": "Bolivia", "subcountry": "Santa Cruz"}, "Kralendijk": {"country": "Bonaire, Saint Eustatius and Saba", "subcountry": "Bonaire"}, "Vit\u00f3ria Do Mearim": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Vit\u00f3ria De Santo Ant\u00e3o": {"country": "Brazil", "subcountry": "Pernambuco"}, "Viseu": {"country": "Portugal", "subcountry": "Viseu"}, "Conde": {"country": "Brazil", "subcountry": "Bahia"}, "Vigia": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Vi\u00e7osa Do Cear\u00e1": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Vi\u00e7osa": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Viana": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "V\u00e1rzea Alegre": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Varjota": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Vargem Grande": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Valen\u00e7a Do Piau\u00ed": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "Uni\u00e3o Dos Palmares": {"country": "Brazil", "subcountry": "Alagoas"}, "Uni\u00e3o": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "Tuntum": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Tucuru\u00ed": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Tucum\u00e3": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Trindade": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Trairi": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Toritama": {"country": "Brazil", "subcountry": "Pernambuco"}, "Tom\u00e9 A\u00e7u": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Timon": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Timbiras": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Timba\u00faba": {"country": "Brazil", "subcountry": "Pernambuco"}, "Tiangu\u00e1": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Teresina": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "S\u00e3o Jo\u00e3o Dos Inhamuns": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Tamandar\u00e9": {"country": "Brazil", "subcountry": "Pernambuco"}, "Tabira": {"country": "Brazil", "subcountry": "Pernambuco"}, "Surubim": {"country": "Brazil", "subcountry": "Pernambuco"}, "Sousa": {"country": "Brazil", "subcountry": "Para\u00edba"}, "Soure": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Sol\u00e2nea": {"country": "Brazil", "subcountry": "Para\u00edba"}, "Sobral": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Sirinha\u00e9m": {"country": "Brazil", "subcountry": "Pernambuco"}, "Sert\u00e2nia": {"country": "Brazil", "subcountry": "Pernambuco"}, "Serra Talhada": {"country": "Brazil", "subcountry": "Pernambuco"}, "Senador Pompeu": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Satuba": {"country": "Brazil", "subcountry": "Alagoas"}, "S\u00e3o Raimundo Nonato": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "S\u00e3o Miguel Dos Campos": {"country": "Brazil", "subcountry": "Alagoas"}, "S\u00e3o Miguel Do Guam\u00e1": {"country": "Brazil", "subcountry": "Par\u00e1"}, "S\u00e3o Mateus Do Maranh\u00e3o": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "S\u00e3o Lu\u00eds Do Quitunde": {"country": "Brazil", "subcountry": "Alagoas"}, "S\u00e3o Lu\u00eds": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "S\u00e3o Louren\u00e7o Da Mata": {"country": "Brazil", "subcountry": "Pernambuco"}, "S\u00e3o Jos\u00e9 Do Egito": {"country": "Brazil", "subcountry": "Pernambuco"}, "S\u00e3o Jos\u00e9 De Ribamar": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "S\u00e3o Jos\u00e9 De Mipibu": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "S\u00e3o Jo\u00e3o Dos Patos": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "S\u00e3o Gon\u00e7alo Do Amarante": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "S\u00e3o F\u00e9lix Do Xingu": {"country": "Brazil", "subcountry": "Par\u00e1"}, "S\u00e3o Domingos Do Maranh\u00e3o": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "S\u00e3o Bento": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Santa Rita": {"country": "Venezuela", "subcountry": "Zulia"}, "Santar\u00e9m": {"country": "Portugal", "subcountry": "Santar\u00e9m"}, "Santa Quit\u00e9ria Do Maranh\u00e3o": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Santa Quit\u00e9ria": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Santana Do Ipanema": {"country": "Brazil", "subcountry": "Alagoas"}, "Santa Luzia": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Santa In\u00eas": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Santa Helena": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Santa Cruz Do Capibaribe": {"country": "Brazil", "subcountry": "Pernambuco"}, "Santa Cruz": {"country": "United States", "subcountry": "California"}, "Salin\u00f3polis": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Salgueiro": {"country": "Brazil", "subcountry": "Pernambuco"}, "Russas": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Rio Largo": {"country": "Brazil", "subcountry": "Alagoas"}, "Rio Formoso": {"country": "Brazil", "subcountry": "Pernambuco"}, "Ribeir\u00e3o": {"country": "Brazil", "subcountry": "Pernambuco"}, "Recife": {"country": "Brazil", "subcountry": "Pernambuco"}, "Quixeramobim": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Quixad\u00e1": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Presidente Dutra": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Santana": {"country": "Brazil", "subcountry": "Amap\u00e1"}, "Porto Calvo": {"country": "Brazil", "subcountry": "Alagoas"}, "Portel": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Pombos": {"country": "Brazil", "subcountry": "Pernambuco"}, "Pombal": {"country": "Portugal", "subcountry": "Leiria"}, "Piripiri": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "Piracuruca": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "Pinheiro": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Pindar\u00e9 Mirim": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Pilar": {"country": "Paraguay", "subcountry": "\u00d1eembuc\u00fa"}, "Picos": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "Petrolina": {"country": "Brazil", "subcountry": "Pernambuco"}, "Jatob\u00e1": {"country": "Brazil", "subcountry": "Pernambuco"}, "Pesqueira": {"country": "Brazil", "subcountry": "Pernambuco"}, "Pentecoste": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Penalva": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Pedro Ii": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "Pedra Branca": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Paulo Afonso": {"country": "Brazil", "subcountry": "Bahia"}, "Paulista": {"country": "Brazil", "subcountry": "Pernambuco"}, "Patos": {"country": "Brazil", "subcountry": "Para\u00edba"}, "Parnamirim": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "Parna\u00edba": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "Parintins": {"country": "Brazil", "subcountry": "Amazonas"}, "Parelhas": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "Paraipaba": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Paragominas": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Paracuru": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Palmares": {"country": "Brazil", "subcountry": "Pernambuco"}, "Pacatuba": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Pacajus": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Ouricuri": {"country": "Brazil", "subcountry": "Pernambuco"}, "Or\u00f3s": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Oriximin\u00e1": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Olinda": {"country": "Brazil", "subcountry": "Pernambuco"}, "Oeiras": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "\u00c1bidos": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Nova Russas": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Nova Cruz": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "Nazar\u00e9 Da Mata": {"country": "Brazil", "subcountry": "Pernambuco"}, "Natal": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "Murici": {"country": "Brazil", "subcountry": "Alagoas"}, "Moreno": {"country": "Brazil", "subcountry": "Pernambuco"}, "Morada Nova": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Monteiro": {"country": "Brazil", "subcountry": "Para\u00edba"}, "Monte Alegre": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Momba\u00e7a": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Moju": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Mossor\u00f3": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "Mocajuba": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Mau\u00e9s": {"country": "Brazil", "subcountry": "Amazonas"}, "Matriz De Camaragibe": {"country": "Brazil", "subcountry": "Alagoas"}, "Mari": {"country": "Brazil", "subcountry": "Para\u00edba"}, "Marechal Deodoro": {"country": "Brazil", "subcountry": "Alagoas"}, "Maragogi": {"country": "Brazil", "subcountry": "Alagoas"}, "Maracana\u00fa": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Marab\u00e1": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Mamanguape": {"country": "Brazil", "subcountry": "Para\u00edba"}, "Macei\u00f3": {"country": "Brazil", "subcountry": "Alagoas"}, "Macau": {"country": "Macao", "subcountry": "Macau"}, "Macap\u00e1": {"country": "Brazil", "subcountry": "Amap\u00e1"}, "Maca\u00edba": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "Limoeiro Do Norte": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Limoeiro": {"country": "Brazil", "subcountry": "Pernambuco"}, "Lavras Da Mangabeira": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Lajedo": {"country": "Brazil", "subcountry": "Pernambuco"}, "Lago Da Pedra": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Lagoa Do Itaenga": {"country": "Brazil", "subcountry": "Pernambuco"}, "Juazeiro Do Norte": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Jos\u00e9 De Freitas": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "Jo\u00e3o Pessoa": {"country": "Brazil", "subcountry": "Para\u00edba"}, "Jo\u00e3o C\u00e2mara": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "Jaguaruana": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Jaguaribe": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Jaboat\u00e3o": {"country": "Brazil", "subcountry": "Pernambuco"}, "Itupiranga": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Itacoatiara": {"country": "Brazil", "subcountry": "Amazonas"}, "Itaporanga": {"country": "Brazil", "subcountry": "Para\u00edba"}, "Itapissuma": {"country": "Brazil", "subcountry": "Pernambuco"}, "Itapipoca": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Itapecuru Mirim": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Itapag\u00e9": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Itaituba": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Itaitinga": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Itabaiana": {"country": "Brazil", "subcountry": "Sergipe"}, "Ipueiras": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Ipubi": {"country": "Brazil", "subcountry": "Pernambuco"}, "Ipu": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Ipojuca": {"country": "Brazil", "subcountry": "Pernambuco"}, "Imperatriz": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Iguatu": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Igarap\u00e9 Miri": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Igarap\u00e9 A\u00e7u": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Igarassu": {"country": "Brazil", "subcountry": "Pernambuco"}, "Ic\u00f3": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Horizonte": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Guaraciaba Do Norte": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Guarabira": {"country": "Brazil", "subcountry": "Para\u00edba"}, "Guai\u00faba": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Gravat\u00e1": {"country": "Brazil", "subcountry": "Pernambuco"}, "Granja": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Graja\u00fa": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Goiana": {"country": "Brazil", "subcountry": "Pernambuco"}, "Gl\u00f3ria Do Goit\u00e1": {"country": "Brazil", "subcountry": "Pernambuco"}, "Garanhuns": {"country": "Brazil", "subcountry": "Pernambuco"}, "Gameleira": {"country": "Brazil", "subcountry": "Pernambuco"}, "Fortaleza": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Floriano": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "Floresta": {"country": "Brazil", "subcountry": "Pernambuco"}, "Eus\u00e9bio": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Extremoz": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "Estreito": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Esperantina": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "Esperan\u00e7a": {"country": "Brazil", "subcountry": "Para\u00edba"}, "Escada": {"country": "Brazil", "subcountry": "Pernambuco"}, "Dom Pedro": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Demerval Lob\u00e3o": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "Delmiro Gouveia": {"country": "Brazil", "subcountry": "Alagoas"}, "Cust\u00f3dia": {"country": "Brazil", "subcountry": "Pernambuco"}, "Cururupu": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Currais Novos": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "Cupira": {"country": "Brazil", "subcountry": "Pernambuco"}, "Crato": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Crate\u00fas": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Coroat\u00e1": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Condado": {"country": "Cuba", "subcountry": "Sancti Sp\u00edritus"}, "Concei\u00e7\u00e3o Do Araguaia": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Colinas": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Coelho Neto": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Cod\u00f3": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Chapadinha": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Ch\u00e3 Grande": {"country": "Brazil", "subcountry": "Pernambuco"}, "Cear\u00e1 Mirim": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "Caxias": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Caucaia": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Catol\u00e9 Do Rocha": {"country": "Brazil", "subcountry": "Para\u00edba"}, "Catende": {"country": "Brazil", "subcountry": "Pernambuco"}, "Castanhal": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Cascavel": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Caruaru": {"country": "Brazil", "subcountry": "Pernambuco"}, "Carpina": {"country": "Brazil", "subcountry": "Pernambuco"}, "Carolina": {"country": "Puerto Rico", "subcountry": "Carolina"}, "Capit\u00e3o Po\u00e7o": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Capanema": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Canind\u00e9": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Canguaretama": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "Campos Sales": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Campo Maior": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "Campo Alegre": {"country": "Brazil", "subcountry": "Alagoas"}, "Campina Grande": {"country": "Brazil", "subcountry": "Para\u00edba"}, "Camocim": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Camet\u00e1": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Cajueiro": {"country": "Brazil", "subcountry": "Alagoas"}, "Cajazeiras": {"country": "Brazil", "subcountry": "Para\u00edba"}, "Caic\u00f3": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "Cabrob\u00f3": {"country": "Brazil", "subcountry": "Pernambuco"}, "Cabo": {"country": "Brazil", "subcountry": "Pernambuco"}, "Cabedelo": {"country": "Brazil", "subcountry": "Para\u00edba"}, "Buriti Bravo": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Bu\u00edque": {"country": "Brazil", "subcountry": "Pernambuco"}, "Breves": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Brejo Santo": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Brejo Da Madre De Deus": {"country": "Brazil", "subcountry": "Pernambuco"}, "Bragan\u00e7a": {"country": "Portugal", "subcountry": "Bragan\u00e7a"}, "Bom Conselho": {"country": "Brazil", "subcountry": "Pernambuco"}, "Boa Viagem": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Bezerros": {"country": "Brazil", "subcountry": "Pernambuco"}, "Benevides": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Belo Jardim": {"country": "Brazil", "subcountry": "Pernambuco"}, "Bel\u00e9m": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Beberibe": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Bayeux": {"country": "France", "subcountry": "Normandy"}, "Baturit\u00e9": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Barreiros": {"country": "Brazil", "subcountry": "Pernambuco"}, "Barreirinhas": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Barras": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "Barra Do Corda": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Barcarena": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Barbalha": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Balsas": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Bacabal": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Augusto Corr\u00eaa": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Atalaia": {"country": "Brazil", "subcountry": "Alagoas"}, "Areia Branca": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "Arcoverde": {"country": "Brazil", "subcountry": "Pernambuco"}, "Araripina": {"country": "Brazil", "subcountry": "Pernambuco"}, "Arari": {"country": "Brazil", "subcountry": "Maranh\u00e3o"}, "Arapiraca": {"country": "Brazil", "subcountry": "Alagoas"}, "Aragua\u00edna": {"country": "Brazil", "subcountry": "Tocantins"}, "Aracati": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Aquiraz": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Apodi": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "Ananindeua": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Amaraji": {"country": "Brazil", "subcountry": "Pernambuco"}, "Altos": {"country": "Brazil", "subcountry": "Piau\u00ed"}, "Altamira": {"country": "Mexico", "subcountry": "Tamaulipas"}, "Almeirim": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Alenquer": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Alagoa Grande": {"country": "Brazil", "subcountry": "Para\u00edba"}, "\u00c1guas Belas": {"country": "Brazil", "subcountry": "Pernambuco"}, "\u00c1gua Preta": {"country": "Brazil", "subcountry": "Pernambuco"}, "Afogados Da Ingazeira": {"country": "Brazil", "subcountry": "Pernambuco"}, "A\u00e7u": {"country": "Brazil", "subcountry": "Rio Grande do Norte"}, "Acopiara": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Acara\u00fa": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Abreu E Lima": {"country": "Brazil", "subcountry": "Pernambuco"}, "Abaetetuba": {"country": "Brazil", "subcountry": "Par\u00e1"}, "Xique Xique": {"country": "Brazil", "subcountry": "Bahia"}, "Xanxer\u00ea": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Votuporanga": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Votorantim": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Volta Redonda": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Vit\u00f3ria Da Conquista": {"country": "Brazil", "subcountry": "Bahia"}, "Vit\u00f3ria": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Visconde Do Rio Branco": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Viradouro": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Vinhedo": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Vila Velha": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Videira": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Viam\u00e3o": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Vespasiano": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Veran\u00f3polis": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Vera Cruz": {"country": "Brazil", "subcountry": "Bahia"}, "Wenceslau Braz": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Ven\u00e2ncio Aires": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Vazante": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Vassouras": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "V\u00e1rzea Paulista": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "V\u00e1rzea Grande": {"country": "Brazil", "subcountry": "Mato Grosso"}, "V\u00e1rzea Da Palma": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Varginha": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Vargem Grande Do Sul": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Valpara\u00edso": {"country": "Chile", "subcountry": "Valpara\u00edso"}, "Valinhos": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Valen\u00e7a": {"country": "Brazil", "subcountry": "Bahia"}, "Vacaria": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Uruguaiana": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Uru\u00e7uca": {"country": "Brazil", "subcountry": "Bahia"}, "Urua\u00e7u": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Uni\u00e3o Da Vit\u00f3ria": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Una\u00ed": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Una": {"country": "India", "subcountry": "Gujarat"}, "Umuarama": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Uberl\u00e2ndia": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Uberaba": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Ubatuba": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Ubat\u00e3": {"country": "Brazil", "subcountry": "Bahia"}, "Ubaitaba": {"country": "Brazil", "subcountry": "Bahia"}, "Ub\u00e1": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Tupanciret\u00e3": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Tupaciguara": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Tup\u00e3": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Tucano": {"country": "Brazil", "subcountry": "Bahia"}, "Tubar\u00e3o": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Tr\u00eas Rios": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Tr\u00eas Pontas": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Tr\u00eas Passos": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Tr\u00eas Lagoas": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Tr\u00eas De Maio": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Tr\u00eas Coroas": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Tr\u00eas Cora\u00e7\u00f5es": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Trememb\u00e9": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Tramanda\u00ed": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Torres": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Toledo": {"country": "United States", "subcountry": "Ohio"}, "Tobias Barreto": {"country": "Brazil", "subcountry": "Sergipe"}, "Tim\u00f3teo": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Timb\u00f3": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Tijucas": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Tiet\u00ea": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Teut\u00f4nia": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Teres\u00f3polis": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Te\u00f3filo Otoni": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Teodoro Sampaio": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Tel\u00eamaco Borba": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Taubat\u00e9": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Tatu\u00ed": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Taquarituba": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Taquaritinga": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Taquari": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Taquara": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Tapiramut\u00e1": {"country": "Brazil", "subcountry": "Bahia"}, "Tapes": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Tangu\u00e1": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Tanabi": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Tamba\u00fa": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Taiobeiras": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Tabo\u00e3o Da Serra": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Suzano": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Sumar\u00e9": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Sorocaba": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Soledade": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Socorro": {"country": "United States", "subcountry": "Texas"}, "Sobradinho": {"country": "Brazil", "subcountry": "Bahia"}, "Sim\u00e3o Dias": {"country": "Brazil", "subcountry": "Sergipe"}, "Silva Jardim": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Sidrol\u00e2ndia": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Sete Lagoas": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Sert\u00e3ozinho": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Serrinha": {"country": "Brazil", "subcountry": "Bahia"}, "Serra Negra": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Serrana": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Serra": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Serop\u00e9dica": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Senhor Do Bonfim": {"country": "Brazil", "subcountry": "Bahia"}, "Senador Canedo": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Seabra": {"country": "Brazil", "subcountry": "Bahia"}, "Schroeder": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Saubara": {"country": "Brazil", "subcountry": "Bahia"}, "Sarzedo": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Sarandi": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Saquarema": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Sapucaia": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Sapiranga": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "S\u00e3o Vicente": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "S\u00e3o Sep\u00e9": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "S\u00e3o Sebasti\u00e3o Do Pass\u00e9": {"country": "Brazil", "subcountry": "Bahia"}, "S\u00e3o Sebasti\u00e3o Do Para\u00edso": {"country": "Brazil", "subcountry": "Minas Gerais"}, "S\u00e3o Sebasti\u00e3o Do Ca\u00ed": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "S\u00e3o Sebasti\u00e3o": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "S\u00e3o Roque": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "S\u00e3o Pedro Da Aldeia": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "S\u00e3o Pedro": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "S\u00e3o Paulo": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "S\u00e3o Miguel Do Igua\u00e7u": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "S\u00e3o Miguel Do Araguaia": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "S\u00e3o Mateus Do Sul": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "S\u00e3o Mateus": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "S\u00e3o Marcos": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "S\u00e3o Manuel": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "S\u00e3o Luiz Gonzaga": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "S\u00e3o Lu\u00eds De Montes Belos": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "S\u00e3o Louren\u00e7o Do Sul": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "S\u00e3o Louren\u00e7o": {"country": "Brazil", "subcountry": "Minas Gerais"}, "S\u00e3o Leopoldo": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "S\u00e3o Jos\u00e9 Dos Pinhais": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "S\u00e3o Jos\u00e9 Dos Campos": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "S\u00e3o Jos\u00e9 Do Rio Preto": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "S\u00e3o Jos\u00e9 Do Rio Pardo": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "S\u00e3o Jos\u00e9": {"country": "Brazil", "subcountry": "Santa Catarina"}, "S\u00e3o Joaquim Da Barra": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "S\u00e3o Joaquim": {"country": "Brazil", "subcountry": "Santa Catarina"}, "S\u00e3o Jo\u00e3o Nepomuceno": {"country": "Brazil", "subcountry": "Minas Gerais"}, "S\u00e3o Jo\u00e3o De Meriti": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "S\u00e3o Jo\u00e3o Del Rei": {"country": "Brazil", "subcountry": "Minas Gerais"}, "S\u00e3o Jo\u00e3o Da Boa Vista": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "S\u00e3o Jo\u00e3o Da Barra": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "S\u00e3o Jer\u00f4nimo": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "S\u00e3o Gotardo": {"country": "Brazil", "subcountry": "Minas Gerais"}, "S\u00e3o Gon\u00e7alo Do Sapuca\u00ed": {"country": "Brazil", "subcountry": "Minas Gerais"}, "S\u00e3o Gabriel": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "S\u00e3o Francisco Do Sul": {"country": "Brazil", "subcountry": "Santa Catarina"}, "S\u00e3o Francisco Do Conde": {"country": "Brazil", "subcountry": "Bahia"}, "S\u00e3o Francisco": {"country": "Brazil", "subcountry": "Minas Gerais"}, "S\u00e3o Fid\u00e9lis": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "S\u00e3o Crist\u00f3v\u00e3o": {"country": "Brazil", "subcountry": "Sergipe"}, "S\u00e3o Carlos": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "S\u00e3o Caetano Do Sul": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "S\u00e3o Borja": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "S\u00e3o Bernardo Do Campo": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "S\u00e3o Bento Do Sul": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Santos Dumont": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Santos": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Santo Est\u00eav\u00e3o": {"country": "Brazil", "subcountry": "Bahia"}, "Santo Ant\u00f4nio Do Monte": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Santo Ant\u00f4nio Do Amparo": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Santo Ant\u00f4nio De Posse": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Santo Ant\u00f4nio De P\u00e1dua": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Santo Ant\u00f4nio De Jesus": {"country": "Brazil", "subcountry": "Bahia"}, "Santo Ant\u00f4nio Da Platina": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Santo \u00c2ngelo": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Santo Andr\u00e9": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Santo Anast\u00e1cio": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Santo Amaro Da Imperatriz": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Santo Amaro": {"country": "Brazil", "subcountry": "Bahia"}, "Santiago": {"country": "Philippines", "subcountry": "Cagayan Valley"}, "Santa Vit\u00f3ria Do Palmar": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Santa Rosa De Viterbo": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Santa Rita Do Sapuca\u00ed": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Santa Rita Do Passa Quatro": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Santana Do Para\u00edso": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Santana Do Livramento": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Santana De Parna\u00edba": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Santa Maria Da Vit\u00f3ria": {"country": "Brazil", "subcountry": "Bahia"}, "Santa Maria": {"country": "United States", "subcountry": "California"}, "Santaluz": {"country": "Brazil", "subcountry": "Bahia"}, "Santa Isabel": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Santa Helena De Goi\u00e1s": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Santa Gertrudes": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Santa F\u00e9 Do Sul": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Santa Cruz Do Sul": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Santa Cruz Do Rio Pardo": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Santa Cruz Das Palmeiras": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Santa Cruz Cabr\u00e1lia": {"country": "Brazil", "subcountry": "Bahia"}, "Santa Cec\u00edlia": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Santa B\u00e1rbara D'Oeste": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Salvador": {"country": "Brazil", "subcountry": "Bahia"}, "Salto De Pirapora": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Salto": {"country": "Uruguay", "subcountry": "Salto"}, "Salinas": {"country": "United States", "subcountry": "California"}, "Sacramento": {"country": "United States", "subcountry": "California"}, "Ruy Barbosa": {"country": "Brazil", "subcountry": "Bahia"}, "Rubiataba": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Ros\u00e1rio Do Sul": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Rondon\u00f3polis": {"country": "Brazil", "subcountry": "Mato Grosso"}, "Rolante": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Rol\u00e2ndia": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Rio Verde De Mato Grosso": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Rio Real": {"country": "Brazil", "subcountry": "Bahia"}, "Rio Pardo": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Rio Negro": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Rio Negrinho": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Rio Grande Da Serra": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Rio Grande": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Rio Do Sul": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Rio De Janeiro": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Rio Das Pedras": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Rio Das Ostras": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Rio Claro": {"country": "Trinidad and Tobago", "subcountry": "Mayaro"}, "Rio Brilhante": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Rio Branco Do Sul": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Rio Bonito": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Ribeir\u00e3o Preto": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Ribeir\u00e3o Pires": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Ribeir\u00e3o Das Neves": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Ribeir\u00e3o Da Ilha": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Ribeira Do Pombal": {"country": "Brazil", "subcountry": "Bahia"}, "Riach\u00e3o Do Jacu\u00edpe": {"country": "Brazil", "subcountry": "Bahia"}, "Resplendor": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Resende": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Registro": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Regente Feij\u00f3": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Rancharia": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Quirin\u00f3polis": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Queimados": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Quatro Barras": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Quara\u00ed": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Prudent\u00f3polis": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Propri\u00e1": {"country": "Brazil", "subcountry": "Sergipe"}, "Promiss\u00e3o": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Presidente Venceslau": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Presidente Prudente": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Presidente Epit\u00e1cio": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Prata": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Praia Grande": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Prado": {"country": "Brazil", "subcountry": "Bahia"}, "Pouso Alegre": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Posse": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Porto Uni\u00e3o": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Porto Seguro": {"country": "Brazil", "subcountry": "Bahia"}, "Porto Ferreira": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Porto Feliz": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Porto Alegre": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Port\u00e3o": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Porangatu": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Pontes E Lacerda": {"country": "Brazil", "subcountry": "Mato Grosso"}, "Ponte Nova": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Ponta Por\u00e3": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Pontal": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Ponta Grossa": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Pomp\u00e9u": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Pomp\u00e9ia": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Pomerode": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Po\u00e7os De Caldas": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Pocon\u00e9": {"country": "Brazil", "subcountry": "Mato Grosso"}, "Po\u00e7\u00f5es": {"country": "Brazil", "subcountry": "Bahia"}, "Po\u00e1": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Planaltina": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Pi\u00fama": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Piu\u00ed": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Pitangui": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Pitangueiras": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Pitanga": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Piritiba": {"country": "Brazil", "subcountry": "Bahia"}, "Pires Do Rio": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Piraquara": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Pirapozinho": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Pirapora": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Piraju\u00ed": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Piraju": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Pira\u00ed Do Sul": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Pira\u00ed": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Pirassununga": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Piracicaba": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Piracanjuba": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Piracaia": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Pinheiral": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Pinh\u00e3o": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Esp\u00edrito Santo Do Pinhal": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Pindoba\u00e7u": {"country": "Brazil", "subcountry": "Bahia"}, "Pindamonhangaba": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Pilar Do Sul": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Piedade": {"country": "Portugal", "subcountry": "Set\u00fabal"}, "Petr\u00f3polis": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Peru\u00edbe": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Pereira Barreto": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Perd\u00f5es": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Penha": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Penedo": {"country": "Brazil", "subcountry": "Alagoas"}, "Pen\u00e1polis": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Pelotas": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Pedro Leopoldo": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Pedreira": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Pedra Azul": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Pederneiras": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Paul\u00ednia": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Patroc\u00ednio": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Patos De Minas": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Pato Branco": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Paty Do Alferes": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Passos": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Passo Fundo": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Parob\u00e9": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Paraty": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Paranava\u00ed": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Paranapanema": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Parana\u00edba": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Paranagu\u00e1": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Para\u00edba Do Sul": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Paragua\u00e7u Paulista": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Paragua\u00e7u": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Par\u00e1 De Minas": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Paracatu": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Paracambi": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Panambi": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Palotina": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Palmital": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Palmeira Das Miss\u00f5es": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Palmeira": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Palmas": {"country": "Brazil", "subcountry": "Tocantins"}, "Palho\u00e7a": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Pai\u00e7andu": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Padre Bernardo": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Ouro Preto": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Ouro Branco": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Ourinhos": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Osvaldo Cruz": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Os\u00f3rio": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Osasco": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Orleans": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Orl\u00e2ndia": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Oliveira": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Ol\u00edmpia": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Novo Horizonte": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Novo Hamburgo": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Nova Vi\u00e7osa": {"country": "Brazil", "subcountry": "Bahia"}, "Nova Ven\u00e9cia": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Nova Prata": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Nova Petr\u00f3polis": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Nova Ol\u00edmpia": {"country": "Brazil", "subcountry": "Mato Grosso"}, "Nova Odessa": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Nova Lima": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Nova Igua\u00e7u": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Nova Granada": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Nova Friburgo": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Nova Era": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Nossa Senhora Do Socorro": {"country": "Brazil", "subcountry": "Sergipe"}, "Nossa Senhora Da Gl\u00f3ria": {"country": "Brazil", "subcountry": "Sergipe"}, "Niter\u00f3i": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Niquel\u00e2ndia": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Nil\u00f3polis": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Ner\u00f3polis": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Nepomuceno": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Nazar\u00e9": {"country": "Brazil", "subcountry": "Bahia"}, "Navira\u00ed": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Navegantes": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Nanuque": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Muzambinho": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Muritiba": {"country": "Brazil", "subcountry": "Bahia"}, "Muria\u00e9": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Mucuri": {"country": "Brazil", "subcountry": "Bahia"}, "Morro Do Chap\u00e9u": {"country": "Brazil", "subcountry": "Bahia"}, "Morro Agudo": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Morrinhos": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Montes Claros": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Monte Santo De Minas": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Montenegro": {"country": "Colombia", "subcountry": "Quind\u00edo"}, "Monte Mor": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Monte Carmelo": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Monte Azul Paulista": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Monte Apraz\u00edvel": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Monte Alto": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Mongagu\u00e1": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Mogi Mirim": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Mogi-Gaucu": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Mogi Das Cruzes": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Mococa": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Mirandop\u00f3lis": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Miracema": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Mineiros": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Miguel Pereira": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Miguel\u00f3polis": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Mendes": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Medianeira": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Medeiros Neto": {"country": "Brazil", "subcountry": "Bahia"}, "Mau\u00e1": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Matozinhos": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Mateus Leme": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Mat\u00e3o": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Mata De S\u00e3o Jo\u00e3o": {"country": "Brazil", "subcountry": "Bahia"}, "Mascote": {"country": "Brazil", "subcountry": "Bahia"}, "Martin\u00f3polis": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Maring\u00e1": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Mar\u00edlia": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Maric\u00e1": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Mariana": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Marialva": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Marechal C\u00e2ndido Rondon": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Marau": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Marataizes": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Maragogipe": {"country": "Brazil", "subcountry": "Bahia"}, "Marac\u00e1s": {"country": "Brazil", "subcountry": "Bahia"}, "Maracaju": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Manhumirim": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Manhua\u00e7u": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Mangaratiba": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Mandaguari": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Mairipor\u00e3": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Mairinque": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Mafra": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Machado": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Macatuba": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Maca\u00e9": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Luzi\u00e2nia": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Lucas": {"country": "Brazil", "subcountry": "Mato Grosso"}, "Louveira": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Lorena": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Londrina": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Loanda": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Livramento Do Brumado": {"country": "Brazil", "subcountry": "Bahia"}, "Lins": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Linhares": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Limeira": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Leopoldina": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Len\u00e7\u00f3is Paulista": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Leme": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Lavras": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Laranjeiras Do Sul": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Laranjeiras": {"country": "Brazil", "subcountry": "Sergipe"}, "Laranjal Paulista": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Lapa": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Lajinha": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Lages": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Lajeado": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Laguna": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Lagoa Vermelha": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Lagoa Santa": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Lagoa Da Prata": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Lagarto": {"country": "Brazil", "subcountry": "Sergipe"}, "Lad\u00e1rio": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Jundia\u00ed": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "J\u00falio De Castilhos": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Juiz De Fora": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Juatuba": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Jos\u00e9 Bonif\u00e1cio": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Joinville": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Jo\u00e3o Pinheiro": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Jo\u00e3o Monlevade": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Joa\u00e7aba": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Jeremoabo": {"country": "Brazil", "subcountry": "Bahia"}, "Jequitinhonha": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Jequi\u00e9": {"country": "Brazil", "subcountry": "Bahia"}, "Ja\u00fa": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Jata\u00ed": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Jarinu": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Jardin\u00f3polis": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Jardim": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Jaragu\u00e1 Do Sul": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Jaragu\u00e1": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Japeri": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Janu\u00e1ria": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Jandira": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Jandaia Do Sul": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Jana\u00faba": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Jales": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Jaguari\u00fana": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Jaguaria\u00edva": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Jaguarari": {"country": "Brazil", "subcountry": "Bahia"}, "Jaguar\u00e3o": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Jaguaquara": {"country": "Brazil", "subcountry": "Bahia"}, "Jacutinga": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Jacobina": {"country": "Brazil", "subcountry": "Bahia"}, "Jaciara": {"country": "Brazil", "subcountry": "Mato Grosso"}, "Jacarezinho": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Jacare\u00ed": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Jaboticabal": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Ivoti": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Ituverava": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Iturama": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Itupeva": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Itumbiara": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Ituiutaba": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Ituber\u00e1": {"country": "Brazil", "subcountry": "Bahia"}, "Itu": {"country": "Nigeria", "subcountry": "Akwa Ibom"}, "Itoror\u00f3": {"country": "Brazil", "subcountry": "Bahia"}, "Ita\u00fana": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Itatinga": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Itatiba": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Itarar\u00e9": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Itaqui": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Itaquaquecetuba": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Itapuranga": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "It\u00e1polis": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Itapira": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Itapevi": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Itapeva": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Itapetininga": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Itapetinga": {"country": "Brazil", "subcountry": "Bahia"}, "Itaperuna": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Itaperu\u00e7u": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Itapemirim": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Itapema": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Itapecerica Da Serra": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Itapecerica": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Itaparica": {"country": "Brazil", "subcountry": "Bahia"}, "Itapaci": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Itaocara": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Itanha\u00e9m": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Itamb\u00e9": {"country": "Brazil", "subcountry": "Bahia"}, "Itamarandiba": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Itamaraju": {"country": "Brazil", "subcountry": "Bahia"}, "Itaju\u00edpe": {"country": "Brazil", "subcountry": "Bahia"}, "Itajub\u00e1": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Itaja\u00ed": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Ita\u00ed": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Itagua\u00ed": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Itabuna": {"country": "Brazil", "subcountry": "Bahia"}, "Itabora\u00ed": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Itabirito": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Itabira": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Itabera\u00ed": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Itaberaba": {"country": "Brazil", "subcountry": "Bahia"}, "Itabaianinha": {"country": "Brazil", "subcountry": "Sergipe"}, "Irec\u00ea": {"country": "Brazil", "subcountry": "Bahia"}, "Irati": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Iracem\u00e1polis": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Ipor\u00e1": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Ipir\u00e1": {"country": "Brazil", "subcountry": "Bahia"}, "Ipia\u00fa": {"country": "Brazil", "subcountry": "Bahia"}, "Iper\u00f3": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Ipatinga": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Ipameri": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Ipaba": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Inhumas": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Indaiatuba": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Indaial": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Imbituva": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Imbituba": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Ilh\u00e9us": {"country": "Brazil", "subcountry": "Bahia"}, "Ilha Solteira": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Ilhabela": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Iju\u00ed": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Iguape": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Igrejinha": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Igarap\u00e9": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Igarapava": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Igara\u00e7u Do Tiet\u00ea": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "I\u00e7ara": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Ibotirama": {"country": "Brazil", "subcountry": "Bahia"}, "Ibi\u00fana": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Ibitinga": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Ibirit\u00e9": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Ibirataia": {"country": "Brazil", "subcountry": "Bahia"}, "Ibirama": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Ibipor\u00e3": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Ibicara\u00ed": {"country": "Brazil", "subcountry": "Bahia"}, "Ibi\u00e1": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Ibat\u00e9": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Ibaiti": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Ia\u00e7u": {"country": "Brazil", "subcountry": "Bahia"}, "Hortol\u00e2ndia": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Herval": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Gurupi": {"country": "Brazil", "subcountry": "Tocantins"}, "Guaxup\u00e9": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Guarulhos": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Guaruj\u00e1": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Guariba": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Guaratuba": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Guaratinguet\u00e1": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Guararema": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Guararapes": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Guarapuava": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Guarapari": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Guaran\u00e9sia": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Guaramirim": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Guar\u00e1": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Guapor\u00e9": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Guapimirim": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Guanh\u00e3es": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Guanambi": {"country": "Brazil", "subcountry": "Bahia"}, "Gua\u00edra": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Gua\u00e7u\u00ed": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Gravata\u00ed": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Governador Valadares": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Goiatuba": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Goi\u00e1s": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Goianira": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Goi\u00e2nia": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Goian\u00e9sia": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Gaspar": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Garibaldi": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Gar\u00e7a": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Gandu": {"country": "Brazil", "subcountry": "Bahia"}, "Frutal": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Frederico Westphalen": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Franco Da Rocha": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Francisco Morato": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Francisco Beltr\u00e3o": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Franca": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Foz Do Igua\u00e7u": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Forquilhinha": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Formiga": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Florian\u00f3polis": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Flores Da Cunha": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Ferraz De Vasconcelos": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Fernand\u00f3polis": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Feira De Santana": {"country": "Brazil", "subcountry": "Bahia"}, "Farroupilha": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Euclides Da Cunha": {"country": "Brazil", "subcountry": "Bahia"}, "Estrela": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Esteio": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Est\u00e2ncia Velha": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Est\u00e2ncia": {"country": "Brazil", "subcountry": "Sergipe"}, "Esplanada": {"country": "Brazil", "subcountry": "Bahia"}, "Espinosa": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Esmeraldas": {"country": "Ecuador", "subcountry": "Esmeraldas"}, "Erechim": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Entre Rios": {"country": "Brazil", "subcountry": "Bahia"}, "Encruzilhada Do Sul": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Encantado": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Embu Gua\u00e7u": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Embu": {"country": "Kenya", "subcountry": "Embu"}, "El\u00f3i Mendes": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Duque De Caxias": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Dourados": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Dom Pedrito": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Dois Vizinhos": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Dois C\u00f3rregos": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Divin\u00f3polis": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Diamantino": {"country": "Brazil", "subcountry": "Mato Grosso"}, "Diamantina": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Diadema": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Descalvado": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Curvelo": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Curitibanos": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Curitiba": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Cuiab\u00e1": {"country": "Brazil", "subcountry": "Mato Grosso"}, "Cubat\u00e3o": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Cruzeiro Do Oeste": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Cruzeiro": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Cruz Das Almas": {"country": "Brazil", "subcountry": "Bahia"}, "Cruz Alta": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Cristalina": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Crici\u00fama": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Cravinhos": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Coxim": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Cotia": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Cosm\u00f3polis": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Coruripe": {"country": "Brazil", "subcountry": "Alagoas"}, "Corumb\u00e1": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Coronel Vivida": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Coronel Fabriciano": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Coromandel": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Corn\u00e9lio Proc\u00f3pio": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Corinto": {"country": "Nicaragua", "subcountry": "Chinandega"}, "Cordeir\u00f3polis": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Cordeiro": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Contagem": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Conselheiro Lafaiete": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Congonhas": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Conc\u00f3rdia": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Conchal": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Concei\u00e7\u00e3o Do Coit\u00e9": {"country": "Brazil", "subcountry": "Bahia"}, "Concei\u00e7\u00e3o Do Jacu\u00edpe": {"country": "Brazil", "subcountry": "Bahia"}, "Concei\u00e7\u00e3o Das Alagoas": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Concei\u00e7\u00e3o Da Feira": {"country": "Brazil", "subcountry": "Bahia"}, "Concei\u00e7\u00e3o Da Barra": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Colorado": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Colombo": {"country": "Sri Lanka", "subcountry": "Western"}, "Colatina": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Coaraci": {"country": "Brazil", "subcountry": "Bahia"}, "Cl\u00e1udio": {"country": "Brazil", "subcountry": "Minas Gerais"}, "C\u00edcero Dantas": {"country": "Brazil", "subcountry": "Bahia"}, "Cianorte": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Charqueadas": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Chapec\u00f3": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Cerquilho": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Ceres": {"country": "South Africa", "subcountry": "Western Cape"}, "Celso Ramos": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Caxias Do Sul": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Caxambu": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Catu": {"country": "Brazil", "subcountry": "Bahia"}, "Catanduva": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Catal\u00e3o": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Cataguases": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Castro": {"country": "Chile", "subcountry": "Los Lagos"}, "Castelo": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Cassil\u00e2ndia": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Casimiro De Abreu": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Casa Branca": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Carmo Do Parana\u00edba": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Carmo Do Cajuru": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Carlos Barbosa": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Carazinho": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Caratinga": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Carapicu\u00edba": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Carangola": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Caranda\u00ed": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Caraguatatuba": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Capivari": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Capinzal": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Capim Grosso": {"country": "Brazil", "subcountry": "Bahia"}, "Capelinha": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Capela": {"country": "Brazil", "subcountry": "Sergipe"}, "Cap\u00e3o Da Canoa": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Cap\u00e2o Bonito": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Canoinhas": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Canoas": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Cangu\u00e7u": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Canela": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "C\u00e2ndido Mota": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Candel\u00e1ria": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Canavieiras": {"country": "Brazil", "subcountry": "Bahia"}, "Campo Verde": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Campos Novos": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Campos Gerais": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Campos Do Jord\u00e3o": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Campos Belos": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Campos": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Campo Mour\u00e3o": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Campo Largo": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Campo Grande": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Campo Formoso": {"country": "Brazil", "subcountry": "Bahia"}, "Campo Belo": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Campinas": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Campina Grande Do Sul": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Cambu\u00ed": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Camb\u00e9": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Cambar\u00e1": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Camaqu\u00e3": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Camanducaia": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Cama\u00e7ari": {"country": "Brazil", "subcountry": "Bahia"}, "Caldas Novas": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Cajuru": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Cajati": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Cajamar": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Caieiras": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Caetit\u00e9": {"country": "Brazil", "subcountry": "Bahia"}, "Caet\u00e9": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Cachoeiro De Itapemirim": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Cachoeirinha": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Cachoeiras De Macacu": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Cachoeira Do Sul": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Cachoeira": {"country": "Brazil", "subcountry": "Bahia"}, "Ca\u00e7apava Do Sul": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Ca\u00e7apava": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Ca\u00e7ador": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Cabre\u00fava": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Cabo Frio": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Buti\u00e1": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Buritizeiro": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Buritis": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Buri": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Buerarema": {"country": "Brazil", "subcountry": "Bahia"}, "Brusque": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Brumado": {"country": "Brazil", "subcountry": "Bahia"}, "Brumadinho": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Brotas": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Brod\u00f3squi": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Bras\u00edlia": {"country": "Brazil", "subcountry": "Federal District"}, "Bragan\u00e7a Paulista": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Bra\u00e7o Do Norte": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Botucatu": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Bom Jesus Do Itabapoana": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Bom Jesus Da Lapa": {"country": "Brazil", "subcountry": "Bahia"}, "Bom Despacho": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Boituva": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Bocai\u00fava": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Boa Esperan\u00e7a": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Blumenau": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Biritiba Mirim": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Birigui": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Bigua\u00e7u": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Betim": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Bertioga": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Bento Gon\u00e7alves": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Belo Oriente": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Belo Horizonte": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Belford Roxo": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Bela Vista": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Bebedouro": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Bauru": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Batatais": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Bastos": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Barueri": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Barroso": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Barrinha": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Barretos": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Barreiro Do Ja\u00edba": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Barreiras": {"country": "Brazil", "subcountry": "Bahia"}, "Barra Velha": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Barra Mansa": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Barra Dos Coqueiros": {"country": "Brazil", "subcountry": "Sergipe"}, "Barra Do Pira\u00ed": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Barra Do Gar\u00e7as": {"country": "Brazil", "subcountry": "Mato Grosso"}, "Barra Do Bugres": {"country": "Brazil", "subcountry": "Mato Grosso"}, "Barra De S\u00e3o Francisco": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Barra Bonita": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Barra": {"country": "Brazil", "subcountry": "Bahia"}, "Bariri": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Barbacena": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Bar\u00e3o De Cocais": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Bandeirantes": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Bambu\u00ed": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Balne\u00e1rio Cambori\u00fa": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Baixo Guandu": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Bag\u00e9": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Avar\u00e9": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Atibaia": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Astorga": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Assis": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Aruj\u00e1": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Artur Nogueira": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Arroio Grande": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Arroio Do Meio": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Arraial Do Cabo": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Arma\u00e7\u00e3o De B\u00fazios": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Arcos": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Arax\u00e1": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Arauc\u00e1ria": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Araruama": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Araras": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Araraquara": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Ararangu\u00e1": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Arapongas": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Araguari": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Aragar\u00e7as": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Ara\u00e7ua\u00ed": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Aracruz": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Ara\u00e7oiaba Da Serra": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Araci": {"country": "Brazil", "subcountry": "Bahia"}, "Ara\u00e7atuba": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Aracaju": {"country": "Brazil", "subcountry": "Sergipe"}, "Aquidauana": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Apucarana": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Apia\u00ed": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Aparecida Do Taboado": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "Aparecida": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Antonina": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Anicuns": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Angra Dos Reis": {"country": "Brazil", "subcountry": "Rio de Janeiro"}, "Andradina": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Andradas": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Anast\u00e1cio": {"country": "Brazil", "subcountry": "Mato Grosso do Sul"}, "An\u00e1polis": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Amparo": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Am\u00e9rico Brasiliense": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Americana": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Amargosa": {"country": "Brazil", "subcountry": "Bahia"}, "\u00c1lvares Machado": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Almirante Tamandar\u00e9": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Almenara": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Alfenas": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Al\u00e9m Para\u00edba": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Alegrete": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Alegre": {"country": "Brazil", "subcountry": "Esp\u00edrito Santo"}, "Alagoinhas": {"country": "Brazil", "subcountry": "Bahia"}, "Aimor\u00e9s": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Agudos": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "\u00c1guas Vermelhas": {"country": "Brazil", "subcountry": "Minas Gerais"}, "\u00c1guas De Lind\u00f3ia": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Agua\u00ed": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Adamantina": {"country": "Brazil", "subcountry": "S\u00e3o Paulo"}, "Abaet\u00e9": {"country": "Brazil", "subcountry": "Minas Gerais"}, "Gua\u00edba": {"country": "Brazil", "subcountry": "Rio Grande do Sul"}, "Tef\u00e9": {"country": "Brazil", "subcountry": "Amazonas"}, "Tarauac\u00e1": {"country": "Brazil", "subcountry": "Acre"}, "Tabatinga": {"country": "Brazil", "subcountry": "Amazonas"}, "Sena Madureira": {"country": "Brazil", "subcountry": "Acre"}, "S\u00e3o Gabriel Da Cachoeira": {"country": "Brazil", "subcountry": "Amazonas"}, "Rio Branco": {"country": "Brazil", "subcountry": "Acre"}, "Porto Velho": {"country": "Brazil", "subcountry": "Rond\u00f4nia"}, "Manaus": {"country": "Brazil", "subcountry": "Amazonas"}, "Manacapuru": {"country": "Brazil", "subcountry": "Amazonas"}, "Humait\u00e1": {"country": "Brazil", "subcountry": "Amazonas"}, "Fonte Boa": {"country": "Brazil", "subcountry": "Amazonas"}, "Eirunep\u00e9": {"country": "Brazil", "subcountry": "Amazonas"}, "Cruzeiro Do Sul": {"country": "Brazil", "subcountry": "Acre"}, "Coari": {"country": "Brazil", "subcountry": "Amazonas"}, "Carauari": {"country": "Brazil", "subcountry": "Amazonas"}, "Boa Vista": {"country": "Brazil", "subcountry": "Roraima"}, "Ariquemes": {"country": "Brazil", "subcountry": "Rond\u00f4nia"}, "Aripuan\u00e3": {"country": "Brazil", "subcountry": "Mato Grosso"}, "Vilhena": {"country": "Brazil", "subcountry": "Rond\u00f4nia"}, "P\u00f4sto Fiscal Rolim De Moura": {"country": "Brazil", "subcountry": "Rond\u00f4nia"}, "Pimenta Bueno": {"country": "Brazil", "subcountry": "Rond\u00f4nia"}, "Ouro Preto Do Oeste": {"country": "Brazil", "subcountry": "Rond\u00f4nia"}, "Ji Paran\u00e1": {"country": "Brazil", "subcountry": "Rond\u00f4nia"}, "Jaru": {"country": "Brazil", "subcountry": "Rond\u00f4nia"}, "Guajar\u00e1 Mirim": {"country": "Brazil", "subcountry": "Rond\u00f4nia"}, "Cacoal": {"country": "Brazil", "subcountry": "Rond\u00f4nia"}, "Aparecida De Goi\u00e2nia": {"country": "Brazil", "subcountry": "Goi\u00e1s"}, "Jaboat\u00e3o Dos Guararapes": {"country": "Brazil", "subcountry": "Pernambuco"}, "Lauro De Freitas": {"country": "Brazil", "subcountry": "Bahia"}, "Pinhais": {"country": "Brazil", "subcountry": "Paran\u00e1"}, "Rio Preto Da Eva": {"country": "Brazil", "subcountry": "Amazonas"}, "Sim\u00f5es Filho": {"country": "Brazil", "subcountry": "Bahia"}, "Sinop": {"country": "Turkey", "subcountry": "Sinop"}, "Cambebba": {"country": "Brazil", "subcountry": "Cear\u00e1"}, "Freguesia Do Ribeirao Da Ilha": {"country": "Brazil", "subcountry": "Santa Catarina"}, "Nassau": {"country": "Bahamas", "subcountry": "New Providence"}, "Lucaya": {"country": "Bahamas", "subcountry": "Freeport"}, "Freeport": {"country": "United States", "subcountry": "New York"}, "Thimphu": {"country": "Bhutan", "subcountry": "Thimphu"}, "Pun\u0101kha": {"country": "Bhutan", "subcountry": "Punakha"}, "Phuntsholing": {"country": "Bhutan", "subcountry": "Chukha District"}, "Tsirang": {"country": "Bhutan", "subcountry": "Chirang"}, "Tonota": {"country": "Botswana", "subcountry": "Central"}, "Thamaga": {"country": "Botswana", "subcountry": "Kweneng"}, "Serowe": {"country": "Botswana", "subcountry": "Central"}, "Selebi-Phikwe": {"country": "Botswana", "subcountry": "Central"}, "Ramotswa": {"country": "Botswana", "subcountry": "South East"}, "Palapye": {"country": "Botswana", "subcountry": "Central"}, "Mosopa": {"country": "Botswana", "subcountry": "Southern"}, "Molepolole": {"country": "Botswana", "subcountry": "Kweneng"}, "Mogoditshane": {"country": "Botswana", "subcountry": "Kweneng"}, "Mochudi": {"country": "Botswana", "subcountry": "Kgatleng"}, "Maun": {"country": "Botswana", "subcountry": "North West"}, "Mahalapye": {"country": "Botswana", "subcountry": "Central"}, "Lobatse": {"country": "Botswana", "subcountry": "South East"}, "Letlhakane": {"country": "Botswana", "subcountry": "Central"}, "Kanye": {"country": "Botswana", "subcountry": "Southern"}, "Janeng": {"country": "Botswana", "subcountry": "South East"}, "Gaborone": {"country": "Botswana", "subcountry": "South East"}, "Francistown": {"country": "Botswana", "subcountry": "North East"}, "Horad Zhodzina": {"country": "Belarus", "subcountry": "Minsk"}, "Zhlobin": {"country": "Belarus", "subcountry": "Gomel"}, "Vitebsk": {"country": "Belarus", "subcountry": "Vitebsk"}, "Vilyeyka": {"country": "Belarus", "subcountry": "Minsk"}, "Vawkavysk": {"country": "Belarus", "subcountry": "Grodnenskaya"}, "Svyetlahorsk": {"country": "Belarus", "subcountry": "Gomel"}, "Stowbtsy": {"country": "Belarus", "subcountry": "Minsk"}, "Smarhon\u2019": {"country": "Belarus", "subcountry": "Grodnenskaya"}, "Slutsk": {"country": "Belarus", "subcountry": "Minsk"}, "Slonim": {"country": "Belarus", "subcountry": "Grodnenskaya"}, "Shchuchin": {"country": "Belarus", "subcountry": "Grodnenskaya"}, "Salihorsk": {"country": "Belarus", "subcountry": "Minsk"}, "Rahachow": {"country": "Belarus", "subcountry": "Gomel"}, "Rechytsa": {"country": "Belarus", "subcountry": "Gomel"}, "Pruzhany": {"country": "Belarus", "subcountry": "Brest"}, "Polatsk": {"country": "Belarus", "subcountry": "Vitebsk"}, "Pinsk": {"country": "Belarus", "subcountry": "Brest"}, "Pastavy": {"country": "Belarus", "subcountry": "Vitebsk"}, "Asipovichy": {"country": "Belarus", "subcountry": "Mogilev"}, "Orsha": {"country": "Belarus", "subcountry": "Vitebsk"}, "Novoye Medvezhino": {"country": "Belarus", "subcountry": "Minsk City"}, "Navapolatsk": {"country": "Belarus", "subcountry": "Vitebsk"}, "Navahrudak": {"country": "Belarus", "subcountry": "Grodnenskaya"}, "Minsk": {"country": "Belarus", "subcountry": "Minsk City"}, "Mazyr": {"country": "Belarus", "subcountry": "Gomel"}, "Masty": {"country": "Belarus", "subcountry": "Grodnenskaya"}, "Mar\u2019\u2019Ina Horka": {"country": "Belarus", "subcountry": "Minsk"}, "Maladzyechna": {"country": "Belarus", "subcountry": "Minsk"}, "Mahilyow": {"country": "Belarus", "subcountry": "Mogilev"}, "Lyepyel\u2019": {"country": "Belarus", "subcountry": "Vitebsk"}, "Luninyets": {"country": "Belarus", "subcountry": "Brest"}, "Lida": {"country": "Belarus", "subcountry": "Grodnenskaya"}, "Krychaw": {"country": "Belarus", "subcountry": "Mogilev"}, "Kalodzishchy": {"country": "Belarus", "subcountry": "Minsk"}, "Kobryn": {"country": "Belarus", "subcountry": "Brest"}, "Kalinkavichy": {"country": "Belarus", "subcountry": "Gomel"}, "Ivatsevichy": {"country": "Belarus", "subcountry": "Brest"}, "Hrodna": {"country": "Belarus", "subcountry": "Grodnenskaya"}, "Horki": {"country": "Belarus", "subcountry": "Mogilev"}, "Gomel": {"country": "Belarus", "subcountry": "Gomel"}, "Hlybokaye": {"country": "Belarus", "subcountry": "Vitebsk"}, "Dzyarzhynsk": {"country": "Belarus", "subcountry": "Minsk"}, "Dobrush": {"country": "Belarus", "subcountry": "Gomel"}, "Bykhaw": {"country": "Belarus", "subcountry": "Mogilev"}, "Byaroza": {"country": "Belarus", "subcountry": "Brest"}, "Brest": {"country": "France", "subcountry": "Brittany"}, "Horad Barysaw": {"country": "Belarus", "subcountry": "Minsk"}, "Baranovichi": {"country": "Belarus", "subcountry": "Brest"}, "Babruysk": {"country": "Belarus", "subcountry": "Mogilev"}, "Malinovka": {"country": "Belarus", "subcountry": "Minsk City"}, "San Ignacio": {"country": "Belize", "subcountry": "Cayo"}, "Orange Walk": {"country": "Belize", "subcountry": "Orange Walk"}, "Belmopan": {"country": "Belize", "subcountry": "Cayo"}, "Belize City": {"country": "Belize", "subcountry": "Belize"}, "Abbotsford": {"country": "Canada", "subcountry": "British Columbia"}, "Airdrie": {"country": "United Kingdom", "subcountry": "Scotland"}, "Ajax": {"country": "Canada", "subcountry": "Ontario"}, "Alma": {"country": "Canada", "subcountry": "Quebec"}, "Amos": {"country": "Canada", "subcountry": "Quebec"}, "Anmore": {"country": "Canada", "subcountry": "British Columbia"}, "Baie-Comeau": {"country": "Canada", "subcountry": "Quebec"}, "Barrie": {"country": "Canada", "subcountry": "Ontario"}, "Beaconsfield": {"country": "Canada", "subcountry": "Quebec"}, "Belleville": {"country": "United States", "subcountry": "New Jersey"}, "Beloeil": {"country": "Canada", "subcountry": "Quebec"}, "Blainville": {"country": "Canada", "subcountry": "Quebec"}, "Boisbriand": {"country": "Canada", "subcountry": "Quebec"}, "Boucherville": {"country": "Canada", "subcountry": "Quebec"}, "Bradford West Gwillimbury": {"country": "Canada", "subcountry": "Ontario"}, "Brampton": {"country": "Canada", "subcountry": "Ontario"}, "Brandon": {"country": "United States", "subcountry": "Mississippi"}, "Brant": {"country": "Canada", "subcountry": "Ontario"}, "Brantford": {"country": "Canada", "subcountry": "Ontario"}, "Brockville": {"country": "Canada", "subcountry": "Ontario"}, "Brossard": {"country": "Canada", "subcountry": "Quebec"}, "Burlington": {"country": "United States", "subcountry": "Vermont"}, "Burnaby": {"country": "Canada", "subcountry": "British Columbia"}, "Calgary": {"country": "Canada", "subcountry": "Alberta"}, "Cambridge": {"country": "United States", "subcountry": "Massachusetts"}, "Campbell River": {"country": "Canada", "subcountry": "British Columbia"}, "Camrose": {"country": "Canada", "subcountry": "Alberta"}, "Candiac": {"country": "Canada", "subcountry": "Quebec"}, "Chambly": {"country": "Canada", "subcountry": "Quebec"}, "Charlottetown": {"country": "Canada", "subcountry": "Prince Edward Island"}, "Ch\u00e2teauguay": {"country": "Canada", "subcountry": "Quebec"}, "Chilliwack": {"country": "Canada", "subcountry": "British Columbia"}, "Clarence-Rockland": {"country": "Canada", "subcountry": "Ontario"}, "Cobourg": {"country": "Canada", "subcountry": "Ontario"}, "Cochrane": {"country": "Canada", "subcountry": "Alberta"}, "Collingwood": {"country": "Canada", "subcountry": "Ontario"}, "Conception Bay South": {"country": "Canada", "subcountry": "Newfoundland and Labrador"}, "Coquitlam": {"country": "Canada", "subcountry": "British Columbia"}, "Corner Brook": {"country": "Canada", "subcountry": "Newfoundland and Labrador"}, "Cornwall": {"country": "Canada", "subcountry": "Ontario"}, "C\u00f4te-Saint-Luc": {"country": "Canada", "subcountry": "Quebec"}, "Courtenay": {"country": "Canada", "subcountry": "British Columbia"}, "Cranbrook": {"country": "Canada", "subcountry": "British Columbia"}, "Dartmouth": {"country": "Canada", "subcountry": "Nova Scotia"}, "Delta": {"country": "Canada", "subcountry": "British Columbia"}, "Deux-Montagnes": {"country": "Canada", "subcountry": "Quebec"}, "Dieppe": {"country": "France", "subcountry": "Normandy"}, "Dollard-Des Ormeaux": {"country": "Canada", "subcountry": "Quebec"}, "Dorval": {"country": "Canada", "subcountry": "Quebec"}, "Drummondville": {"country": "Canada", "subcountry": "Quebec"}, "Duncan": {"country": "United States", "subcountry": "Oklahoma"}, "Edmonton": {"country": "Canada", "subcountry": "Alberta"}, "Etobicoke": {"country": "Canada", "subcountry": "Ontario"}, "Fort Erie": {"country": "Canada", "subcountry": "Ontario"}, "Fort Mcmurray": {"country": "Canada", "subcountry": "Alberta"}, "Fort St. John": {"country": "Canada", "subcountry": "British Columbia"}, "Fredericton": {"country": "Canada", "subcountry": "New Brunswick"}, "Gatineau": {"country": "Canada", "subcountry": "Quebec"}, "Glace Bay": {"country": "Canada", "subcountry": "Nova Scotia"}, "Granby": {"country": "Canada", "subcountry": "Quebec"}, "Grande Prairie": {"country": "Canada", "subcountry": "Alberta"}, "Greater Sudbury": {"country": "Canada", "subcountry": "Ontario"}, "Greater Napanee": {"country": "Canada", "subcountry": "Ontario"}, "Guelph": {"country": "Canada", "subcountry": "Ontario"}, "Huntsville": {"country": "United States", "subcountry": "Texas"}, "Joliette": {"country": "Canada", "subcountry": "Quebec"}, "Kamloops": {"country": "Canada", "subcountry": "British Columbia"}, "Kelowna": {"country": "Canada", "subcountry": "British Columbia"}, "Keswick": {"country": "Canada", "subcountry": "Ontario"}, "Kingston": {"country": "United States", "subcountry": "New York"}, "Kirkland": {"country": "United States", "subcountry": "Washington"}, "Kitchener": {"country": "Canada", "subcountry": "Ontario"}, "Langford": {"country": "Canada", "subcountry": "British Columbia"}, "Langley": {"country": "Canada", "subcountry": "British Columbia"}, "La Prairie": {"country": "Canada", "subcountry": "Quebec"}, "L'Assomption": {"country": "Canada", "subcountry": "Quebec"}, "Laval": {"country": "France", "subcountry": "Pays de la Loire"}, "Leduc": {"country": "Canada", "subcountry": "Alberta"}, "Lethbridge": {"country": "Canada", "subcountry": "Alberta"}, "Lloydminster": {"country": "Canada", "subcountry": "Saskatchewan"}, "London": {"country": "United Kingdom", "subcountry": "England"}, "Longueuil": {"country": "Canada", "subcountry": "Quebec"}, "Magog": {"country": "Canada", "subcountry": "Quebec"}, "Maple Ridge": {"country": "Canada", "subcountry": "British Columbia"}, "Markham": {"country": "Canada", "subcountry": "Ontario"}, "Mascouche": {"country": "Canada", "subcountry": "Quebec"}, "Medicine Hat": {"country": "Canada", "subcountry": "Alberta"}, "Midland": {"country": "United States", "subcountry": "Texas"}, "Milton": {"country": "United States", "subcountry": "Georgia"}, "Mirabel": {"country": "Canada", "subcountry": "Quebec"}, "Miramichi": {"country": "Canada", "subcountry": "New Brunswick"}, "Mississauga": {"country": "Canada", "subcountry": "Ontario"}, "Moncton": {"country": "Canada", "subcountry": "New Brunswick"}, "Montr\u00e9al": {"country": "Canada", "subcountry": "Quebec"}, "Mont-Royal": {"country": "Canada", "subcountry": "Quebec"}, "Mont-Saint-Hilaire": {"country": "Canada", "subcountry": "Quebec"}, "Moose Jaw": {"country": "Canada", "subcountry": "Saskatchewan"}, "Mount Pearl": {"country": "Canada", "subcountry": "Newfoundland and Labrador"}, "Nanaimo": {"country": "Canada", "subcountry": "British Columbia"}, "New Glasgow": {"country": "Canada", "subcountry": "Nova Scotia"}, "Newmarket": {"country": "United Kingdom", "subcountry": "England"}, "New Westminster": {"country": "Canada", "subcountry": "British Columbia"}, "Niagara Falls": {"country": "United States", "subcountry": "New York"}, "Norfolk County": {"country": "Canada", "subcountry": "Ontario"}, "North Battleford": {"country": "Canada", "subcountry": "Saskatchewan"}, "North Bay": {"country": "Canada", "subcountry": "Ontario"}, "North Cowichan": {"country": "Canada", "subcountry": "British Columbia"}, "North Vancouver": {"country": "Canada", "subcountry": "British Columbia"}, "North York": {"country": "Canada", "subcountry": "Ontario"}, "Oak Bay": {"country": "Canada", "subcountry": "British Columbia"}, "Oakville": {"country": "United States", "subcountry": "Missouri"}, "Orangeville": {"country": "Canada", "subcountry": "Ontario"}, "Orillia": {"country": "Canada", "subcountry": "Ontario"}, "Oshawa": {"country": "Canada", "subcountry": "Ontario"}, "Ottawa": {"country": "United States", "subcountry": "Illinois"}, "Owen Sound": {"country": "Canada", "subcountry": "Ontario"}, "Parksville": {"country": "Canada", "subcountry": "British Columbia"}, "Pembroke": {"country": "Canada", "subcountry": "Ontario"}, "Penticton": {"country": "Canada", "subcountry": "British Columbia"}, "Petawawa": {"country": "Canada", "subcountry": "Ontario"}, "Peterborough": {"country": "United Kingdom", "subcountry": "England"}, "Pickering": {"country": "Canada", "subcountry": "Ontario"}, "Pitt Meadows": {"country": "Canada", "subcountry": "British Columbia"}, "Pointe-Claire": {"country": "Canada", "subcountry": "Quebec"}, "Port Alberni": {"country": "Canada", "subcountry": "British Columbia"}, "Port Colborne": {"country": "Canada", "subcountry": "Ontario"}, "Port Moody": {"country": "Canada", "subcountry": "British Columbia"}, "Prince Albert": {"country": "Canada", "subcountry": "Saskatchewan"}, "Prince Edward": {"country": "Canada", "subcountry": "Ontario"}, "Prince George": {"country": "Canada", "subcountry": "British Columbia"}, "Quinte West": {"country": "Canada", "subcountry": "Ontario"}, "Rayside-Balfour": {"country": "Canada", "subcountry": "Ontario"}, "Red Deer": {"country": "Canada", "subcountry": "Alberta"}, "Regina": {"country": "Canada", "subcountry": "Saskatchewan"}, "Repentigny": {"country": "Canada", "subcountry": "Quebec"}, "Richmond Hill": {"country": "Canada", "subcountry": "Ontario"}, "Rouyn-Noranda": {"country": "Canada", "subcountry": "Quebec"}, "Saguenay": {"country": "Canada", "subcountry": "Quebec"}, "Saint-Basile-Le-Grand": {"country": "Canada", "subcountry": "Quebec"}, "Saint-Bruno-De-Montarville": {"country": "Canada", "subcountry": "Quebec"}, "Saint-Constant": {"country": "Canada", "subcountry": "Quebec"}, "Sainte-Catherine": {"country": "Canada", "subcountry": "Quebec"}, "Sainte-Julie": {"country": "Canada", "subcountry": "Quebec"}, "Sainte-Th\u00e9r\u00e8se": {"country": "Canada", "subcountry": "Quebec"}, "Saint-Eustache": {"country": "Canada", "subcountry": "Quebec"}, "Saint-Hyacinthe": {"country": "Canada", "subcountry": "Quebec"}, "Saint-Jean-Sur-Richelieu": {"country": "Canada", "subcountry": "Quebec"}, "Saint-J\u00e9r\u00f4me": {"country": "Canada", "subcountry": "Quebec"}, "Saint John": {"country": "Canada", "subcountry": "New Brunswick"}, "Saint-Laurent": {"country": "Canada", "subcountry": "Quebec"}, "Saint-Lazare": {"country": "Canada", "subcountry": "Quebec"}, "Saint-L\u00e9onard": {"country": "Canada", "subcountry": "Quebec"}, "Salaberry-De-Valleyfield": {"country": "Canada", "subcountry": "Quebec"}, "Salmon Arm": {"country": "Canada", "subcountry": "British Columbia"}, "Sarnia": {"country": "Canada", "subcountry": "Ontario"}, "Saskatoon": {"country": "Canada", "subcountry": "Saskatchewan"}, "Sault Ste. Marie": {"country": "Canada", "subcountry": "Ontario"}, "Sept-\u00celes": {"country": "Canada", "subcountry": "Quebec"}, "Shawinigan": {"country": "Canada", "subcountry": "Quebec"}, "Sherbrooke": {"country": "Canada", "subcountry": "Quebec"}, "Sherwood Park": {"country": "Canada", "subcountry": "Alberta"}, "Sorel-Tracy": {"country": "Canada", "subcountry": "Quebec"}, "Spruce Grove": {"country": "Canada", "subcountry": "Alberta"}, "St. Albert": {"country": "Canada", "subcountry": "Alberta"}, "St. Catharines": {"country": "Canada", "subcountry": "Ontario"}, "Stratford": {"country": "Canada", "subcountry": "Ontario"}, "St. Thomas": {"country": "Canada", "subcountry": "Ontario"}, "Surrey": {"country": "Canada", "subcountry": "British Columbia"}, "Terrace": {"country": "Canada", "subcountry": "British Columbia"}, "Terrebonne": {"country": "Canada", "subcountry": "Quebec"}, "Thorold": {"country": "Canada", "subcountry": "Ontario"}, "Thunder Bay": {"country": "Canada", "subcountry": "Ontario"}, "Timmins": {"country": "Canada", "subcountry": "Ontario"}, "Toronto": {"country": "Canada", "subcountry": "Ontario"}, "Trois-Rivi\u00e8res": {"country": "Canada", "subcountry": "Quebec"}, "Truro": {"country": "Canada", "subcountry": "Nova Scotia"}, "Val-D'Or": {"country": "Canada", "subcountry": "Quebec"}, "Vancouver": {"country": "United States", "subcountry": "Washington"}, "Varennes": {"country": "Canada", "subcountry": "Quebec"}, "Vaudreuil-Dorion": {"country": "Canada", "subcountry": "Quebec"}, "Vaughan": {"country": "Canada", "subcountry": "Ontario"}, "Vernon": {"country": "France", "subcountry": "Normandy"}, "Victoriaville": {"country": "Canada", "subcountry": "Quebec"}, "Welland": {"country": "Canada", "subcountry": "Ontario"}, "West End": {"country": "Canada", "subcountry": "British Columbia"}, "Westmount": {"country": "Canada", "subcountry": "Quebec"}, "Whitehorse": {"country": "Canada", "subcountry": "Yukon"}, "White Rock": {"country": "Canada", "subcountry": "British Columbia"}, "Windsor": {"country": "United States", "subcountry": "Colorado"}, "Winnipeg": {"country": "Canada", "subcountry": "Manitoba"}, "Woodstock": {"country": "United States", "subcountry": "Illinois"}, "Yellowknife": {"country": "Canada", "subcountry": "Northwest Territories"}, "Yorkton": {"country": "Canada", "subcountry": "Saskatchewan"}, "Halifax": {"country": "Canada", "subcountry": "Nova Scotia"}, "St. John'S": {"country": "Canada", "subcountry": "Newfoundland and Labrador"}, "Qu\u00e9bec": {"country": "Canada", "subcountry": "Quebec"}, "L\u00e9vis": {"country": "Canada", "subcountry": "Quebec"}, "Rimouski": {"country": "Canada", "subcountry": "Quebec"}, "Rivi\u00e8re-Du-Loup": {"country": "Canada", "subcountry": "Quebec"}, "L'Ancienne-Lorette": {"country": "Canada", "subcountry": "Quebec"}, "Edmundston": {"country": "Canada", "subcountry": "New Brunswick"}, "Thetford-Mines": {"country": "Canada", "subcountry": "Quebec"}, "Scarborough": {"country": "Trinidad and Tobago", "subcountry": "Tobago"}, "Cole Harbour": {"country": "Canada", "subcountry": "Nova Scotia"}, "Okanagan": {"country": "Canada", "subcountry": "British Columbia"}, "West Kelowna": {"country": "Canada", "subcountry": "British Columbia"}, "Bellechasse Regional County Municipality": {"country": "Canada", "subcountry": "Quebec"}, "Jonqui\u00e8re": {"country": "Canada", "subcountry": "Quebec"}, "Saint-Augustin-De-Desmaures": {"country": "Canada", "subcountry": "Quebec"}, "Ladner": {"country": "Canada", "subcountry": "British Columbia"}, "Walnut Grove": {"country": "Canada", "subcountry": "British Columbia"}, "Ancaster": {"country": "Canada", "subcountry": "Ontario"}, "West Vancouver": {"country": "Canada", "subcountry": "British Columbia"}, "Willowdale": {"country": "Canada", "subcountry": "Ontario"}, "Lower Sacvkille": {"country": "Canada", "subcountry": "Nova Scotia"}, "West Island": {"country": "Cocos Islands", "subcountry": "N/A"}, "Yangambi": {"country": "Democratic Republic of the Congo", "subcountry": "Eastern Province"}, "Watsa": {"country": "Democratic Republic of the Congo", "subcountry": "Eastern Province"}, "Wamba": {"country": "Nigeria", "subcountry": "Nassarawa"}, "Uvira": {"country": "Democratic Republic of the Congo", "subcountry": "South Kivu"}, "Tshikapa": {"country": "Democratic Republic of the Congo", "subcountry": "Kasa\u00ef-Occidental"}, "Sake": {"country": "Democratic Republic of the Congo", "subcountry": "Nord Kivu"}, "Mwene-Ditu": {"country": "Democratic Republic of the Congo", "subcountry": "Kasa\u00ef-Oriental"}, "Mweka": {"country": "Democratic Republic of the Congo", "subcountry": "Kasa\u00ef-Occidental"}, "Mbuji-Mayi": {"country": "Democratic Republic of the Congo", "subcountry": "Kasa\u00ef-Oriental"}, "Lusambo": {"country": "Democratic Republic of the Congo", "subcountry": "Kasa\u00ef-Oriental"}, "Luebo": {"country": "Democratic Republic of the Congo", "subcountry": "Kasa\u00ef-Occidental"}, "Lubao": {"country": "Philippines", "subcountry": "Central Luzon"}, "Lodja": {"country": "Democratic Republic of the Congo", "subcountry": "Kasa\u00ef-Oriental"}, "Lisala": {"country": "Democratic Republic of the Congo", "subcountry": "\u00c9quateur"}, "Kongolo": {"country": "Democratic Republic of the Congo", "subcountry": "Katanga"}, "Kisangani": {"country": "Democratic Republic of the Congo", "subcountry": "Eastern Province"}, "Kindu": {"country": "Democratic Republic of the Congo", "subcountry": "Maniema"}, "Kasongo": {"country": "Democratic Republic of the Congo", "subcountry": "Maniema"}, "Kananga": {"country": "Democratic Republic of the Congo", "subcountry": "Kasa\u00ef-Occidental"}, "Kampene": {"country": "Democratic Republic of the Congo", "subcountry": "Maniema"}, "Kamina": {"country": "Democratic Republic of the Congo", "subcountry": "Katanga"}, "Kalemie": {"country": "Democratic Republic of the Congo", "subcountry": "Katanga"}, "Kabinda": {"country": "Democratic Republic of the Congo", "subcountry": "Kasa\u00ef-Oriental"}, "Kabare": {"country": "Democratic Republic of the Congo", "subcountry": "South Kivu"}, "Kabalo": {"country": "Democratic Republic of the Congo", "subcountry": "Katanga"}, "Isiro": {"country": "Democratic Republic of the Congo", "subcountry": "Eastern Province"}, "Ilebo": {"country": "Democratic Republic of the Congo", "subcountry": "Kasa\u00ef-Occidental"}, "Goma": {"country": "Democratic Republic of the Congo", "subcountry": "Nord Kivu"}, "Gbadolite": {"country": "Democratic Republic of the Congo", "subcountry": "\u00c9quateur"}, "Gandajika": {"country": "Democratic Republic of the Congo", "subcountry": "Kasa\u00ef-Oriental"}, "Demba": {"country": "Democratic Republic of the Congo", "subcountry": "Kasa\u00ef-Occidental"}, "Butembo": {"country": "Democratic Republic of the Congo", "subcountry": "Nord Kivu"}, "Buta": {"country": "Democratic Republic of the Congo", "subcountry": "Eastern Province"}, "Businga": {"country": "Democratic Republic of the Congo", "subcountry": "\u00c9quateur"}, "Bunia": {"country": "Democratic Republic of the Congo", "subcountry": "Eastern Province"}, "Bumba": {"country": "Democratic Republic of the Congo", "subcountry": "\u00c9quateur"}, "Bukavu": {"country": "Democratic Republic of the Congo", "subcountry": "South Kivu"}, "Bukama": {"country": "Democratic Republic of the Congo", "subcountry": "Katanga"}, "Bondo": {"country": "Democratic Republic of the Congo", "subcountry": "Eastern Province"}, "Boende": {"country": "Democratic Republic of the Congo", "subcountry": "\u00c9quateur"}, "Beni": {"country": "Democratic Republic of the Congo", "subcountry": "Nord Kivu"}, "Basoko": {"country": "Democratic Republic of the Congo", "subcountry": "Eastern Province"}, "Aketi": {"country": "Democratic Republic of the Congo", "subcountry": "Eastern Province"}, "Lubumbashi": {"country": "Democratic Republic of the Congo", "subcountry": "Katanga"}, "Likasi": {"country": "Democratic Republic of the Congo", "subcountry": "Katanga"}, "Kolwezi": {"country": "Democratic Republic of the Congo", "subcountry": "Katanga"}, "Kipushi": {"country": "Democratic Republic of the Congo", "subcountry": "Katanga"}, "Kambove": {"country": "Democratic Republic of the Congo", "subcountry": "Katanga"}, "Tshela": {"country": "Democratic Republic of the Congo", "subcountry": "Bas-Congo"}, "Nioki": {"country": "Democratic Republic of the Congo", "subcountry": "Bandundu"}, "Mushie": {"country": "Democratic Republic of the Congo", "subcountry": "Bandundu"}, "Mbanza-Ngungu": {"country": "Democratic Republic of the Congo", "subcountry": "Bas-Congo"}, "Mbandaka": {"country": "Democratic Republic of the Congo", "subcountry": "\u00c9quateur"}, "Matadi": {"country": "Democratic Republic of the Congo", "subcountry": "Bas-Congo"}, "Mangai": {"country": "Democratic Republic of the Congo", "subcountry": "Bandundu"}, "Libenge": {"country": "Democratic Republic of the Congo", "subcountry": "\u00c9quateur"}, "Kinshasa": {"country": "Democratic Republic of the Congo", "subcountry": "Kinshasa"}, "Kikwit": {"country": "Democratic Republic of the Congo", "subcountry": "Bandundu"}, "Kasongo-Lunda": {"country": "Democratic Republic of the Congo", "subcountry": "Bandundu"}, "Kasangulu": {"country": "Democratic Republic of the Congo", "subcountry": "Bas-Congo"}, "Inongo": {"country": "Democratic Republic of the Congo", "subcountry": "Bandundu"}, "Gemena": {"country": "Democratic Republic of the Congo", "subcountry": "\u00c9quateur"}, "Bulungu": {"country": "Democratic Republic of the Congo", "subcountry": "Bandundu"}, "Bolobo": {"country": "Democratic Republic of the Congo", "subcountry": "Bandundu"}, "Bandundu": {"country": "Democratic Republic of the Congo", "subcountry": "Bandundu"}, "Masina": {"country": "Democratic Republic of the Congo", "subcountry": "Kinshasa"}, "Mobaye": {"country": "Central African Republic", "subcountry": "Basse-Kotto"}, "Ippy": {"country": "Central African Republic", "subcountry": "Ouaka"}, "Bria": {"country": "Central African Republic", "subcountry": "Haute-Kotto"}, "Bangassou": {"country": "Central African Republic", "subcountry": "Mbomou"}, "Bambari": {"country": "Central African Republic", "subcountry": "Ouaka"}, "Sibut": {"country": "Central African Republic", "subcountry": "K\u00e9mo"}, "Paoua": {"country": "Central African Republic", "subcountry": "Ouham-Pend\u00e9"}, "Nola": {"country": "Italy", "subcountry": "Campania"}, "Mba\u00efki": {"country": "Central African Republic", "subcountry": "Lobaye"}, "Kaga Bandoro": {"country": "Central African Republic", "subcountry": "Nana-Gr\u00e9bizi"}, "Damara": {"country": "Central African Republic", "subcountry": "Ombella-Mpoko"}, "Carnot": {"country": "Central African Republic", "subcountry": "Mamb\u00e9r\u00e9-Kad\u00e9\u00ef"}, "Bozoum": {"country": "Central African Republic", "subcountry": "Ouham-Pend\u00e9"}, "Bouar": {"country": "Central African Republic", "subcountry": "Nana-Mamb\u00e9r\u00e9"}, "Bossangoa": {"country": "Central African Republic", "subcountry": "Ouham"}, "Boda": {"country": "Central African Republic", "subcountry": "Lobaye"}, "Bimbo": {"country": "Central African Republic", "subcountry": "Ombella-Mpoko"}, "Berb\u00e9rati": {"country": "Central African Republic", "subcountry": "Mamb\u00e9r\u00e9-Kad\u00e9\u00ef"}, "Batangafo": {"country": "Central African Republic", "subcountry": "Ouham"}, "Bangui": {"country": "Central African Republic", "subcountry": "Bangui"}, "Sibiti": {"country": "Republic of the Congo", "subcountry": "L\u00e9koumou"}, "Pointe-Noire": {"country": "Republic of the Congo", "subcountry": "Pointe-Noire"}, "Owando": {"country": "Republic of the Congo", "subcountry": "Cuvette"}, "Ou\u00e9sso": {"country": "Republic of the Congo", "subcountry": "Sangha"}, "Mossendjo": {"country": "Republic of the Congo", "subcountry": "Niari"}, "Madingou": {"country": "Republic of the Congo", "subcountry": "Bouenza"}, "Dolisie": {"country": "Republic of the Congo", "subcountry": "Niari"}, "Loandjili": {"country": "Republic of the Congo", "subcountry": "Pointe-Noire"}, "Kayes": {"country": "Mali", "subcountry": "Kayes"}, "Impfondo": {"country": "Republic of the Congo", "subcountry": "Likouala"}, "Gamboma": {"country": "Republic of the Congo", "subcountry": "Plateaux"}, "Brazzaville": {"country": "Republic of the Congo", "subcountry": "Brazzaville"}, "Z\u00fcrich": {"country": "Switzerland", "subcountry": "Zurich"}, "Zug": {"country": "Switzerland", "subcountry": "Zug"}, "Yverdon-Les-Bains": {"country": "Switzerland", "subcountry": "Vaud"}, "Winterthur": {"country": "Switzerland", "subcountry": "Zurich"}, "Wil": {"country": "Switzerland", "subcountry": "Saint Gallen"}, "Wettingen": {"country": "Switzerland", "subcountry": "Aargau"}, "Vevey": {"country": "Switzerland", "subcountry": "Vaud"}, "Vernier": {"country": "Switzerland", "subcountry": "Geneva"}, "Uster": {"country": "Switzerland", "subcountry": "Zurich"}, "Thun": {"country": "Switzerland", "subcountry": "Bern"}, "Steffisburg": {"country": "Switzerland", "subcountry": "Bern"}, "Sitten": {"country": "Switzerland", "subcountry": "Valais"}, "Sierre": {"country": "Switzerland", "subcountry": "Valais"}, "Z\u00fcrich (Kreis 11) / Seebach": {"country": "Switzerland", "subcountry": "Zurich"}, "Schaffhausen": {"country": "Switzerland", "subcountry": "Schaffhausen"}, "Sankt Gallen": {"country": "Switzerland", "subcountry": "Saint Gallen"}, "Renens": {"country": "Switzerland", "subcountry": "Vaud"}, "Rapperswil": {"country": "Switzerland", "subcountry": "Saint Gallen"}, "Pully": {"country": "Switzerland", "subcountry": "Vaud"}, "Onex": {"country": "Switzerland", "subcountry": "Geneva"}, "Olten": {"country": "Switzerland", "subcountry": "Solothurn"}, "Z\u00fcrich (Kreis 11) / Oerlikon": {"country": "Switzerland", "subcountry": "Zurich"}, "Nyon": {"country": "Switzerland", "subcountry": "Vaud"}, "Neuch\u00e2tel": {"country": "Switzerland", "subcountry": "Neuch\u00e2tel"}, "Muttenz": {"country": "Switzerland", "subcountry": "Basel-Landschaft"}, "Montreux": {"country": "Switzerland", "subcountry": "Vaud"}, "Monthey": {"country": "Switzerland", "subcountry": "Valais"}, "Meyrin": {"country": "Switzerland", "subcountry": "Geneva"}, "Luzern": {"country": "Switzerland", "subcountry": "Lucerne"}, "Lugano": {"country": "Switzerland", "subcountry": "Ticino"}, "Littau": {"country": "Switzerland", "subcountry": "Lucerne"}, "Le Ch\u00e2telard": {"country": "Switzerland", "subcountry": "Vaud"}, "Lausanne": {"country": "Switzerland", "subcountry": "Vaud"}, "La Chaux-De-Fonds": {"country": "Switzerland", "subcountry": "Neuch\u00e2tel"}, "Kriens": {"country": "Switzerland", "subcountry": "Lucerne"}, "Kreuzlingen": {"country": "Switzerland", "subcountry": "Thurgau"}, "K\u00f6niz": {"country": "Switzerland", "subcountry": "Bern"}, "Kloten": {"country": "Switzerland", "subcountry": "Zurich"}, "Jona": {"country": "Switzerland", "subcountry": "Saint Gallen"}, "Horgen": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 10) / H\u00f6ngg": {"country": "Switzerland", "subcountry": "Zurich"}, "Herisau": {"country": "Switzerland", "subcountry": "Appenzell Ausserrhoden"}, "Grenchen": {"country": "Switzerland", "subcountry": "Solothurn"}, "Gossau": {"country": "Switzerland", "subcountry": "Saint Gallen"}, "Gen\u00e8ve": {"country": "Switzerland", "subcountry": "Geneva"}, "Fribourg": {"country": "Switzerland", "subcountry": "Fribourg"}, "Frauenfeld": {"country": "Switzerland", "subcountry": "Thurgau"}, "Emmen": {"country": "Netherlands", "subcountry": "Drenthe"}, "D\u00fcbendorf": {"country": "Switzerland", "subcountry": "Zurich"}, "Dietikon": {"country": "Switzerland", "subcountry": "Zurich"}, "Chur": {"country": "Switzerland", "subcountry": "Grisons"}, "Carouge": {"country": "Switzerland", "subcountry": "Geneva"}, "Biel/Bienne": {"country": "Switzerland", "subcountry": "Bern"}, "Bern": {"country": "Switzerland", "subcountry": "Bern"}, "Bellinzona": {"country": "Switzerland", "subcountry": "Ticino"}, "Basel": {"country": "Switzerland", "subcountry": "Basel-City"}, "Baar": {"country": "Switzerland", "subcountry": "Zug"}, "Z\u00fcrich (Kreis 4)": {"country": "Switzerland", "subcountry": "Zurich"}, "Allschwil": {"country": "Switzerland", "subcountry": "Basel-Landschaft"}, "Adliswil": {"country": "Switzerland", "subcountry": "Zurich"}, "Aarau": {"country": "Switzerland", "subcountry": "Aargau"}, "Riehen": {"country": "Switzerland", "subcountry": "Basel-City"}, "Z\u00fcrich (Kreis 10) / Wipkingen": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 11) / Affoltern": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 2) / Wollishofen": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 3) / Sihlfeld": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 6) / Unterstrass": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 9) / Albisrieden": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 9) / Altstetten": {"country": "Switzerland", "subcountry": "Zurich"}, "Stadt Winterthur (Kreis 1)": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 12)": {"country": "Switzerland", "subcountry": "Zurich"}, "Seen (Kreis 3)": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 3)": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 11)": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 9)": {"country": "Switzerland", "subcountry": "Zurich"}, "Oberwinterthur (Kreis 2)": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 10)": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 2)": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 8)": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 7)": {"country": "Switzerland", "subcountry": "Zurich"}, "Z\u00fcrich (Kreis 6)": {"country": "Switzerland", "subcountry": "Zurich"}, "Lancy": {"country": "Switzerland", "subcountry": "Geneva"}, "Zu\u00e9noula": {"country": "Ivory Coast", "subcountry": "Marahou\u00e9"}, "Yamoussoukro": {"country": "Ivory Coast", "subcountry": "Lacs"}, "Vavoua": {"country": "Ivory Coast", "subcountry": "Haut-Sassandra"}, "Toumodi": {"country": "Ivory Coast", "subcountry": "Lacs"}, "Touba": {"country": "Senegal", "subcountry": "Diourbel"}, "Tengrela": {"country": "Ivory Coast", "subcountry": "Savanes"}, "Tiassal\u00e9": {"country": "Ivory Coast", "subcountry": "Lagunes"}, "Tanda": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Gharb\u012byah"}, "Tabou": {"country": "Ivory Coast", "subcountry": "Bas-Sassandra"}, "Sinfra": {"country": "Ivory Coast", "subcountry": "Zanzan"}, "Sassandra": {"country": "Ivory Coast", "subcountry": "Bas-Sassandra"}, "San-P\u00e9dro": {"country": "Ivory Coast", "subcountry": "Bas-Sassandra"}, "Sakassou": {"country": "Ivory Coast", "subcountry": "Vall\u00e9e du Bandama"}, "Oum\u00e9": {"country": "Ivory Coast", "subcountry": "Fromager"}, "Odienn\u00e9": {"country": "Ivory Coast", "subcountry": "Dengu\u00e9l\u00e9"}, "Mankono": {"country": "Ivory Coast", "subcountry": "Worodougou"}, "Man": {"country": "Ivory Coast", "subcountry": "Dix-Huit Montagnes"}, "Lakota": {"country": "Ivory Coast", "subcountry": "Sud-Bandama"}, "Korhogo": {"country": "Ivory Coast", "subcountry": "Savanes"}, "Katiola": {"country": "Ivory Coast", "subcountry": "Vall\u00e9e du Bandama"}, "Issia": {"country": "Ivory Coast", "subcountry": "Haut-Sassandra"}, "Guiglo": {"country": "Ivory Coast", "subcountry": "Dix-Huit Montagnes"}, "Grand-Bassam": {"country": "Ivory Coast", "subcountry": "Sud-Como\u00e9"}, "Affery": {"country": "Ivory Coast", "subcountry": "Lagunes"}, "Gagnoa": {"country": "Ivory Coast", "subcountry": "Fromager"}, "Ferkess\u00e9dougou": {"country": "Ivory Coast", "subcountry": "Savanes"}, "Duekou\u00e9": {"country": "Ivory Coast", "subcountry": "Dix-Huit Montagnes"}, "Divo": {"country": "Ivory Coast", "subcountry": "Sud-Bandama"}, "Dimbokro": {"country": "Ivory Coast", "subcountry": "Lacs"}, "Daoukro": {"country": "Ivory Coast", "subcountry": "N\u02bczi-Como\u00e9"}, "Danan\u00e9": {"country": "Ivory Coast", "subcountry": "Dix-Huit Montagnes"}, "Daloa": {"country": "Ivory Coast", "subcountry": "Haut-Sassandra"}, "Dabou": {"country": "Ivory Coast", "subcountry": "Lagunes"}, "Boundiali": {"country": "Ivory Coast", "subcountry": "Savanes"}, "Bouna": {"country": "Ivory Coast", "subcountry": "Zanzan"}, "Bouak\u00e9": {"country": "Ivory Coast", "subcountry": "Vall\u00e9e du Bandama"}, "Bouafl\u00e9": {"country": "Ivory Coast", "subcountry": "Marahou\u00e9"}, "Bonoua": {"country": "Ivory Coast", "subcountry": "Sud-Como\u00e9"}, "Bongouanou": {"country": "Ivory Coast", "subcountry": "Lacs"}, "Bondoukou": {"country": "Ivory Coast", "subcountry": "Zanzan"}, "Bingerville": {"country": "Ivory Coast", "subcountry": "Lagunes"}, "Biankouma": {"country": "Ivory Coast", "subcountry": "Dix-Huit Montagnes"}, "B\u00e9oumi": {"country": "Ivory Coast", "subcountry": "Vall\u00e9e du Bandama"}, "Bangolo": {"country": "Ivory Coast", "subcountry": "Dix-Huit Montagnes"}, "Arrah": {"country": "India", "subcountry": "Bihar"}, "Anyama": {"country": "Ivory Coast", "subcountry": "Lagunes"}, "Akoup\u00e9": {"country": "Ivory Coast", "subcountry": "Lagunes"}, "Agnibil\u00e9krou": {"country": "Ivory Coast", "subcountry": "Moyen-Como\u00e9"}, "Agboville": {"country": "Ivory Coast", "subcountry": "Agn\u00e9by"}, "Adzop\u00e9": {"country": "Ivory Coast", "subcountry": "Lagunes"}, "Adiak\u00e9": {"country": "Ivory Coast", "subcountry": "Sud-Como\u00e9"}, "Aboisso": {"country": "Ivory Coast", "subcountry": "Sud-Como\u00e9"}, "Abobo": {"country": "Ivory Coast", "subcountry": "Lagunes"}, "Abidjan": {"country": "Ivory Coast", "subcountry": "Lagunes"}, "Abengourou": {"country": "Ivory Coast", "subcountry": "Moyen-Como\u00e9"}, "S\u00e9gu\u00e9la": {"country": "Ivory Coast", "subcountry": "Worodougou"}, "Soubr\u00e9": {"country": "Ivory Coast", "subcountry": "Bas-Sassandra"}, "Avarua": {"country": "Cook Islands", "subcountry": "N/A"}, "Vi\u00f1a Del Mar": {"country": "Chile", "subcountry": "Valpara\u00edso"}, "Villarrica": {"country": "Paraguay", "subcountry": "Guair\u00e1"}, "Villa Alemana": {"country": "Chile", "subcountry": "Valpara\u00edso"}, "Vallenar": {"country": "Chile", "subcountry": "Atacama"}, "Valdivia": {"country": "Chile", "subcountry": "Los R\u00edos"}, "Tom\u00e9": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Tocopilla": {"country": "Chile", "subcountry": "Antofagasta"}, "Temuco": {"country": "Chile", "subcountry": "Araucan\u00eda"}, "Talcahuano": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Talca": {"country": "Chile", "subcountry": "Maule"}, "Talagante": {"country": "Chile", "subcountry": "Santiago Metropolitan"}, "San Vicente De Tagua Tagua": {"country": "Chile", "subcountry": "O'Higgins"}, "San Felipe": {"country": "Venezuela", "subcountry": "Yaracuy"}, "San Carlos": {"country": "Venezuela", "subcountry": "Cojedes"}, "San Bernardo": {"country": "Chile", "subcountry": "Santiago Metropolitan"}, "San Antonio": {"country": "Paraguay", "subcountry": "Central"}, "R\u00edo Bueno": {"country": "Chile", "subcountry": "Los R\u00edos"}, "Rengo": {"country": "Chile", "subcountry": "O'Higgins"}, "Rancagua": {"country": "Chile", "subcountry": "O'Higgins"}, "Quilpu\u00e9": {"country": "Chile", "subcountry": "Valpara\u00edso"}, "Quillota": {"country": "Chile", "subcountry": "Valpara\u00edso"}, "Punta Arenas": {"country": "Chile", "subcountry": "Magallanes"}, "Puerto Varas": {"country": "Chile", "subcountry": "Los Lagos"}, "Puerto Quell\u00f3n": {"country": "Chile", "subcountry": "Los Lagos"}, "Puerto Natales": {"country": "Chile", "subcountry": "Magallanes"}, "Puerto Montt": {"country": "Chile", "subcountry": "Los Lagos"}, "Puerto Ais\u00e9n": {"country": "Chile", "subcountry": "Ais\u00e9n"}, "Puente Alto": {"country": "Chile", "subcountry": "Santiago Metropolitan"}, "Puc\u00f3n": {"country": "Chile", "subcountry": "Araucan\u00eda"}, "Penco": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Pe\u00f1aflor": {"country": "Chile", "subcountry": "Santiago Metropolitan"}, "Parral": {"country": "Chile", "subcountry": "Maule"}, "Panguipulli": {"country": "Chile", "subcountry": "Araucan\u00eda"}, "Paine": {"country": "Chile", "subcountry": "Santiago Metropolitan"}, "Ovalle": {"country": "Chile", "subcountry": "Coquimbo"}, "Osorno": {"country": "Chile", "subcountry": "Los Lagos"}, "Nueva Imperial": {"country": "Chile", "subcountry": "Araucan\u00eda"}, "Nacimiento": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Mulch\u00e9n": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Molina": {"country": "Chile", "subcountry": "Maule"}, "Melipilla": {"country": "Chile", "subcountry": "Santiago Metropolitan"}, "Machal\u00ed": {"country": "Chile", "subcountry": "O'Higgins"}, "Lota": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Los \u00c1ngeles": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Los Andes": {"country": "Chile", "subcountry": "Valpara\u00edso"}, "Loncoche": {"country": "Chile", "subcountry": "Araucan\u00eda"}, "Llaillay": {"country": "Chile", "subcountry": "Valpara\u00edso"}, "Linares": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Limache": {"country": "Chile", "subcountry": "Valpara\u00edso"}, "Lebu": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Lautaro": {"country": "Chile", "subcountry": "Araucan\u00eda"}, "La Uni\u00f3n": {"country": "El Salvador", "subcountry": "La Uni\u00f3n"}, "La Serena": {"country": "Chile", "subcountry": "Coquimbo"}, "Lampa": {"country": "Chile", "subcountry": "Santiago Metropolitan"}, "La Ligua": {"country": "Chile", "subcountry": "Valpara\u00edso"}, "La Laja": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Iquique": {"country": "Chile", "subcountry": "Tarapac\u00e1"}, "Illapel": {"country": "Chile", "subcountry": "Coquimbo"}, "Hacienda La Calera": {"country": "Chile", "subcountry": "Valpara\u00edso"}, "Graneros": {"country": "Chile", "subcountry": "O'Higgins"}, "Frutillar": {"country": "Chile", "subcountry": "Los Lagos"}, "El Monte": {"country": "United States", "subcountry": "California"}, "Diego De Almagro": {"country": "Chile", "subcountry": "Atacama"}, "Curic\u00f3": {"country": "Chile", "subcountry": "Maule"}, "Curanilahue": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Coronel": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Coquimbo": {"country": "Chile", "subcountry": "Coquimbo"}, "Copiap\u00f3": {"country": "Chile", "subcountry": "Atacama"}, "Constituci\u00f3n": {"country": "Chile", "subcountry": "Maule"}, "Concepci\u00f3n": {"country": "Paraguay", "subcountry": "Concepci\u00f3n"}, "Collipulli": {"country": "Chile", "subcountry": "Araucan\u00eda"}, "Coihaique": {"country": "Chile", "subcountry": "Ais\u00e9n"}, "Chimbarongo": {"country": "Chile", "subcountry": "O'Higgins"}, "Chill\u00e1n": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Chiguayante": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Chicureo Abajo": {"country": "Chile", "subcountry": "Santiago Metropolitan"}, "Cauquenes": {"country": "Chile", "subcountry": "Maule"}, "Cartagena": {"country": "Spain", "subcountry": "Murcia"}, "Ca\u00f1ete": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Calama": {"country": "Chile", "subcountry": "Antofagasta"}, "Cabrero": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Buin": {"country": "Chile", "subcountry": "Santiago Metropolitan"}, "Arica": {"country": "Chile", "subcountry": "Arica y Parinacota"}, "Arauco": {"country": "Chile", "subcountry": "Biob\u00edo"}, "Antofagasta": {"country": "Chile", "subcountry": "Antofagasta"}, "Angol": {"country": "Chile", "subcountry": "Araucan\u00eda"}, "Ancud": {"country": "Chile", "subcountry": "Los Lagos"}, "Las Animas": {"country": "Chile", "subcountry": "Los Lagos"}, "La Pintana": {"country": "Chile", "subcountry": "Santiago Metropolitan"}, "Lo Prado": {"country": "Chile", "subcountry": "Santiago Metropolitan"}, "Yaound\u00e9": {"country": "Cameroon", "subcountry": "Centre"}, "Yagoua": {"country": "Cameroon", "subcountry": "Far North"}, "Wum": {"country": "Cameroon", "subcountry": "North-West Province"}, "Tonga": {"country": "Cameroon", "subcountry": "West"}, "Tiko": {"country": "Cameroon", "subcountry": "South-West Province"}, "Tibati": {"country": "Cameroon", "subcountry": "Adamaoua"}, "Tchollir\u00e9": {"country": "Cameroon", "subcountry": "North Province"}, "Sangm\u00e9lima": {"country": "Cameroon", "subcountry": "South Province"}, "Penja": {"country": "Cameroon", "subcountry": "Littoral"}, "Obala": {"country": "Cameroon", "subcountry": "Centre"}, "Nkoteng": {"country": "Cameroon", "subcountry": "Centre"}, "Nkongsamba": {"country": "Cameroon", "subcountry": "Littoral"}, "Ngaound\u00e9r\u00e9": {"country": "Cameroon", "subcountry": "Adamaoua"}, "Nanga Eboko": {"country": "Cameroon", "subcountry": "Centre"}, "Muyuka": {"country": "Cameroon", "subcountry": "South-West Province"}, "Mutengene": {"country": "Cameroon", "subcountry": "South-West Province"}, "Mora": {"country": "Cameroon", "subcountry": "Far North"}, "Mokolo": {"country": "Cameroon", "subcountry": "Far North"}, "Melong": {"country": "Cameroon", "subcountry": "Littoral"}, "Me\u00efganga": {"country": "Cameroon", "subcountry": "Adamaoua"}, "Mbouda": {"country": "Cameroon", "subcountry": "West"}, "Mbanga": {"country": "Cameroon", "subcountry": "Littoral"}, "Mbandjok": {"country": "Cameroon", "subcountry": "Centre"}, "Mbalmayo": {"country": "Cameroon", "subcountry": "Centre"}, "Maroua": {"country": "Cameroon", "subcountry": "Far North"}, "Manjo": {"country": "Cameroon", "subcountry": "Littoral"}, "Mamfe": {"country": "Cameroon", "subcountry": "South-West Province"}, "Loum": {"country": "Cameroon", "subcountry": "Littoral"}, "Lolodorf": {"country": "Cameroon", "subcountry": "South Province"}, "Limbe": {"country": "Cameroon", "subcountry": "South-West Province"}, "Lagdo": {"country": "Cameroon", "subcountry": "North Province"}, "Kumbo": {"country": "Cameroon", "subcountry": "North-West Province"}, "Kumba": {"country": "Cameroon", "subcountry": "South-West Province"}, "Kribi": {"country": "Cameroon", "subcountry": "South Province"}, "Kouss\u00e9ri": {"country": "Cameroon", "subcountry": "Far North"}, "Ka\u00e9l\u00e9": {"country": "Cameroon", "subcountry": "Far North"}, "Guider": {"country": "Cameroon", "subcountry": "North Province"}, "Garoua Boula\u00ef": {"country": "Cameroon", "subcountry": "East"}, "Garoua": {"country": "Cameroon", "subcountry": "North Province"}, "Fundong": {"country": "Cameroon", "subcountry": "North-West Province"}, "Foumbot": {"country": "Cameroon", "subcountry": "West"}, "Foumban": {"country": "Cameroon", "subcountry": "West"}, "Fontem": {"country": "Cameroon", "subcountry": "South-West Province"}, "Es\u00e9ka": {"country": "Cameroon", "subcountry": "Centre"}, "Ed\u00e9a": {"country": "Cameroon", "subcountry": "Littoral"}, "\u00c9bolowa": {"country": "Cameroon", "subcountry": "South Province"}, "Dschang": {"country": "Cameroon", "subcountry": "West"}, "Douala": {"country": "Cameroon", "subcountry": "Littoral"}, "Dizangu\u00e9": {"country": "Cameroon", "subcountry": "Littoral"}, "Buea": {"country": "Cameroon", "subcountry": "South-West Province"}, "Bogo": {"country": "Philippines", "subcountry": "Central Visayas"}, "Bertoua": {"country": "Cameroon", "subcountry": "East"}, "B\u00e9labo": {"country": "Cameroon", "subcountry": "East"}, "Batouri": {"country": "Cameroon", "subcountry": "East"}, "Banyo": {"country": "Cameroon", "subcountry": "Adamaoua"}, "Bangangt\u00e9": {"country": "Cameroon", "subcountry": "West"}, "Bamusso": {"country": "Cameroon", "subcountry": "South-West Province"}, "Bamenda": {"country": "Cameroon", "subcountry": "North-West Province"}, "Bali": {"country": "Cameroon", "subcountry": "North-West Province"}, "Bafoussam": {"country": "Cameroon", "subcountry": "West"}, "Bafia": {"country": "Cameroon", "subcountry": "Centre"}, "Bafang": {"country": "Cameroon", "subcountry": "West"}, "Akonolinga": {"country": "Cameroon", "subcountry": "Centre"}, "Idenao": {"country": "Cameroon", "subcountry": "South-West Province"}, "Rikaze": {"country": "China", "subcountry": "Tibet Autonomous Region"}, "Jiuquan": {"country": "China", "subcountry": "Gansu Sheng"}, "Shache": {"country": "China", "subcountry": "Xinjiang Uygur Zizhiqu"}, "Qamdo": {"country": "China", "subcountry": "Tibet Autonomous Region"}, "Nagqu": {"country": "China", "subcountry": "Tibet Autonomous Region"}, "Lhasa": {"country": "China", "subcountry": "Tibet Autonomous Region"}, "Laojunmiao": {"country": "China", "subcountry": "Gansu Sheng"}, "Kashgar": {"country": "China", "subcountry": "Xinjiang Uygur Zizhiqu"}, "Jiayuguan": {"country": "China", "subcountry": "Gansu Sheng"}, "Hotan": {"country": "China", "subcountry": "Xinjiang Uygur Zizhiqu"}, "D\u00eaq\u00ean": {"country": "China", "subcountry": "Tibet Autonomous Region"}, "\u00dcr\u00fcmqi": {"country": "China", "subcountry": "Xinjiang Uygur Zizhiqu"}, "Laochenglu": {"country": "China", "subcountry": "Xinjiang Uygur Zizhiqu"}, "Shihezi": {"country": "China", "subcountry": "Xinjiang Uygur Zizhiqu"}, "Kuche": {"country": "China", "subcountry": "Xinjiang Uygur Zizhiqu"}, "Sayibage": {"country": "China", "subcountry": "Xinjiang Uygur Zizhiqu"}, "Hoxtolgay": {"country": "China", "subcountry": "Xinjiang Uygur Zizhiqu"}, "Hami": {"country": "China", "subcountry": "Xinjiang Uygur Zizhiqu"}, "Changji": {"country": "China", "subcountry": "Xinjiang Uygur Zizhiqu"}, "Baijiantan": {"country": "China", "subcountry": "Xinjiang Uygur Zizhiqu"}, "Aral": {"country": "Kazakhstan", "subcountry": "Qyzylorda"}, "Altay": {"country": "China", "subcountry": "Xinjiang Uygur Zizhiqu"}, "Yingbazha": {"country": "China", "subcountry": "Xinjiang Uygur Zizhiqu"}, "Zunyi": {"country": "China", "subcountry": "Guizhou Sheng"}, "Zoucheng": {"country": "China", "subcountry": "Shandong Sheng"}, "Yanjiang": {"country": "China", "subcountry": "Sichuan"}, "Zigong": {"country": "China", "subcountry": "Sichuan"}, "Zhuzhou": {"country": "China", "subcountry": "Hunan"}, "Zhumadian": {"country": "China", "subcountry": "Henan Sheng"}, "Zhujiajiao": {"country": "China", "subcountry": "Shanghai Shi"}, "Shangqiu": {"country": "China", "subcountry": "Henan Sheng"}, "Zhuji": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Mizhou": {"country": "China", "subcountry": "Shandong Sheng"}, "Zhuanghe": {"country": "China", "subcountry": "Liaoning"}, "Zhouzhuang": {"country": "China", "subcountry": "Jiangsu"}, "Zhoukou": {"country": "China", "subcountry": "Henan Sheng"}, "Zhoucun": {"country": "China", "subcountry": "Shandong Sheng"}, "Yuxi": {"country": "China", "subcountry": "Yunnan"}, "Zhongxing": {"country": "China", "subcountry": "Jiangsu"}, "Zhongshu": {"country": "China", "subcountry": "Yunnan"}, "Zhicheng": {"country": "China", "subcountry": "Hubei"}, "Zhenzhou": {"country": "China", "subcountry": "Jiangsu"}, "Zhenjiang": {"country": "China", "subcountry": "Jiangsu"}, "Zhaobaoshan": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Zhengzhou": {"country": "China", "subcountry": "Henan Sheng"}, "Xinghua": {"country": "China", "subcountry": "Jiangsu"}, "Zhaotong": {"country": "China", "subcountry": "Yunnan"}, "Zhaoqing": {"country": "China", "subcountry": "Guangdong"}, "Zhaogezhuang": {"country": "China", "subcountry": "Hebei"}, "Luofeng": {"country": "China", "subcountry": "Shandong Sheng"}, "Zhanjiang": {"country": "China", "subcountry": "Guangdong"}, "Zhangzhou": {"country": "China", "subcountry": "Fujian"}, "Zhangye": {"country": "China", "subcountry": "Gansu Sheng"}, "Zibo": {"country": "China", "subcountry": "Shandong Sheng"}, "Anyang": {"country": "China", "subcountry": "Henan Sheng"}, "Zaozhuang": {"country": "China", "subcountry": "Shandong Sheng"}, "Zaoyang": {"country": "China", "subcountry": "Hubei"}, "Yuyao": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Yingchuan": {"country": "China", "subcountry": "Henan Sheng"}, "Yuxia": {"country": "China", "subcountry": "Shaanxi"}, "Kunshan": {"country": "China", "subcountry": "Jiangsu"}, "Yunyang": {"country": "China", "subcountry": "Henan Sheng"}, "Yunmeng Chengguanzhen": {"country": "China", "subcountry": "Hubei"}, "Jinghong": {"country": "China", "subcountry": "Yunnan"}, "Pizhou": {"country": "China", "subcountry": "Jiangsu"}, "Yunfu": {"country": "China", "subcountry": "Guangdong"}, "Yuncheng": {"country": "China", "subcountry": "Shanxi Sheng"}, "Yulin": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Yudong": {"country": "China", "subcountry": "Chongqing Shi"}, "Yuci": {"country": "China", "subcountry": "Shanxi Sheng"}, "Yucheng": {"country": "China", "subcountry": "Shandong Sheng"}, "Yuanping": {"country": "China", "subcountry": "Shanxi Sheng"}, "Qianjiang": {"country": "China", "subcountry": "Hubei"}, "Heyuan": {"country": "China", "subcountry": "Guangdong"}, "Yongfeng": {"country": "China", "subcountry": "Hunan"}, "Yongchuan": {"country": "China", "subcountry": "Chongqing Shi"}, "Yishui": {"country": "China", "subcountry": "Shandong Sheng"}, "Zhongxiang": {"country": "China", "subcountry": "Hubei"}, "Yingshang Chengguanzhen": {"country": "China", "subcountry": "Anhui Sheng"}, "Chengzhong": {"country": "China", "subcountry": "Hubei"}, "Yinchuan": {"country": "China", "subcountry": "Ningxia Huizu Zizhiqu"}, "Yima": {"country": "China", "subcountry": "Henan Sheng"}, "Yigou": {"country": "China", "subcountry": "Henan Sheng"}, "Qingzhou": {"country": "China", "subcountry": "Shandong Sheng"}, "Yichun": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Yicheng": {"country": "China", "subcountry": "Jiangsu"}, "Yichang": {"country": "China", "subcountry": "Hubei"}, "Yibin": {"country": "China", "subcountry": "Sichuan"}, "Yatou": {"country": "China", "subcountry": "Shandong Sheng"}, "Yashan": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Yanzhou": {"country": "China", "subcountry": "Shandong Sheng"}, "Yantai": {"country": "China", "subcountry": "Shandong Sheng"}, "Yanliang": {"country": "China", "subcountry": "Shaanxi"}, "Yangzhou": {"country": "China", "subcountry": "Jiangsu"}, "Yangshuo": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Zhangjiagang": {"country": "China", "subcountry": "Jiangsu"}, "Yangquan": {"country": "China", "subcountry": "Shanxi Sheng"}, "Yangliuqing": {"country": "China", "subcountry": "Tianjin Shi"}, "Yanggu": {"country": "South Korea", "subcountry": "Gangwon-do"}, "Yangcun": {"country": "China", "subcountry": "Tianjin Shi"}, "Yancheng": {"country": "China", "subcountry": "Jiangsu"}, "Tongshan": {"country": "China", "subcountry": "Jiangsu"}, "Xucheng": {"country": "China", "subcountry": "Guangdong"}, "Shangrao": {"country": "China", "subcountry": "Jiangxi Sheng"}, "Xunchang": {"country": "China", "subcountry": "Sichuan"}, "Jiangguanchi": {"country": "China", "subcountry": "Henan Sheng"}, "Xuanzhou": {"country": "China", "subcountry": "Anhui Sheng"}, "Xixiang": {"country": "China", "subcountry": "Henan Sheng"}, "Xiuying": {"country": "China", "subcountry": "Hainan"}, "Xiulin": {"country": "China", "subcountry": "Hubei"}, "Xiongzhou": {"country": "China", "subcountry": "Guangdong"}, "Guixi": {"country": "China", "subcountry": "Jiangxi Sheng"}, "Xinzhou": {"country": "China", "subcountry": "Hubei"}, "Xinzhi": {"country": "China", "subcountry": "Shanxi Sheng"}, "Xinyu": {"country": "China", "subcountry": "Jiangxi Sheng"}, "Hancheng": {"country": "China", "subcountry": "Shaanxi"}, "Xinyang": {"country": "China", "subcountry": "Henan Sheng"}, "Nangandao": {"country": "China", "subcountry": "Henan Sheng"}, "Xintai": {"country": "China", "subcountry": "Shandong Sheng"}, "Xinshi": {"country": "China", "subcountry": "Hubei"}, "Xinpu": {"country": "China", "subcountry": "Jiangsu"}, "Xinji": {"country": "China", "subcountry": "Hebei"}, "Xining": {"country": "China", "subcountry": "Qinghai Sheng"}, "Shangmei": {"country": "China", "subcountry": "Hunan"}, "Xingtai": {"country": "China", "subcountry": "Hebei"}, "Ankang": {"country": "China", "subcountry": "Shaanxi"}, "Xindian": {"country": "China", "subcountry": "Shandong Sheng"}, "Xindi": {"country": "China", "subcountry": "Hubei"}, "Feicheng": {"country": "China", "subcountry": "Shandong Sheng"}, "Sanshui": {"country": "China", "subcountry": "Guangdong"}, "Ximei": {"country": "China", "subcountry": "Fujian"}, "Wacheng": {"country": "China", "subcountry": "Henan Sheng"}, "Xihe": {"country": "China", "subcountry": "Hubei"}, "Xichang": {"country": "China", "subcountry": "Sichuan"}, "Xiazhuang": {"country": "China", "subcountry": "Shandong Sheng"}, "Xiazhen": {"country": "China", "subcountry": "Shandong Sheng"}, "Xiashi": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Zijinglu": {"country": "China", "subcountry": "Henan Sheng"}, "Xiaoweizhai": {"country": "China", "subcountry": "Guizhou Sheng"}, "Xiaoshan": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Xiaolingwei": {"country": "China", "subcountry": "Jiangsu"}, "Xiaogan": {"country": "China", "subcountry": "Hubei"}, "Xianyang": {"country": "China", "subcountry": "Shaanxi"}, "Xiantao": {"country": "China", "subcountry": "Hubei"}, "Xianshuigu": {"country": "China", "subcountry": "Tianjin Shi"}, "Xiann\u00fc": {"country": "China", "subcountry": "Jiangsu"}, "Xianning": {"country": "China", "subcountry": "Hubei"}, "Xianju": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Zhuhai": {"country": "China", "subcountry": "Guangdong"}, "Wenxing": {"country": "China", "subcountry": "Hunan"}, "Xiangxiang": {"country": "China", "subcountry": "Hunan"}, "Xiangtan": {"country": "China", "subcountry": "Hunan"}, "Xiangyang": {"country": "China", "subcountry": "Hubei"}, "Xiangcheng Chengguanzhen": {"country": "China", "subcountry": "Henan Sheng"}, "Xi\u2019An": {"country": "China", "subcountry": "Shaanxi"}, "Xiamen": {"country": "China", "subcountry": "Fujian"}, "Wuzhou": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Wuyang": {"country": "China", "subcountry": "Anhui Sheng"}, "Wuxue": {"country": "China", "subcountry": "Hubei"}, "Wuxi": {"country": "China", "subcountry": "Hunan"}, "Dongyang": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Changde": {"country": "China", "subcountry": "Hunan"}, "Wuhu": {"country": "China", "subcountry": "Anhui Sheng"}, "Wuhan": {"country": "China", "subcountry": "Hubei"}, "Wuhai": {"country": "China", "subcountry": "Inner Mongolia"}, "Wuda": {"country": "China", "subcountry": "Inner Mongolia"}, "Wucheng": {"country": "China", "subcountry": "Anhui Sheng"}, "Wenzhou": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Wenshang": {"country": "China", "subcountry": "Shandong Sheng"}, "Wenling": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Tianfu": {"country": "China", "subcountry": "Shandong Sheng"}, "Weinan": {"country": "China", "subcountry": "Shaanxi"}, "Weihai": {"country": "China", "subcountry": "Shandong Sheng"}, "Weifang": {"country": "China", "subcountry": "Shandong Sheng"}, "Wanxian": {"country": "China", "subcountry": "Chongqing Shi"}, "Wanning": {"country": "China", "subcountry": "Hainan"}, "Yinzhu": {"country": "China", "subcountry": "Shandong Sheng"}, "Wafangdian": {"country": "China", "subcountry": "Liaoning"}, "Huangshan": {"country": "China", "subcountry": "Anhui Sheng"}, "Loushanguan": {"country": "China", "subcountry": "Guizhou Sheng"}, "Tongzhou": {"country": "China", "subcountry": "Beijing"}, "Fuding": {"country": "China", "subcountry": "Fujian"}, "Tongren": {"country": "China", "subcountry": "Guizhou Sheng"}, "Wusong": {"country": "China", "subcountry": "Anhui Sheng"}, "Tongchuan": {"country": "China", "subcountry": "Shaanxi"}, "Tianshui": {"country": "China", "subcountry": "Gansu Sheng"}, "Tianpeng": {"country": "China", "subcountry": "Sichuan"}, "Tianjin": {"country": "China", "subcountry": "Tianjin Shi"}, "Tengzhou": {"country": "China", "subcountry": "Shandong Sheng"}, "Taozhuang": {"country": "China", "subcountry": "Shandong Sheng"}, "Tantou": {"country": "China", "subcountry": "Fujian"}, "Tangzhai": {"country": "China", "subcountry": "Anhui Sheng"}, "Tangshan": {"country": "China", "subcountry": "Hebei"}, "Tangping": {"country": "China", "subcountry": "Guangdong"}, "Tangjiazhuang": {"country": "China", "subcountry": "Hebei"}, "Binhe": {"country": "China", "subcountry": "Henan Sheng"}, "Tanggu": {"country": "China", "subcountry": "Tianjin Shi"}, "Taizhou": {"country": "China", "subcountry": "Jiangsu"}, "Taiyuan": {"country": "China", "subcountry": "Shanxi Sheng"}, "Taixing": {"country": "China", "subcountry": "Jiangsu"}, "Taishan": {"country": "China", "subcountry": "Guangdong"}, "Tai\u2019An": {"country": "China", "subcountry": "Shandong Sheng"}, "Suzhou": {"country": "China", "subcountry": "Jiangsu"}, "Suozhen": {"country": "China", "subcountry": "Shandong Sheng"}, "Suizhou": {"country": "China", "subcountry": "Hubei"}, "Suixi": {"country": "China", "subcountry": "Anhui Sheng"}, "Suicheng": {"country": "China", "subcountry": "Jiangsu"}, "Suining": {"country": "China", "subcountry": "Sichuan"}, "Songjiang": {"country": "China", "subcountry": "Shanghai Shi"}, "Sishui": {"country": "China", "subcountry": "Shandong Sheng"}, "Laixi": {"country": "China", "subcountry": "Shandong Sheng"}, "Shouguang": {"country": "China", "subcountry": "Shandong Sheng"}, "Shizuishan": {"country": "China", "subcountry": "Ningxia Huizu Zizhiqu"}, "Shizilu": {"country": "China", "subcountry": "Shandong Sheng"}, "Shiyan": {"country": "China", "subcountry": "Hubei"}, "Shiwan": {"country": "China", "subcountry": "Guangdong"}, "Shitanjing": {"country": "China", "subcountry": "Ningxia Huizu Zizhiqu"}, "Shiqiao": {"country": "China", "subcountry": "Guangdong"}, "Shiqi": {"country": "China", "subcountry": "Guangdong"}, "Shima": {"country": "China", "subcountry": "Fujian"}, "Shilong": {"country": "China", "subcountry": "Guangdong"}, "Shijiazhuang": {"country": "China", "subcountry": "Hebei"}, "Shenzhen": {"country": "China", "subcountry": "Guangdong"}, "Yanta": {"country": "China", "subcountry": "Shandong Sheng"}, "Shenjiamen": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Shashi": {"country": "China", "subcountry": "Hubei"}, "Shaping": {"country": "China", "subcountry": "Guangdong"}, "Shaoxing": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Shaowu": {"country": "China", "subcountry": "Fujian"}, "Shaoguan": {"country": "China", "subcountry": "Guangdong"}, "Shancheng": {"country": "China", "subcountry": "Shandong Sheng"}, "Shanwei": {"country": "China", "subcountry": "Guangdong"}, "Shantou": {"country": "China", "subcountry": "Guangdong"}, "Shanting": {"country": "China", "subcountry": "Shandong Sheng"}, "Shanghai": {"country": "China", "subcountry": "Shanghai Shi"}, "Shahecheng": {"country": "China", "subcountry": "Hebei"}, "Sanya": {"country": "China", "subcountry": "Hainan"}, "Sanming": {"country": "China", "subcountry": "Fujian"}, "Runing": {"country": "China", "subcountry": "Henan Sheng"}, "Fuqing": {"country": "China", "subcountry": "Fujian"}, "Jieyang": {"country": "China", "subcountry": "Guangdong"}, "Rizhao": {"country": "China", "subcountry": "Shandong Sheng"}, "Renqiu": {"country": "China", "subcountry": "Hebei"}, "Quzhou": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Qujing": {"country": "China", "subcountry": "Yunnan"}, "Qufu": {"country": "China", "subcountry": "Shandong Sheng"}, "Quanzhou": {"country": "China", "subcountry": "Fujian"}, "Zhuangyuan": {"country": "China", "subcountry": "Shandong Sheng"}, "Qiongshan": {"country": "China", "subcountry": "Hainan"}, "Qionghu": {"country": "China", "subcountry": "Hunan"}, "Qinzhou": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Qinnan": {"country": "China", "subcountry": "Jiangsu"}, "Qinhuangdao": {"country": "China", "subcountry": "Hebei"}, "Jinjiang": {"country": "China", "subcountry": "Hainan"}, "Qingquan": {"country": "China", "subcountry": "Hubei"}, "Huai'An": {"country": "China", "subcountry": "Jiangsu"}, "Qingdao": {"country": "China", "subcountry": "Shandong Sheng"}, "Qingyuan": {"country": "China", "subcountry": "Guangdong"}, "Hongqiao": {"country": "China", "subcountry": "Hunan"}, "Puyang Chengguanzhen": {"country": "China", "subcountry": "Henan Sheng"}, "Puyang": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Putian": {"country": "China", "subcountry": "Fujian"}, "Puqi": {"country": "China", "subcountry": "Hubei"}, "Pumiao": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Pulandian": {"country": "China", "subcountry": "Liaoning"}, "Poyang": {"country": "China", "subcountry": "Jiangxi Sheng"}, "Pingyin": {"country": "China", "subcountry": "Shandong Sheng"}, "Pingyi": {"country": "China", "subcountry": "Shandong Sheng"}, "Gutao": {"country": "China", "subcountry": "Shanxi Sheng"}, "Pingxiang": {"country": "China", "subcountry": "Jiangxi Sheng"}, "Pingshan": {"country": "China", "subcountry": "Guangdong"}, "Pingnan": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Pingliang": {"country": "China", "subcountry": "Gansu Sheng"}, "Pingdu": {"country": "China", "subcountry": "Shandong Sheng"}, "Pingdingshan": {"country": "China", "subcountry": "Henan Sheng"}, "Pengcheng": {"country": "China", "subcountry": "Hebei"}, "Dadukou": {"country": "China", "subcountry": "Sichuan"}, "Ningyang": {"country": "China", "subcountry": "Shandong Sheng"}, "Yutan": {"country": "China", "subcountry": "Hunan"}, "Ninghai": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Ningbo": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Neijiang": {"country": "China", "subcountry": "Sichuan"}, "Nanzhou": {"country": "China", "subcountry": "Hunan"}, "Nanzhang Chengguanzhen": {"country": "China", "subcountry": "Hubei"}, "Nanyang": {"country": "China", "subcountry": "Henan Sheng"}, "Nantong": {"country": "China", "subcountry": "Jiangsu"}, "Pucheng": {"country": "China", "subcountry": "Fujian"}, "Nanping": {"country": "China", "subcountry": "Fujian"}, "Nanning": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Nanma": {"country": "China", "subcountry": "Shandong Sheng"}, "Nanlong": {"country": "China", "subcountry": "Sichuan"}, "Nanjing": {"country": "China", "subcountry": "Jiangsu"}, "Nangong": {"country": "China", "subcountry": "Hebei"}, "Nanfeng": {"country": "China", "subcountry": "Guangdong"}, "Nandu": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Nanding": {"country": "China", "subcountry": "Shandong Sheng"}, "Nanchong": {"country": "China", "subcountry": "Sichuan"}, "Nanchang": {"country": "China", "subcountry": "Jiangxi Sheng"}, "Miyang": {"country": "China", "subcountry": "Yunnan"}, "Mingshui": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Mingguang": {"country": "China", "subcountry": "Anhui Sheng"}, "Minggang": {"country": "China", "subcountry": "Henan Sheng"}, "Mianyang": {"country": "China", "subcountry": "Sichuan"}, "Mentougou": {"country": "China", "subcountry": "Beijing"}, "Mengyin": {"country": "China", "subcountry": "Shandong Sheng"}, "Mengcheng Chengguanzhen": {"country": "China", "subcountry": "Anhui Sheng"}, "Meizhou": {"country": "China", "subcountry": "Guangdong"}, "Wuchuan": {"country": "China", "subcountry": "Guangdong"}, "Majie": {"country": "China", "subcountry": "Yunnan"}, "Zhijiang": {"country": "China", "subcountry": "Hubei"}, "Macheng": {"country": "China", "subcountry": "Hubei"}, "Maba": {"country": "China", "subcountry": "Guangdong"}, "L\u00fcshun": {"country": "China", "subcountry": "Liaoning"}, "Luqiao": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Luoyang": {"country": "China", "subcountry": "Guangdong"}, "Luorong": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Luohe": {"country": "China", "subcountry": "Henan Sheng"}, "Luocheng": {"country": "China", "subcountry": "Sichuan"}, "Lucheng": {"country": "China", "subcountry": "Anhui Sheng"}, "Kangding": {"country": "China", "subcountry": "Sichuan"}, "Lubu": {"country": "China", "subcountry": "Guangdong"}, "Luancheng": {"country": "China", "subcountry": "Hebei"}, "Loudi": {"country": "China", "subcountry": "Hunan"}, "Longquan": {"country": "China", "subcountry": "Yunnan"}, "Longgang": {"country": "China", "subcountry": "Shandong Sheng"}, "Licheng": {"country": "China", "subcountry": "Guangdong"}, "Guankou": {"country": "China", "subcountry": "Hunan"}, "Puning": {"country": "China", "subcountry": "Guangdong"}, "Lishui": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Lintong": {"country": "China", "subcountry": "Shaanxi"}, "Linyi": {"country": "China", "subcountry": "Shandong Sheng"}, "Linxia Chengguanzhen": {"country": "China", "subcountry": "Gansu Sheng"}, "Linxi": {"country": "China", "subcountry": "Hebei"}, "Linshui": {"country": "China", "subcountry": "Hebei"}, "Linqu": {"country": "China", "subcountry": "Shandong Sheng"}, "Linqiong": {"country": "China", "subcountry": "Sichuan"}, "Qingnian": {"country": "China", "subcountry": "Shandong Sheng"}, "Linping": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Linhai": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Lingcheng": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Lincheng": {"country": "China", "subcountry": "Hainan"}, "Linfen": {"country": "China", "subcountry": "Shanxi Sheng"}, "Xishan": {"country": "China", "subcountry": "Hunan"}, "Lichuan": {"country": "China", "subcountry": "Hubei"}, "Liaocheng": {"country": "China", "subcountry": "Shandong Sheng"}, "Lianzhou": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Lianran": {"country": "China", "subcountry": "Yunnan"}, "Wuwei": {"country": "China", "subcountry": "Gansu Sheng"}, "Liangxiang": {"country": "China", "subcountry": "Beijing"}, "Lianjiang": {"country": "China", "subcountry": "Guangdong"}, "Leshan": {"country": "China", "subcountry": "Sichuan"}, "Lengshuitan": {"country": "China", "subcountry": "Hunan"}, "Lengshuijiang": {"country": "China", "subcountry": "Hunan"}, "Leiyang": {"country": "China", "subcountry": "Hunan"}, "Lecheng": {"country": "China", "subcountry": "Guangdong"}, "Laohekou": {"country": "China", "subcountry": "Hubei"}, "Lanzhou": {"country": "China", "subcountry": "Gansu Sheng"}, "Lanxi": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Lianyuan": {"country": "China", "subcountry": "Hunan"}, "Langfang": {"country": "China", "subcountry": "Hebei"}, "Weichanglu": {"country": "China", "subcountry": "Shandong Sheng"}, "Laiyang": {"country": "China", "subcountry": "Shandong Sheng"}, "Laiwu": {"country": "China", "subcountry": "Shandong Sheng"}, "Laibin": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Kunyang": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Kunming": {"country": "China", "subcountry": "Yunnan"}, "Kaiyuan": {"country": "China", "subcountry": "Liaoning"}, "Kaihua": {"country": "China", "subcountry": "Yunnan"}, "Kaifeng": {"country": "China", "subcountry": "Henan Sheng"}, "Juye": {"country": "China", "subcountry": "Shandong Sheng"}, "Juegang": {"country": "China", "subcountry": "Jiangsu"}, "Jiujiang": {"country": "China", "subcountry": "Jiangxi Sheng"}, "Jishui": {"country": "China", "subcountry": "Henan Sheng"}, "Qianzhou": {"country": "China", "subcountry": "Hunan"}, "Jinzhou": {"country": "China", "subcountry": "Liaoning"}, "Jinxiang": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Jinshi": {"country": "China", "subcountry": "Hunan"}, "Jinsha": {"country": "China", "subcountry": "Jiangsu"}, "Jinji": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Jining": {"country": "China", "subcountry": "Inner Mongolia"}, "Jinhua": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Jingzhou": {"country": "China", "subcountry": "Hubei"}, "Tianchang": {"country": "China", "subcountry": "Hebei"}, "Jingmen": {"country": "China", "subcountry": "Hubei"}, "Jingling": {"country": "China", "subcountry": "Hubei"}, "Jingdezhen": {"country": "China", "subcountry": "Jiangxi Sheng"}, "Jinchang": {"country": "China", "subcountry": "Gansu Sheng"}, "Jincheng": {"country": "Taiwan", "subcountry": "Fukien"}, "Jinan": {"country": "China", "subcountry": "Shandong Sheng"}, "Jimo": {"country": "China", "subcountry": "Shandong Sheng"}, "Jijiang": {"country": "China", "subcountry": "Chongqing Shi"}, "Jiexiu": {"country": "China", "subcountry": "Shanxi Sheng"}, "Jieshou": {"country": "China", "subcountry": "Anhui Sheng"}, "Jieshi": {"country": "China", "subcountry": "Guangdong"}, "Jiehu": {"country": "China", "subcountry": "Shandong Sheng"}, "Jiazi": {"country": "China", "subcountry": "Guangdong"}, "Jiaxing": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Jiaozuo": {"country": "China", "subcountry": "Henan Sheng"}, "Jiaozhou": {"country": "China", "subcountry": "Shandong Sheng"}, "Ningde": {"country": "China", "subcountry": "Fujian"}, "Jian\u2019Ou": {"country": "China", "subcountry": "Fujian"}, "Jiangyan": {"country": "China", "subcountry": "Jiangsu"}, "Jianguang": {"country": "China", "subcountry": "Jiangxi Sheng"}, "Jiangmen": {"country": "China", "subcountry": "Guangdong"}, "Jiangkou": {"country": "China", "subcountry": "Fujian"}, "Yangjiang": {"country": "China", "subcountry": "Guangdong"}, "Ji\u2019An": {"country": "China", "subcountry": "Jiangxi Sheng"}, "Guangyuan": {"country": "China", "subcountry": "Sichuan"}, "Huzhou": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Hutang": {"country": "China", "subcountry": "Jiangsu"}, "Huoqiu Chengguanzhen": {"country": "China", "subcountry": "Anhui Sheng"}, "Humen": {"country": "China", "subcountry": "Guangdong"}, "Huizhou": {"country": "China", "subcountry": "Guangdong"}, "Huilong": {"country": "China", "subcountry": "Jiangsu"}, "Huicheng": {"country": "China", "subcountry": "Guangdong"}, "Xinhui": {"country": "China", "subcountry": "Guangdong"}, "Huazhou": {"country": "China", "subcountry": "Henan Sheng"}, "Huangzhou": {"country": "China", "subcountry": "Hubei"}, "Huangyan": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Huangshi": {"country": "China", "subcountry": "Hubei"}, "Dasha": {"country": "China", "subcountry": "Guangdong"}, "Huangpi": {"country": "China", "subcountry": "Hubei"}, "Huangmei": {"country": "China", "subcountry": "Hubei"}, "Huanggang": {"country": "China", "subcountry": "Guangdong"}, "Daxing": {"country": "China", "subcountry": "Beijing"}, "Dingcheng": {"country": "China", "subcountry": "Henan Sheng"}, "Huaiyuan Chengguanzhen": {"country": "China", "subcountry": "Anhui Sheng"}, "Huainan": {"country": "China", "subcountry": "Anhui Sheng"}, "Huaicheng": {"country": "China", "subcountry": "Guangdong"}, "Huaihua": {"country": "China", "subcountry": "Hunan"}, "Huaidian": {"country": "China", "subcountry": "Henan Sheng"}, "Huaibei": {"country": "China", "subcountry": "Anhui Sheng"}, "Hongjiang": {"country": "China", "subcountry": "Hunan"}, "Heze": {"country": "China", "subcountry": "Shandong Sheng"}, "Hechuan": {"country": "China", "subcountry": "Chongqing Shi"}, "Yiyang": {"country": "China", "subcountry": "Hunan"}, "Hepo": {"country": "China", "subcountry": "Guangdong"}, "Hengyang": {"country": "China", "subcountry": "Hunan"}, "Hengshui": {"country": "China", "subcountry": "Hebei"}, "Hefei": {"country": "China", "subcountry": "Anhui Sheng"}, "Hede": {"country": "China", "subcountry": "Jiangsu"}, "Hecun": {"country": "China", "subcountry": "Hebei"}, "Hebi": {"country": "China", "subcountry": "Henan Sheng"}, "Hanzhong": {"country": "China", "subcountry": "Shaanxi"}, "Chengyang": {"country": "China", "subcountry": "Shandong Sheng"}, "Hanting": {"country": "China", "subcountry": "Shandong Sheng"}, "Hangzhou": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Hangu": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Handan": {"country": "China", "subcountry": "Hebei"}, "Hanchuan": {"country": "China", "subcountry": "Hubei"}, "Haizhou": {"country": "China", "subcountry": "Jiangsu"}, "Jiaojiang": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Haimen": {"country": "China", "subcountry": "Guangdong"}, "Haikou": {"country": "China", "subcountry": "Hainan"}, "Guye": {"country": "China", "subcountry": "Hebei"}, "Guozhen": {"country": "China", "subcountry": "Shaanxi"}, "Guli": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Guiyang": {"country": "China", "subcountry": "Guizhou Sheng"}, "Guiren": {"country": "China", "subcountry": "Jiangsu"}, "Guiping": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Guilin": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Guigang": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Gucheng Chengguanzhen": {"country": "China", "subcountry": "Hubei"}, "Guangzhou": {"country": "China", "subcountry": "Guangdong"}, "Guangshui": {"country": "China", "subcountry": "Hubei"}, "Gejiu": {"country": "China", "subcountry": "Yunnan"}, "Gaozhou": {"country": "China", "subcountry": "Guangdong"}, "Gaoyou": {"country": "China", "subcountry": "Jiangsu"}, "Gaoping": {"country": "China", "subcountry": "Sichuan"}, "Gaomi": {"country": "China", "subcountry": "Shandong Sheng"}, "Gaogou": {"country": "China", "subcountry": "Jiangsu"}, "Fuzhou": {"country": "China", "subcountry": "Fujian"}, "Fuyang": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Qingyang": {"country": "China", "subcountry": "Shandong Sheng"}, "Fuling": {"country": "China", "subcountry": "Chongqing Shi"}, "Foshan": {"country": "China", "subcountry": "Guangdong"}, "Fenyi": {"country": "China", "subcountry": "Jiangxi Sheng"}, "Fengxian": {"country": "China", "subcountry": "Jiangsu"}, "Fengrun": {"country": "China", "subcountry": "Hebei"}, "Fengkou": {"country": "China", "subcountry": "Hubei"}, "Fangshan": {"country": "China", "subcountry": "Beijing"}, "Ezhou": {"country": "China", "subcountry": "Hubei"}, "Enshi": {"country": "China", "subcountry": "Hubei"}, "Encheng": {"country": "China", "subcountry": "Guangdong"}, "Duyun": {"country": "China", "subcountry": "Guizhou Sheng"}, "Duobao": {"country": "China", "subcountry": "Hubei"}, "Ducheng": {"country": "China", "subcountry": "Guangdong"}, "Xinyi": {"country": "China", "subcountry": "Guangdong"}, "Shengli": {"country": "China", "subcountry": "Shandong Sheng"}, "Dongtai": {"country": "China", "subcountry": "Jiangsu"}, "Dongsheng": {"country": "China", "subcountry": "Inner Mongolia"}, "Dongkan": {"country": "China", "subcountry": "Jiangsu"}, "Donghai": {"country": "China", "subcountry": "Guangdong"}, "Dongguan": {"country": "China", "subcountry": "Guangdong"}, "Dongdu": {"country": "China", "subcountry": "Shandong Sheng"}, "Dongcun": {"country": "China", "subcountry": "Shandong Sheng"}, "Dingzhou": {"country": "China", "subcountry": "Hebei"}, "Dingtao": {"country": "China", "subcountry": "Shandong Sheng"}, "Dezhou": {"country": "China", "subcountry": "Shandong Sheng"}, "Deyang": {"country": "China", "subcountry": "Sichuan"}, "Deqing": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Dengzhou": {"country": "China", "subcountry": "Shandong Sheng"}, "Songyang": {"country": "China", "subcountry": "Henan Sheng"}, "Dazhong": {"country": "China", "subcountry": "Jiangsu"}, "Zhangjiajie": {"country": "China", "subcountry": "Hunan"}, "Daye": {"country": "China", "subcountry": "Hubei"}, "Lijiang": {"country": "China", "subcountry": "Yunnan"}, "Dazhou": {"country": "China", "subcountry": "Sichuan"}, "Dawukou": {"country": "China", "subcountry": "Ningxia Huizu Zizhiqu"}, "Datong": {"country": "China", "subcountry": "Shanxi Sheng"}, "Fenghua": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Daokou": {"country": "China", "subcountry": "Henan Sheng"}, "Danshui": {"country": "China", "subcountry": "Guangdong"}, "Danjiangkou": {"country": "China", "subcountry": "Hubei"}, "Gushu": {"country": "China", "subcountry": "Anhui Sheng"}, "Xincheng": {"country": "China", "subcountry": "Henan Sheng"}, "Daliang": {"country": "China", "subcountry": "Guangdong"}, "Dalian": {"country": "China", "subcountry": "Liaoning"}, "Dali": {"country": "China", "subcountry": "Yunnan"}, "Chuzhou": {"country": "China", "subcountry": "Anhui Sheng"}, "Yangchun": {"country": "China", "subcountry": "Guangdong"}, "Yiwu": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Chongqing": {"country": "China", "subcountry": "Chongqing Shi"}, "Chonglong": {"country": "China", "subcountry": "Sichuan"}, "Chizhou": {"country": "China", "subcountry": "Anhui Sheng"}, "Chenzhou": {"country": "China", "subcountry": "Hunan"}, "Jiangyin": {"country": "China", "subcountry": "Jiangsu"}, "Chengdu": {"country": "China", "subcountry": "Sichuan"}, "Chenghua": {"country": "China", "subcountry": "Guangdong"}, "Chaozhou": {"country": "China", "subcountry": "Guangdong"}, "Chaohu": {"country": "China", "subcountry": "Anhui Sheng"}, "Changzhou": {"country": "China", "subcountry": "Jiangsu"}, "Changzhi": {"country": "China", "subcountry": "Shanxi Sheng"}, "Changsha": {"country": "China", "subcountry": "Hunan"}, "Changqing": {"country": "China", "subcountry": "Shandong Sheng"}, "Changli": {"country": "China", "subcountry": "Hebei"}, "Changleng": {"country": "China", "subcountry": "Jiangxi Sheng"}, "Caohe": {"country": "China", "subcountry": "Hubei"}, "Weining": {"country": "China", "subcountry": "Guizhou Sheng"}, "Cangzhou": {"country": "China", "subcountry": "Hebei"}, "Caidian": {"country": "China", "subcountry": "Hubei"}, "Buhe": {"country": "China", "subcountry": "Hubei"}, "Bozhou": {"country": "China", "subcountry": "Anhui Sheng"}, "Botou": {"country": "China", "subcountry": "Hebei"}, "Boshan": {"country": "China", "subcountry": "Shandong Sheng"}, "Baise City": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Binzhou": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Luxu": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Bijie": {"country": "China", "subcountry": "Guizhou Sheng"}, "Bianzhuang": {"country": "China", "subcountry": "Shandong Sheng"}, "Bengbu": {"country": "China", "subcountry": "Anhui Sheng"}, "Beijing": {"country": "China", "subcountry": "Beijing"}, "Beihai": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Beidao": {"country": "China", "subcountry": "Gansu Sheng"}, "Beidaihehaibin": {"country": "China", "subcountry": "Hebei"}, "Beibei": {"country": "China", "subcountry": "Chongqing Shi"}, "Baoying": {"country": "China", "subcountry": "Jiangsu"}, "Langzhong": {"country": "China", "subcountry": "Sichuan"}, "Baoding": {"country": "China", "subcountry": "Hebei"}, "Baiyin": {"country": "China", "subcountry": "Gansu Sheng"}, "Baihe": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Shangyu": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Babu": {"country": "China", "subcountry": "Guangxi Zhuangzu Zizhiqu"}, "Anxiang": {"country": "China", "subcountry": "Hunan"}, "Anshun": {"country": "China", "subcountry": "Guizhou Sheng"}, "Anqiu": {"country": "China", "subcountry": "Shandong Sheng"}, "Anqing": {"country": "China", "subcountry": "Anhui Sheng"}, "Mabai": {"country": "China", "subcountry": "Yunnan"}, "Anlu": {"country": "China", "subcountry": "Hubei"}, "Anjiang": {"country": "China", "subcountry": "Hunan"}, "Anbu": {"country": "China", "subcountry": "Guangdong"}, "Jiangyou": {"country": "China", "subcountry": "Sichuan"}, "Zhoushan": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Mudu": {"country": "China", "subcountry": "Jiangsu"}, "Songling": {"country": "China", "subcountry": "Hebei"}, "Zhongshan": {"country": "China", "subcountry": "Guangdong"}, "Lianghu": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Zhoucheng": {"country": "China", "subcountry": "Shandong Sheng"}, "Dalianwan": {"country": "China", "subcountry": "Liaoning"}, "Yueyang": {"country": "China", "subcountry": "Hunan"}, "Bojia": {"country": "China", "subcountry": "Hunan"}, "Zhenlai": {"country": "China", "subcountry": "Jilin Sheng"}, "Zhengjiatun": {"country": "China", "subcountry": "Jilin Sheng"}, "Zhaozhou": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Zhaoyuan": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Zhaodong": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Zhangjiakou": {"country": "China", "subcountry": "Hebei"}, "Zalantun": {"country": "China", "subcountry": "Inner Mongolia"}, "Yushu": {"country": "China", "subcountry": "Jilin Sheng"}, "Youhao": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Yingkou": {"country": "China", "subcountry": "Liaoning"}, "Yilan": {"country": "Taiwan", "subcountry": "Taiwan"}, "Yebaishou": {"country": "China", "subcountry": "Liaoning"}, "Yantongshan": {"country": "China", "subcountry": "Jilin Sheng"}, "Yanji": {"country": "China", "subcountry": "Jilin Sheng"}, "Yakeshi": {"country": "China", "subcountry": "Inner Mongolia"}, "Zhangjiakou Shi Xuanhua Qu": {"country": "China", "subcountry": "Hebei"}, "Xiuyan": {"country": "China", "subcountry": "Liaoning"}, "Xinqing": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Xinmin": {"country": "China", "subcountry": "Liaoning"}, "Xinglongshan": {"country": "China", "subcountry": "Jilin Sheng"}, "Xingcheng": {"country": "China", "subcountry": "Liaoning"}, "Xilin Hot": {"country": "China", "subcountry": "Inner Mongolia"}, "Xifeng": {"country": "China", "subcountry": "Liaoning"}, "Xiaoshi": {"country": "China", "subcountry": "Liaoning"}, "Wuchang": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Wangqing": {"country": "China", "subcountry": "Jilin Sheng"}, "Hepingjie": {"country": "China", "subcountry": "Jilin Sheng"}, "Wangkui": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Ulanhot": {"country": "China", "subcountry": "Inner Mongolia"}, "Tumen": {"country": "China", "subcountry": "Jilin Sheng"}, "Tongliao": {"country": "China", "subcountry": "Inner Mongolia"}, "Tieling": {"country": "China", "subcountry": "Liaoning"}, "Tieli": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Guangming": {"country": "China", "subcountry": "Jilin Sheng"}, "Tailai": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Taikang": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Tahe": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Sujiatun": {"country": "China", "subcountry": "Liaoning"}, "Suileng": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Suihua": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Suifenhe": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Songjianghe": {"country": "China", "subcountry": "Jilin Sheng"}, "Siping": {"country": "China", "subcountry": "Jilin Sheng"}, "Shunyi": {"country": "China", "subcountry": "Beijing"}, "Shulan": {"country": "China", "subcountry": "Jilin Sheng"}, "Shuangyashan": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Shuangyang": {"country": "China", "subcountry": "Jilin Sheng"}, "Shuangcheng": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Shiguai": {"country": "China", "subcountry": "Inner Mongolia"}, "Shenyang": {"country": "China", "subcountry": "Liaoning"}, "Shanhetun": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Shanhaiguan": {"country": "China", "subcountry": "Hebei"}, "Shangzhi": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Sanchazi": {"country": "China", "subcountry": "Jilin Sheng"}, "Salaqi": {"country": "China", "subcountry": "Inner Mongolia"}, "Fendou": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Taihe": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Qiqihar": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Qinggang": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Qianguo": {"country": "China", "subcountry": "Jilin Sheng"}, "Pingzhuang": {"country": "China", "subcountry": "Inner Mongolia"}, "Panshi": {"country": "China", "subcountry": "Jilin Sheng"}, "Panshan": {"country": "China", "subcountry": "Liaoning"}, "Nianzishan": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Nenjiang": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Nehe": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Nantai": {"country": "China", "subcountry": "Liaoning"}, "Nanpiao": {"country": "China", "subcountry": "Liaoning"}, "Lianhe": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Mujiayingzi": {"country": "China", "subcountry": "Inner Mongolia"}, "Mudanjiang": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Mishan": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Mingyue": {"country": "China", "subcountry": "Jilin Sheng"}, "Meihekou": {"country": "China", "subcountry": "Jilin Sheng"}, "Manzhouli": {"country": "China", "subcountry": "Inner Mongolia"}, "Longjing": {"country": "China", "subcountry": "Jilin Sheng"}, "Longjiang": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Longfeng": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Liuhe": {"country": "China", "subcountry": "Jilin Sheng"}, "Lishu": {"country": "China", "subcountry": "Jilin Sheng"}, "Linkou": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Linjiang": {"country": "China", "subcountry": "Jilin Sheng"}, "Lingyuan": {"country": "China", "subcountry": "Liaoning"}, "Lingdong": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Liaozhong": {"country": "China", "subcountry": "Liaoning"}, "Liaoyuan": {"country": "China", "subcountry": "Jilin Sheng"}, "Liaoyang": {"country": "China", "subcountry": "Liaoning"}, "Langxiang": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Langtou": {"country": "China", "subcountry": "Liaoning"}, "Kuandian": {"country": "China", "subcountry": "Liaoning"}, "Kaitong": {"country": "China", "subcountry": "Jilin Sheng"}, "Jixi": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Jiutai": {"country": "China", "subcountry": "Jilin Sheng"}, "Jiupu": {"country": "China", "subcountry": "Liaoning"}, "Jishu": {"country": "China", "subcountry": "Jilin Sheng"}, "Lianshan": {"country": "China", "subcountry": "Liaoning"}, "Jilin": {"country": "China", "subcountry": "Jilin Sheng"}, "Jidong": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Minzhu": {"country": "China", "subcountry": "Jilin Sheng"}, "Jiamusi": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Jalai Nur": {"country": "China", "subcountry": "Inner Mongolia"}, "Jagdaqi": {"country": "China", "subcountry": "Inner Mongolia"}, "Hushitai": {"country": "China", "subcountry": "Liaoning"}, "Hunchun": {"country": "China", "subcountry": "Jilin Sheng"}, "Hulan Ergi": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Hulan": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Huinan": {"country": "China", "subcountry": "Jilin Sheng"}, "Huanren": {"country": "China", "subcountry": "Liaoning"}, "Huangnihe": {"country": "China", "subcountry": "Jilin Sheng"}, "Huanan": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Huadian": {"country": "China", "subcountry": "Jilin Sheng"}, "Honggang": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Hohhot": {"country": "China", "subcountry": "Inner Mongolia"}, "Helong": {"country": "China", "subcountry": "Jilin Sheng"}, "Heishan": {"country": "China", "subcountry": "Liaoning"}, "Heihe": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Hegang": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Harbin": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Hailun": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Hailin": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Hailar": {"country": "China", "subcountry": "Inner Mongolia"}, "Haicheng": {"country": "China", "subcountry": "Liaoning"}, "Gongzhuling": {"country": "China", "subcountry": "Jilin Sheng"}, "Gongchangling": {"country": "China", "subcountry": "Liaoning"}, "Genhe": {"country": "China", "subcountry": "Inner Mongolia"}, "Gannan": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Fuyuan": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Fuyu": {"country": "China", "subcountry": "Jilin Sheng"}, "Fuxin": {"country": "China", "subcountry": "Liaoning"}, "Fushun": {"country": "China", "subcountry": "Liaoning"}, "Fuli": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Fujin": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Beichengqu": {"country": "China", "subcountry": "Inner Mongolia"}, "Fengxiang": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Fengcheng": {"country": "China", "subcountry": "Liaoning"}, "Erenhot": {"country": "China", "subcountry": "Inner Mongolia"}, "Erdaojiang": {"country": "China", "subcountry": "Jilin Sheng"}, "Dunhua": {"country": "China", "subcountry": "Jilin Sheng"}, "Dongning": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Dongling": {"country": "China", "subcountry": "Liaoning"}, "Dongfeng": {"country": "China", "subcountry": "Jilin Sheng"}, "Dongxing": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Dehui": {"country": "China", "subcountry": "Jilin Sheng"}, "Dashitou": {"country": "China", "subcountry": "Jilin Sheng"}, "Dashiqiao": {"country": "China", "subcountry": "Liaoning"}, "Daqing": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Dandong": {"country": "China", "subcountry": "Liaoning"}, "Linghai": {"country": "China", "subcountry": "Liaoning"}, "Dalai": {"country": "China", "subcountry": "Jilin Sheng"}, "Chifeng": {"country": "China", "subcountry": "Inner Mongolia"}, "Chengzihe": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Chengde": {"country": "China", "subcountry": "Hebei"}, "Chaoyang": {"country": "China", "subcountry": "Liaoning"}, "Changtu": {"country": "China", "subcountry": "Liaoning"}, "Changping": {"country": "China", "subcountry": "Beijing"}, "Changling": {"country": "China", "subcountry": "Jilin Sheng"}, "Changchun": {"country": "China", "subcountry": "Jilin Sheng"}, "Chaihe": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Boli": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Benxi": {"country": "China", "subcountry": "Liaoning"}, "Beipiao": {"country": "China", "subcountry": "Liaoning"}, "Bei\u2019An": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Bayan": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Baotou": {"country": "China", "subcountry": "Inner Mongolia"}, "Baoshan": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Baoqing": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Bamiantong": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Baishishan": {"country": "China", "subcountry": "Jilin Sheng"}, "Baiquan": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Baicheng": {"country": "China", "subcountry": "Jilin Sheng"}, "Baishan": {"country": "China", "subcountry": "Jilin Sheng"}, "Anshan": {"country": "China", "subcountry": "Liaoning"}, "Anda": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Oroqen Zizhiqi": {"country": "China", "subcountry": "Inner Mongolia"}, "Acheng": {"country": "China", "subcountry": "Heilongjiang Sheng"}, "Shilin": {"country": "China", "subcountry": "Yunnan"}, "Changshu City": {"country": "China", "subcountry": "Jiangsu"}, "Shixing": {"country": "China", "subcountry": "Guangdong"}, "Jiashan": {"country": "China", "subcountry": "Zhejiang Sheng"}, "Fenghuang": {"country": "China", "subcountry": "Hunan"}, "Zhu Cheng City": {"country": "China", "subcountry": "Shandong Sheng"}, "Shangri-La": {"country": "China", "subcountry": "Yunnan"}, "Ordos": {"country": "China", "subcountry": "Inner Mongolia"}, "Wenshan City": {"country": "China", "subcountry": "Yunnan"}, "Liupanshui": {"country": "China", "subcountry": "Guizhou Sheng"}, "Zipaquir\u00e1": {"country": "Colombia", "subcountry": "Cundinamarca"}, "Zarzal": {"country": "Colombia", "subcountry": "Valle del Cauca"}, "Zaragoza": {"country": "Spain", "subcountry": "Aragon"}, "Yumbo": {"country": "Colombia", "subcountry": "Valle del Cauca"}, "Yopal": {"country": "Colombia", "subcountry": "Casanare"}, "Yarumal": {"country": "Colombia", "subcountry": "Antioquia"}, "Viterbo": {"country": "Italy", "subcountry": "Latium"}, "Villeta": {"country": "Colombia", "subcountry": "Cundinamarca"}, "Villavicencio": {"country": "Colombia", "subcountry": "Meta"}, "Villa Del Rosario": {"country": "Colombia", "subcountry": "Norte de Santander"}, "Villanueva": {"country": "Honduras", "subcountry": "Cort\u00e9s"}, "Villamar\u00eda": {"country": "Colombia", "subcountry": "Caldas"}, "Valledupar": {"country": "Colombia", "subcountry": "Cesar"}, "Urrao": {"country": "Colombia", "subcountry": "Antioquia"}, "Ubat\u00e9": {"country": "Colombia", "subcountry": "Cundinamarca"}, "Turbo": {"country": "Colombia", "subcountry": "Antioquia"}, "Turbaco": {"country": "Colombia", "subcountry": "Bol\u00edvar"}, "T\u00faquerres": {"country": "Colombia", "subcountry": "Nari\u00f1o"}, "Tunja": {"country": "Colombia", "subcountry": "Boyac\u00e1"}, "Tumaco": {"country": "Colombia", "subcountry": "Nari\u00f1o"}, "Tulu\u00e1": {"country": "Colombia", "subcountry": "Valle del Cauca"}, "Tol\u00fa": {"country": "Colombia", "subcountry": "Sucre"}, "Tierralta": {"country": "Colombia", "subcountry": "C\u00f3rdoba"}, "Tame": {"country": "Colombia", "subcountry": "Arauca"}, "Sons\u00f3n": {"country": "Colombia", "subcountry": "Antioquia"}, "Soledad": {"country": "United States", "subcountry": "California"}, "Sogamoso": {"country": "Colombia", "subcountry": "Boyac\u00e1"}, "Soacha": {"country": "Colombia", "subcountry": "Cundinamarca"}, "Sincelejo": {"country": "Colombia", "subcountry": "Sucre"}, "Sinc\u00e9": {"country": "Colombia", "subcountry": "Sucre"}, "Sibat\u00e9": {"country": "Colombia", "subcountry": "Cundinamarca"}, "Sevilla": {"country": "Spain", "subcountry": "Andalusia"}, "Segovia": {"country": "Spain", "subcountry": "Castille and Le\u00f3n"}, "Santuario": {"country": "Colombia", "subcountry": "Antioquia"}, "Santo Tom\u00e1s": {"country": "Colombia", "subcountry": "Atl\u00e1ntico"}, "Santa Rosa De Cabal": {"country": "Colombia", "subcountry": "Risaralda"}, "Santander De Quilichao": {"country": "Colombia", "subcountry": "Cauca"}, "Santa Marta": {"country": "Colombia", "subcountry": "Magdalena"}, "San Onofre": {"country": "Colombia", "subcountry": "Sucre"}, "San Marcos": {"country": "United States", "subcountry": "California"}, "San Juan Nepomuceno": {"country": "Colombia", "subcountry": "Bol\u00edvar"}, "San Juan Del Cesar": {"country": "Colombia", "subcountry": "La Guajira"}, "San Jacinto": {"country": "United States", "subcountry": "California"}, "San Gil": {"country": "Colombia", "subcountry": "Santander"}, "San Benito Abad": {"country": "Colombia", "subcountry": "Sucre"}, "San Andr\u00e9s": {"country": "Colombia", "subcountry": "Archipi\u00e9lago de San Andr\u00e9s, Providencia y Santa Catalina"}, "Sampu\u00e9s": {"country": "Colombia", "subcountry": "Sucre"}, "Salamina": {"country": "Colombia", "subcountry": "Caldas"}, "Sahag\u00fan": {"country": "Colombia", "subcountry": "C\u00f3rdoba"}, "Sabaneta": {"country": "Dominican Republic", "subcountry": "Santiago Rodr\u00edguez"}, "Sabanalarga": {"country": "Colombia", "subcountry": "Atl\u00e1ntico"}, "Sabanagrande": {"country": "Colombia", "subcountry": "Atl\u00e1ntico"}, "Roldanillo": {"country": "Colombia", "subcountry": "Valle del Cauca"}, "Riosucio": {"country": "Colombia", "subcountry": "Caldas"}, "Rionegro": {"country": "Colombia", "subcountry": "Antioquia"}, "R\u00edohacha": {"country": "Colombia", "subcountry": "La Guajira"}, "Repel\u00f3n": {"country": "Colombia", "subcountry": "Atl\u00e1ntico"}, "Quimbaya": {"country": "Colombia", "subcountry": "Quind\u00edo"}, "Quibd\u00f3": {"country": "Colombia", "subcountry": "Choc\u00f3"}, "Puerto Tejada": {"country": "Colombia", "subcountry": "Cauca"}, "Puerto Santander": {"country": "Colombia", "subcountry": "Norte de Santander"}, "Puerto L\u00f3pez": {"country": "Colombia", "subcountry": "Meta"}, "Puerto Colombia": {"country": "Colombia", "subcountry": "Atl\u00e1ntico"}, "Puerto Boyac\u00e1": {"country": "Colombia", "subcountry": "Boyac\u00e1"}, "Puerto Berr\u00edo": {"country": "Colombia", "subcountry": "Antioquia"}, "Puerto As\u00eds": {"country": "Colombia", "subcountry": "Putumayo"}, "Pradera": {"country": "Colombia", "subcountry": "Valle del Cauca"}, "Popay\u00e1n": {"country": "Colombia", "subcountry": "Cauca"}, "Planeta Rica": {"country": "Colombia", "subcountry": "C\u00f3rdoba"}, "Pivijay": {"country": "Colombia", "subcountry": "Magdalena"}, "Pitalito": {"country": "Colombia", "subcountry": "Huila"}, "Piedecuesta": {"country": "Colombia", "subcountry": "Santander"}, "Pereira": {"country": "Colombia", "subcountry": "Risaralda"}, "Pat\u00eda": {"country": "Colombia", "subcountry": "Cauca"}, "Pasto": {"country": "Colombia", "subcountry": "Nari\u00f1o"}, "Pamplona": {"country": "Spain", "subcountry": "Navarre"}, "Palmira": {"country": "Cuba", "subcountry": "Cienfuegos"}, "Palmar De Varela": {"country": "Colombia", "subcountry": "Atl\u00e1ntico"}, "Belalcazar": {"country": "Colombia", "subcountry": "Cauca"}, "Pacho": {"country": "Colombia", "subcountry": "Cundinamarca"}, "Oca\u00f1a": {"country": "Colombia", "subcountry": "Norte de Santander"}, "Neiva": {"country": "Colombia", "subcountry": "Huila"}, "Mosquera": {"country": "Colombia", "subcountry": "Cundinamarca"}, "Morales": {"country": "Guatemala", "subcountry": "Izabal"}, "Monter\u00eda": {"country": "Colombia", "subcountry": "C\u00f3rdoba"}, "Montel\u00edbano": {"country": "Colombia", "subcountry": "C\u00f3rdoba"}, "Momp\u00f3s": {"country": "Colombia", "subcountry": "Bol\u00edvar"}, "Mocoa": {"country": "Colombia", "subcountry": "Putumayo"}, "Melgar": {"country": "Colombia", "subcountry": "Tolima"}, "Medell\u00edn": {"country": "Colombia", "subcountry": "Antioquia"}, "Mariquita": {"country": "Colombia", "subcountry": "Tolima"}, "Marinilla": {"country": "Colombia", "subcountry": "Antioquia"}, "Mar\u00eda La Baja": {"country": "Colombia", "subcountry": "Bol\u00edvar"}, "Manzanares": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Manizales": {"country": "Colombia", "subcountry": "Caldas"}, "Malambo": {"country": "Colombia", "subcountry": "Atl\u00e1ntico"}, "M\u00e1laga": {"country": "Spain", "subcountry": "Andalusia"}, "Maicao": {"country": "Colombia", "subcountry": "La Guajira"}, "Magangu\u00e9": {"country": "Colombia", "subcountry": "Bol\u00edvar"}, "Madrid": {"country": "Spain", "subcountry": "Madrid"}, "Los Patios": {"country": "Colombia", "subcountry": "Norte de Santander"}, "Lorica": {"country": "Colombia", "subcountry": "C\u00f3rdoba"}, "L\u00edbano": {"country": "Colombia", "subcountry": "Tolima"}, "Leticia": {"country": "Colombia", "subcountry": "Amazonas"}, "L\u00e9rida": {"country": "Colombia", "subcountry": "Tolima"}, "La Virginia": {"country": "Colombia", "subcountry": "Risaralda"}, "La Tebaida": {"country": "Colombia", "subcountry": "Quind\u00edo"}, "La Mesa": {"country": "Colombia", "subcountry": "Cundinamarca"}, "La Jagua De Ibirico": {"country": "Colombia", "subcountry": "Cesar"}, "La Estrella": {"country": "Colombia", "subcountry": "Antioquia"}, "La Dorada": {"country": "Colombia", "subcountry": "Caldas"}, "La Ceja": {"country": "Colombia", "subcountry": "Antioquia"}, "Jamund\u00ed": {"country": "Colombia", "subcountry": "Valle del Cauca"}, "Itag\u00fc\u00ed": {"country": "Colombia", "subcountry": "Antioquia"}, "Ipiales": {"country": "Colombia", "subcountry": "Nari\u00f1o"}, "Ibagu\u00e9": {"country": "Colombia", "subcountry": "Tolima"}, "Honda": {"country": "Colombia", "subcountry": "Tolima"}, "Guacar\u00ed": {"country": "Colombia", "subcountry": "Valle del Cauca"}, "Granada": {"country": "Nicaragua", "subcountry": "Granada"}, "Gir\u00f3n": {"country": "Colombia", "subcountry": "Santander"}, "Girardot City": {"country": "Colombia", "subcountry": "Cundinamarca"}, "Garz\u00f3n": {"country": "Colombia", "subcountry": "Huila"}, "Galapa": {"country": "Colombia", "subcountry": "Atl\u00e1ntico"}, "Fusagasuga": {"country": "Colombia", "subcountry": "Cundinamarca"}, "Funza": {"country": "Colombia", "subcountry": "Cundinamarca"}, "Fundaci\u00f3n": {"country": "Colombia", "subcountry": "Magdalena"}, "Fresno": {"country": "United States", "subcountry": "California"}, "Fonseca": {"country": "Colombia", "subcountry": "La Guajira"}, "Floridablanca": {"country": "Colombia", "subcountry": "Santander"}, "Florida": {"country": "Uruguay", "subcountry": "Florida"}, "Florencia": {"country": "Cuba", "subcountry": "Ciego de \u00c1vila"}, "Flandes": {"country": "Colombia", "subcountry": "Tolima"}, "Facatativ\u00e1": {"country": "Colombia", "subcountry": "Cundinamarca"}, "Espinal": {"country": "Colombia", "subcountry": "Tolima"}, "Envigado": {"country": "Colombia", "subcountry": "Antioquia"}, "El Ret\u00e9n": {"country": "Colombia", "subcountry": "Magdalena"}, "El Copey": {"country": "Colombia", "subcountry": "Cesar"}, "El Charco": {"country": "Colombia", "subcountry": "Nari\u00f1o"}, "El Cerrito": {"country": "United States", "subcountry": "California"}, "El Carmen De Bol\u00edvar": {"country": "Colombia", "subcountry": "Bol\u00edvar"}, "El Banco": {"country": "Colombia", "subcountry": "Magdalena"}, "El Bagre": {"country": "Colombia", "subcountry": "Antioquia"}, "Duitama": {"country": "Colombia", "subcountry": "Boyac\u00e1"}, "Dos Quebradas": {"country": "Colombia", "subcountry": "Risaralda"}, "Curuman\u00ed": {"country": "Colombia", "subcountry": "Cesar"}, "C\u00facuta": {"country": "Colombia", "subcountry": "Norte de Santander"}, "Corozal": {"country": "Colombia", "subcountry": "Sucre"}, "Municipio De Copacabana": {"country": "Colombia", "subcountry": "Antioquia"}, "Circasia": {"country": "Colombia", "subcountry": "Quind\u00edo"}, "Ci\u00e9naga De Oro": {"country": "Colombia", "subcountry": "C\u00f3rdoba"}, "Ci\u00e9naga": {"country": "Colombia", "subcountry": "Magdalena"}, "Chiriguan\u00e1": {"country": "Colombia", "subcountry": "Cesar"}, "Chiquinquir\u00e1": {"country": "Colombia", "subcountry": "Boyac\u00e1"}, "Chin\u00fa": {"country": "Colombia", "subcountry": "C\u00f3rdoba"}, "Chinchin\u00e1": {"country": "Colombia", "subcountry": "Caldas"}, "Chimichagua": {"country": "Colombia", "subcountry": "Cesar"}, "Chigorod\u00f3": {"country": "Colombia", "subcountry": "Antioquia"}, "Ch\u00eda": {"country": "Colombia", "subcountry": "Cundinamarca"}, "Chaparral": {"country": "Colombia", "subcountry": "Tolima"}, "Ceret\u00e9": {"country": "Colombia", "subcountry": "C\u00f3rdoba"}, "Caucasia": {"country": "Colombia", "subcountry": "Antioquia"}, "Cartago": {"country": "Costa Rica", "subcountry": "Cartago"}, "Carmen De Viboral": {"country": "Colombia", "subcountry": "Antioquia"}, "Candelaria": {"country": "Puerto Rico", "subcountry": "Toa Baja"}, "Campo De La Cruz": {"country": "Colombia", "subcountry": "Atl\u00e1ntico"}, "Campoalegre": {"country": "Colombia", "subcountry": "Huila"}, "Cali": {"country": "Colombia", "subcountry": "Valle del Cauca"}, "Caldas": {"country": "Colombia", "subcountry": "Antioquia"}, "Calarc\u00e1": {"country": "Colombia", "subcountry": "Quind\u00edo"}, "Cajic\u00e1": {"country": "Colombia", "subcountry": "Cundinamarca"}, "Caicedonia": {"country": "Colombia", "subcountry": "Valle del Cauca"}, "Buga": {"country": "Colombia", "subcountry": "Valle del Cauca"}, "Buenaventura": {"country": "Colombia", "subcountry": "Valle del Cauca"}, "Bucaramanga": {"country": "Colombia", "subcountry": "Santander"}, "Bogot\u00e1": {"country": "Colombia", "subcountry": "Bogota D.C."}, "Bello": {"country": "Colombia", "subcountry": "Antioquia"}, "Bel\u00e9n De Umbr\u00eda": {"country": "Colombia", "subcountry": "Risaralda"}, "Barranquilla": {"country": "Colombia", "subcountry": "Atl\u00e1ntico"}, "Barrancas": {"country": "Colombia", "subcountry": "La Guajira"}, "Barrancabermeja": {"country": "Colombia", "subcountry": "Santander"}, "Barbosa": {"country": "Colombia", "subcountry": "Santander"}, "Baranoa": {"country": "Colombia", "subcountry": "Atl\u00e1ntico"}, "Ayapel": {"country": "Colombia", "subcountry": "C\u00f3rdoba"}, "Armenia": {"country": "Colombia", "subcountry": "Quind\u00edo"}, "Arjona": {"country": "Colombia", "subcountry": "Bol\u00edvar"}, "Ariguan\u00ed": {"country": "Colombia", "subcountry": "Cesar"}, "Arauca": {"country": "Colombia", "subcountry": "Arauca"}, "Aracataca": {"country": "Colombia", "subcountry": "Magdalena"}, "Apartad\u00f3": {"country": "Colombia", "subcountry": "Antioquia"}, "Anserma": {"country": "Colombia", "subcountry": "Risaralda"}, "Andes": {"country": "Colombia", "subcountry": "Antioquia"}, "Andaluc\u00eda": {"country": "Colombia", "subcountry": "Valle del Cauca"}, "Aguazul": {"country": "Colombia", "subcountry": "Casanare"}, "Aguadas": {"country": "Colombia", "subcountry": "Caldas"}, "Aguachica": {"country": "Colombia", "subcountry": "Cesar"}, "Acac\u00edas": {"country": "Colombia", "subcountry": "Meta"}, "Carepa": {"country": "Colombia", "subcountry": "Antioquia"}, "Ciudad Bol\u00edvar": {"country": "Venezuela", "subcountry": "Bol\u00edvar"}, "Agust\u00edn Codazzi": {"country": "Colombia", "subcountry": "Cesar"}, "Plato": {"country": "Colombia", "subcountry": "Magdalena"}, "San Jos\u00e9 Del Guaviare": {"country": "Colombia", "subcountry": "Guaviare"}, "Turrialba": {"country": "Costa Rica", "subcountry": "Cartago"}, "Tejar": {"country": "Costa Rica", "subcountry": "San Jos\u00e9"}, "Siquirres": {"country": "Costa Rica", "subcountry": "Lim\u00f3n"}, "San Rafael Arriba": {"country": "Costa Rica", "subcountry": "San Jos\u00e9"}, "San Rafael Abajo": {"country": "Costa Rica", "subcountry": "San Jos\u00e9"}, "San Pablo": {"country": "United States", "subcountry": "California"}, "San Miguel": {"country": "El Salvador", "subcountry": "San Miguel"}, "San Juan De Dios": {"country": "Costa Rica", "subcountry": "San Jos\u00e9"}, "San Jos\u00e9": {"country": "Costa Rica", "subcountry": "San Jos\u00e9"}, "San Diego": {"country": "United States", "subcountry": "California"}, "Quesada": {"country": "Costa Rica", "subcountry": "Alajuela"}, "Purral": {"country": "Costa Rica", "subcountry": "San Jos\u00e9"}, "Puntarenas": {"country": "Costa Rica", "subcountry": "Puntarenas"}, "Lim\u00f3n": {"country": "Costa Rica", "subcountry": "Lim\u00f3n"}, "Patarr\u00e1": {"country": "Costa Rica", "subcountry": "San Jos\u00e9"}, "Para\u00edso": {"country": "Costa Rica", "subcountry": "Cartago"}, "Nicoya": {"country": "Costa Rica", "subcountry": "Guanacaste"}, "Liberia": {"country": "Costa Rica", "subcountry": "Guanacaste"}, "Ip\u00eds": {"country": "Costa Rica", "subcountry": "San Jos\u00e9"}, "Heredia": {"country": "Costa Rica", "subcountry": "Heredia"}, "Gu\u00e1piles": {"country": "Costa Rica", "subcountry": "Lim\u00f3n"}, "Guadalupe": {"country": "Peru", "subcountry": "La Libertad"}, "Esparza": {"country": "Costa Rica", "subcountry": "Puntarenas"}, "Curridabat": {"country": "Costa Rica", "subcountry": "San Jos\u00e9"}, "Colima": {"country": "Mexico", "subcountry": "Colima"}, "Chacarita": {"country": "Costa Rica", "subcountry": "Puntarenas"}, "Ca\u00f1as": {"country": "Costa Rica", "subcountry": "Guanacaste"}, "Calle Blancos": {"country": "Costa Rica", "subcountry": "San Jos\u00e9"}, "Aserr\u00ed": {"country": "Costa Rica", "subcountry": "San Jos\u00e9"}, "Alajuela": {"country": "Costa Rica", "subcountry": "Alajuela"}, "San Vicente De Moravia": {"country": "Costa Rica", "subcountry": "San Jos\u00e9"}, "Yara": {"country": "Cuba", "subcountry": "Granma"}, "Yaguajay": {"country": "Cuba", "subcountry": "Sancti Sp\u00edritus"}, "Vi\u00f1ales": {"country": "Cuba", "subcountry": "Pinar del R\u00edo"}, "Vertientes": {"country": "Cuba", "subcountry": "Camag\u00fcey"}, "Venezuela": {"country": "Cuba", "subcountry": "Ciego de \u00c1vila"}, "Varadero": {"country": "Cuba", "subcountry": "Matanzas"}, "San Germ\u00e1n": {"country": "Cuba", "subcountry": "Holgu\u00edn"}, "Uni\u00f3n De Reyes": {"country": "Cuba", "subcountry": "Matanzas"}, "Sibanic\u00fa": {"country": "Cuba", "subcountry": "Camag\u00fcey"}, "Santo Domingo": {"country": "Dominican Republic", "subcountry": "Nacional"}, "Santiago De Las Vegas": {"country": "Cuba", "subcountry": "La Habana"}, "Santiago De Cuba": {"country": "Cuba", "subcountry": "Santiago de Cuba"}, "Santa Cruz Del Sur": {"country": "Cuba", "subcountry": "Camag\u00fcey"}, "Santa Cruz Del Norte": {"country": "Cuba", "subcountry": "Mayabeque"}, "Santa Clara": {"country": "United States", "subcountry": "California"}, "San Miguel Del Padr\u00f3n": {"country": "Cuba", "subcountry": "La Habana"}, "San Jos\u00e9 De Las Lajas": {"country": "Cuba", "subcountry": "Mayabeque"}, "Sancti Sp\u00edritus": {"country": "Cuba", "subcountry": "Sancti Sp\u00edritus"}, "San Cristobal": {"country": "Cuba", "subcountry": "Artemisa"}, "San Antonio De Los Ba\u00f1os": {"country": "Cuba", "subcountry": "Artemisa"}, "Sagua La Grande": {"country": "Cuba", "subcountry": "Villa Clara"}, "Sagua De T\u00e1namo": {"country": "Cuba", "subcountry": "Holgu\u00edn"}, "Rodas": {"country": "Cuba", "subcountry": "Cienfuegos"}, "R\u00edo Guayabal De Yateras": {"country": "Cuba", "subcountry": "Guant\u00e1namo"}, "R\u00edo Cauto": {"country": "Cuba", "subcountry": "Granma"}, "Remedios": {"country": "Cuba", "subcountry": "Villa Clara"}, "Regla": {"country": "Cuba", "subcountry": "La Habana"}, "Ranchuelo": {"country": "Cuba", "subcountry": "Villa Clara"}, "Puerto Padre": {"country": "Cuba", "subcountry": "Las Tunas"}, "Primero De Enero": {"country": "Cuba", "subcountry": "Ciego de \u00c1vila"}, "Placetas": {"country": "Cuba", "subcountry": "Villa Clara"}, "Pinar Del R\u00edo": {"country": "Cuba", "subcountry": "Pinar del R\u00edo"}, "Perico": {"country": "Cuba", "subcountry": "Matanzas"}, "Pedro Betancourt": {"country": "Cuba", "subcountry": "Matanzas"}, "Palma Soriano": {"country": "Cuba", "subcountry": "Santiago de Cuba"}, "Nuevitas": {"country": "Cuba", "subcountry": "Camag\u00fcey"}, "Nueva Gerona": {"country": "Cuba", "subcountry": "Isla de la Juventud"}, "Niquero": {"country": "Cuba", "subcountry": "Granma"}, "Moa": {"country": "Cuba", "subcountry": "Holgu\u00edn"}, "Minas De Matahambre": {"country": "Cuba", "subcountry": "Pinar del R\u00edo"}, "Minas": {"country": "Uruguay", "subcountry": "Lavalleja"}, "Media Luna": {"country": "Cuba", "subcountry": "Granma"}, "Matanzas": {"country": "Cuba", "subcountry": "Matanzas"}, "Mariel": {"country": "Cuba", "subcountry": "Artemisa"}, "Manzanillo": {"country": "Mexico", "subcountry": "Colima"}, "Manicaragua": {"country": "Cuba", "subcountry": "Villa Clara"}, "Mais\u00ed": {"country": "Cuba", "subcountry": "Guant\u00e1namo"}, "Madruga": {"country": "Cuba", "subcountry": "Mayabeque"}, "Los Palacios": {"country": "Cuba", "subcountry": "Pinar del R\u00edo"}, "Las Tunas": {"country": "Cuba", "subcountry": "Las Tunas"}, "La Sierpe": {"country": "Cuba", "subcountry": "Sancti Sp\u00edritus"}, "La Salud": {"country": "Cuba", "subcountry": "Mayabeque"}, "Havana": {"country": "Cuba", "subcountry": "La Habana"}, "Jovellanos": {"country": "Cuba", "subcountry": "Matanzas"}, "Jobabo": {"country": "Cuba", "subcountry": "Las Tunas"}, "Jiguan\u00ed": {"country": "Cuba", "subcountry": "Granma"}, "Jes\u00fas Men\u00e9ndez": {"country": "Cuba", "subcountry": "Las Tunas"}, "Jatibonico": {"country": "Cuba", "subcountry": "Sancti Sp\u00edritus"}, "Jaruco": {"country": "Cuba", "subcountry": "Mayabeque"}, "Jag\u00fcey Grande": {"country": "Cuba", "subcountry": "Matanzas"}, "Holgu\u00edn": {"country": "Cuba", "subcountry": "Holgu\u00edn"}, "Guisa": {"country": "Cuba", "subcountry": "Granma"}, "G\u00fcira De Melena": {"country": "Cuba", "subcountry": "Artemisa"}, "G\u00fcines": {"country": "Cuba", "subcountry": "Mayabeque"}, "Guant\u00e1namo": {"country": "Cuba", "subcountry": "Guant\u00e1namo"}, "Guane": {"country": "Cuba", "subcountry": "Pinar del R\u00edo"}, "Guanajay": {"country": "Cuba", "subcountry": "Artemisa"}, "Guanabacoa": {"country": "Cuba", "subcountry": "La Habana"}, "Gu\u00e1imaro": {"country": "Cuba", "subcountry": "Camag\u00fcey"}, "Gibara": {"country": "Cuba", "subcountry": "Holgu\u00edn"}, "Fomento": {"country": "Cuba", "subcountry": "Sancti Sp\u00edritus"}, "Esmeralda": {"country": "Cuba", "subcountry": "Camag\u00fcey"}, "Encrucijada": {"country": "Cuba", "subcountry": "Villa Clara"}, "Cumanayagua": {"country": "Cuba", "subcountry": "Cienfuegos"}, "Cueto": {"country": "Cuba", "subcountry": "Holgu\u00edn"}, "Cruces": {"country": "Cuba", "subcountry": "Cienfuegos"}, "Corralillo": {"country": "Cuba", "subcountry": "Villa Clara"}, "Contramaestre": {"country": "Cuba", "subcountry": "Santiago de Cuba"}, "Consolaci\u00f3n Del Sur": {"country": "Cuba", "subcountry": "Pinar del R\u00edo"}, "Col\u00f3n": {"country": "Panama", "subcountry": "Col\u00f3n"}, "Colombia": {"country": "Cuba", "subcountry": "Las Tunas"}, "Ciro Redondo": {"country": "Cuba", "subcountry": "Ciego de \u00c1vila"}, "Cifuentes": {"country": "Cuba", "subcountry": "Villa Clara"}, "Cienfuegos": {"country": "Cuba", "subcountry": "Cienfuegos"}, "Ciego De \u00c1vila": {"country": "Cuba", "subcountry": "Ciego de \u00c1vila"}, "Chambas": {"country": "Cuba", "subcountry": "Ciego de \u00c1vila"}, "Cerro": {"country": "Cuba", "subcountry": "La Habana"}, "Cauto Cristo": {"country": "Cuba", "subcountry": "Granma"}, "C\u00e1rdenas": {"country": "Mexico", "subcountry": "Tabasco"}, "Campechuela": {"country": "Cuba", "subcountry": "Granma"}, "Camajuan\u00ed": {"country": "Cuba", "subcountry": "Villa Clara"}, "Camag\u00fcey": {"country": "Cuba", "subcountry": "Camag\u00fcey"}, "Calimete": {"country": "Cuba", "subcountry": "Matanzas"}, "Caibari\u00e9n": {"country": "Cuba", "subcountry": "Villa Clara"}, "Cacocum": {"country": "Cuba", "subcountry": "Holgu\u00edn"}, "Cabaigu\u00e1n": {"country": "Cuba", "subcountry": "Sancti Sp\u00edritus"}, "Bejucal": {"country": "Cuba", "subcountry": "Mayabeque"}, "Bayamo": {"country": "Cuba", "subcountry": "Granma"}, "Bauta": {"country": "Cuba", "subcountry": "Artemisa"}, "Bartolom\u00e9 Mas\u00f3": {"country": "Cuba", "subcountry": "Granma"}, "Baragu\u00e1": {"country": "Cuba", "subcountry": "Ciego de \u00c1vila"}, "Baracoa": {"country": "Cuba", "subcountry": "Guant\u00e1namo"}, "Banes": {"country": "Cuba", "subcountry": "Holgu\u00edn"}, "Bah\u00eda Honda": {"country": "Cuba", "subcountry": "Artemisa"}, "Artemisa": {"country": "Cuba", "subcountry": "Artemisa"}, "Arroyo Naranjo": {"country": "Cuba", "subcountry": "La Habana"}, "Amancio": {"country": "Cuba", "subcountry": "Las Tunas"}, "Alqu\u00edzar": {"country": "Cuba", "subcountry": "Artemisa"}, "Alamar": {"country": "Cuba", "subcountry": "La Habana"}, "Aguada De Pasajeros": {"country": "Cuba", "subcountry": "Cienfuegos"}, "Abreus": {"country": "Cuba", "subcountry": "Cienfuegos"}, "Habana Del Este": {"country": "Cuba", "subcountry": "La Habana"}, "Centro Habana": {"country": "Cuba", "subcountry": "La Habana"}, "La Habana Vieja": {"country": "Cuba", "subcountry": "La Habana"}, "B\u00e1guanos": {"country": "Cuba", "subcountry": "Holgu\u00edn"}, "Jimaguay\u00fa": {"country": "Cuba", "subcountry": "Camag\u00fcey"}, "Boyeros": {"country": "Cuba", "subcountry": "La Habana"}, "Diez De Octubre": {"country": "Cuba", "subcountry": "La Habana"}, "Praia": {"country": "Cape Verde", "subcountry": "Praia"}, "Mindelo": {"country": "Cape Verde", "subcountry": "S\u00e3o Vicente"}, "Cova Figueira": {"country": "Cape Verde", "subcountry": "Santa Catarina do Fogo"}, "Willemstad": {"country": "Curacao", "subcountry": "N/A"}, "Flying Fish Cove": {"country": "Christmas Island", "subcountry": "N/A"}, "Protaras": {"country": "Cyprus", "subcountry": "Ammochostos"}, "Paphos": {"country": "Cyprus", "subcountry": "Pafos"}, "Nicosia": {"country": "Cyprus", "subcountry": "Lefkosia"}, "Limassol": {"country": "Cyprus", "subcountry": "Limassol"}, "Larnaca": {"country": "Cyprus", "subcountry": "Larnaka"}, "Kyrenia": {"country": "Cyprus", "subcountry": "Keryneia"}, "Famagusta": {"country": "Cyprus", "subcountry": "Ammochostos"}, "Dv\u016fr Kr\u00e1lov\u00e9 Nad Labem": {"country": "Czech Republic", "subcountry": "Kr\u00e1lov\u00e9hradeck\u00fd"}, "Znojmo": {"country": "Czech Republic", "subcountry": "South Moravian"}, "Zl\u00edn": {"country": "Czech Republic", "subcountry": "Zl\u00edn"}, "\u017d\u010f\u00e1r Nad S\u00e1zavou Druhy": {"country": "Czech Republic", "subcountry": "Vyso\u010dina"}, "\u017d\u010f\u00e1r Nad S\u00e1zavou": {"country": "Czech Republic", "subcountry": "Vyso\u010dina"}, "\u017datec": {"country": "Czech Republic", "subcountry": "\u00dasteck\u00fd"}, "Vy\u0161kov": {"country": "Czech Republic", "subcountry": "South Moravian"}, "Vset\u00edn": {"country": "Czech Republic", "subcountry": "Zl\u00edn"}, "Varnsdorf": {"country": "Czech Republic", "subcountry": "\u00dasteck\u00fd"}, "Vala\u0161sk\u00e9 Mezi\u0159\u00ed\u010d\u00ed": {"country": "Czech Republic", "subcountry": "Zl\u00edn"}, "\u00dast\u00ed Nad Orlic\u00ed": {"country": "Czech Republic", "subcountry": "Pardubick\u00fd"}, "\u00dast\u00ed Nad Labem": {"country": "Czech Republic", "subcountry": "\u00dasteck\u00fd"}, "Uhersk\u00fd Brod": {"country": "Czech Republic", "subcountry": "Zl\u00edn"}, "Uhersk\u00e9 Hradi\u0161t\u011b": {"country": "Czech Republic", "subcountry": "Zl\u00edn"}, "Trutnov": {"country": "Czech Republic", "subcountry": "Kr\u00e1lov\u00e9hradeck\u00fd"}, "T\u0159inec": {"country": "Czech Republic", "subcountry": "Moravskoslezsk\u00fd"}, "T\u0159eb\u00ed\u010d": {"country": "Czech Republic", "subcountry": "Vyso\u010dina"}, "Teplice": {"country": "Czech Republic", "subcountry": "\u00dasteck\u00fd"}, "T\u00e1bor": {"country": "Czech Republic", "subcountry": "Jiho\u010desk\u00fd"}, "Svitavy": {"country": "Czech Republic", "subcountry": "Pardubick\u00fd"}, "\u0160umperk": {"country": "Czech Republic", "subcountry": "Olomouck\u00fd"}, "Strakonice": {"country": "Czech Republic", "subcountry": "Jiho\u010desk\u00fd"}, "Star\u00fd Bohum\u00edn": {"country": "Czech Republic", "subcountry": "Moravskoslezsk\u00fd"}, "Sokolov": {"country": "Czech Republic", "subcountry": "Karlovarsk\u00fd"}, "Slan\u00fd": {"country": "Czech Republic", "subcountry": "Central Bohemia"}, "Ro\u017enov Pod Radho\u0161t\u011bm": {"country": "Czech Republic", "subcountry": "Zl\u00edn"}, "Rakovn\u00edk": {"country": "Czech Republic", "subcountry": "Central Bohemia"}, "Prost\u011bjov": {"country": "Czech Republic", "subcountry": "Olomouck\u00fd"}, "Prosek": {"country": "Czech Republic", "subcountry": "Praha"}, "P\u0159\u00edbram": {"country": "Czech Republic", "subcountry": "Central Bohemia"}, "P\u0159erov": {"country": "Czech Republic", "subcountry": "Olomouck\u00fd"}, "Prague": {"country": "Czech Republic", "subcountry": "Praha"}, "Pilsen": {"country": "Czech Republic", "subcountry": "Plze\u0148sk\u00fd"}, "P\u00edsek": {"country": "Czech Republic", "subcountry": "Jiho\u010desk\u00fd"}, "Pelh\u0159imov": {"country": "Czech Republic", "subcountry": "Vyso\u010dina"}, "Pardubice": {"country": "Czech Republic", "subcountry": "Pardubick\u00fd"}, "Otrokovice": {"country": "Czech Republic", "subcountry": "Zl\u00edn"}, "Ostrov": {"country": "Russia", "subcountry": "Pskov"}, "Ostrava": {"country": "Czech Republic", "subcountry": "Moravskoslezsk\u00fd"}, "Orlov\u00e1": {"country": "Czech Republic", "subcountry": "Moravskoslezsk\u00fd"}, "Opava": {"country": "Czech Republic", "subcountry": "Moravskoslezsk\u00fd"}, "Olomouc": {"country": "Czech Republic", "subcountry": "Olomouck\u00fd"}, "Nov\u00fd Ji\u010d\u00edn": {"country": "Czech Republic", "subcountry": "Moravskoslezsk\u00fd"}, "Neratovice": {"country": "Czech Republic", "subcountry": "Central Bohemia"}, "N\u00e1chod": {"country": "Czech Republic", "subcountry": "Kr\u00e1lov\u00e9hradeck\u00fd"}, "Most": {"country": "Czech Republic", "subcountry": "\u00dasteck\u00fd"}, "Mod\u0159any": {"country": "Czech Republic", "subcountry": "Praha"}, "Mlad\u00e1 Boleslav": {"country": "Czech Republic", "subcountry": "Central Bohemia"}, "M\u011bln\u00edk": {"country": "Czech Republic", "subcountry": "Central Bohemia"}, "Louny": {"country": "Czech Republic", "subcountry": "\u00dasteck\u00fd"}, "Litv\u00ednov": {"country": "Czech Republic", "subcountry": "\u00dasteck\u00fd"}, "Litom\u011b\u0159ice": {"country": "Czech Republic", "subcountry": "\u00dasteck\u00fd"}, "Liberec": {"country": "Czech Republic", "subcountry": "Libereck\u00fd"}, "Libe\u0148": {"country": "Czech Republic", "subcountry": "Praha"}, "Let\u0148any": {"country": "Czech Republic", "subcountry": "Praha"}, "Kutn\u00e1 Hora": {"country": "Czech Republic", "subcountry": "Central Bohemia"}, "Krom\u011b\u0159\u00ed\u017e": {"country": "Czech Republic", "subcountry": "Zl\u00edn"}, "Krnov": {"country": "Czech Republic", "subcountry": "Moravskoslezsk\u00fd"}, "Kralupy Nad Vltavou": {"country": "Czech Republic", "subcountry": "Central Bohemia"}, "Kop\u0159ivnice": {"country": "Czech Republic", "subcountry": "Moravskoslezsk\u00fd"}, "Kol\u00edn": {"country": "Czech Republic", "subcountry": "Central Bohemia"}, "Klatovy": {"country": "Czech Republic", "subcountry": "Plze\u0148sk\u00fd"}, "Kl\u00e1\u0161terec Nad Oh\u0159\u00ed": {"country": "Czech Republic", "subcountry": "\u00dasteck\u00fd"}, "Kladno": {"country": "Czech Republic", "subcountry": "Central Bohemia"}, "Karvin\u00e1": {"country": "Czech Republic", "subcountry": "Moravskoslezsk\u00fd"}, "Karlovy Vary": {"country": "Czech Republic", "subcountry": "Karlovarsk\u00fd"}, "Kada\u0148": {"country": "Czech Republic", "subcountry": "\u00dasteck\u00fd"}, "Jirkov": {"country": "Czech Republic", "subcountry": "\u00dasteck\u00fd"}, "Jind\u0159ich\u016fv Hradec": {"country": "Czech Republic", "subcountry": "Jiho\u010desk\u00fd"}, "Jihlava": {"country": "Czech Republic", "subcountry": "Vyso\u010dina"}, "Ji\u010d\u00edn": {"country": "Czech Republic", "subcountry": "Kr\u00e1lov\u00e9hradeck\u00fd"}, "Jablonec Nad Nisou": {"country": "Czech Republic", "subcountry": "Libereck\u00fd"}, "Hranice": {"country": "Czech Republic", "subcountry": "Olomouck\u00fd"}, "Hradec Kr\u00e1lov\u00e9": {"country": "Czech Republic", "subcountry": "Kr\u00e1lov\u00e9hradeck\u00fd"}, "Hodon\u00edn": {"country": "Czech Republic", "subcountry": "South Moravian"}, "Havl\u00ed\u010dk\u016fv Brod": {"country": "Czech Republic", "subcountry": "Vyso\u010dina"}, "Hav\u00ed\u0159ov": {"country": "Czech Republic", "subcountry": "Moravskoslezsk\u00fd"}, "Fr\u00fddek-M\u00edstek": {"country": "Czech Republic", "subcountry": "Moravskoslezsk\u00fd"}, "D\u011b\u010d\u00edn": {"country": "Czech Republic", "subcountry": "\u00dasteck\u00fd"}, "Chrudim": {"country": "Czech Republic", "subcountry": "Pardubick\u00fd"}, "Chomutov": {"country": "Czech Republic", "subcountry": "\u00dasteck\u00fd"}, "Cheb": {"country": "Czech Republic", "subcountry": "Karlovarsk\u00fd"}, "\u010cesk\u00fd T\u011b\u0161\u00edn": {"country": "Czech Republic", "subcountry": "Moravskoslezsk\u00fd"}, "\u010cesk\u00e9 Bud\u011bjovice": {"country": "Czech Republic", "subcountry": "Jiho\u010desk\u00fd"}, "\u010cesk\u00e1 T\u0159ebov\u00e1": {"country": "Czech Republic", "subcountry": "Pardubick\u00fd"}, "\u010cesk\u00e1 L\u00edpa": {"country": "Czech Republic", "subcountry": "Libereck\u00fd"}, "Brunt\u00e1l": {"country": "Czech Republic", "subcountry": "Moravskoslezsk\u00fd"}, "Brno": {"country": "Czech Republic", "subcountry": "South Moravian"}, "B\u0159eclav": {"country": "Czech Republic", "subcountry": "South Moravian"}, "Bran\u00edk": {"country": "Czech Republic", "subcountry": "Praha"}, "Brand\u00fds Nad Labem-Star\u00e1 Boleslav": {"country": "Czech Republic", "subcountry": "Central Bohemia"}, "Bohum\u00edn": {"country": "Czech Republic", "subcountry": "Moravskoslezsk\u00fd"}, "Blansko": {"country": "Czech Republic", "subcountry": "South Moravian"}, "B\u00edlina Kyselka": {"country": "Czech Republic", "subcountry": "\u00dasteck\u00fd"}, "B\u00edlina": {"country": "Czech Republic", "subcountry": "\u00dasteck\u00fd"}, "Beroun": {"country": "Czech Republic", "subcountry": "Central Bohemia"}, "Bene\u0161ov": {"country": "Czech Republic", "subcountry": "Central Bohemia"}, "\u010cern\u00fd Most": {"country": "Czech Republic", "subcountry": "Praha"}, "Zwickau": {"country": "Germany", "subcountry": "Saxony"}, "Zweibr\u00fccken": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Zulpich": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Zossen": {"country": "Germany", "subcountry": "Brandenburg"}, "Zittau": {"country": "Germany", "subcountry": "Saxony"}, "Zirndorf": {"country": "Germany", "subcountry": "Bavaria"}, "Zerbst": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Zeitz": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Zehlendorf": {"country": "Germany", "subcountry": "Berlin"}, "Xanten": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Wurzen": {"country": "Germany", "subcountry": "Saxony"}, "W\u00fcrzburg": {"country": "Germany", "subcountry": "Bavaria"}, "W\u00fcrselen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Wuppertal": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Wunstorf": {"country": "Germany", "subcountry": "Lower Saxony"}, "W\u00fclfrath": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "W\u00f6rth Am Rhein": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Worms": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Wolfsburg": {"country": "Germany", "subcountry": "Lower Saxony"}, "Wolfratshausen": {"country": "Germany", "subcountry": "Bavaria"}, "Wolfenb\u00fcttel": {"country": "Germany", "subcountry": "Lower Saxony"}, "Wolfen": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Witzenhausen": {"country": "Germany", "subcountry": "Hesse"}, "Wittstock": {"country": "Germany", "subcountry": "Brandenburg"}, "Wittmund": {"country": "Germany", "subcountry": "Lower Saxony"}, "Wittlich": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Wittenberge": {"country": "Germany", "subcountry": "Brandenburg"}, "Wittenau": {"country": "Germany", "subcountry": "Berlin"}, "Witten": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Wismar": {"country": "Germany", "subcountry": "Mecklenburg-Vorpommern"}, "Wipperf\u00fcrth": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Winterhude": {"country": "Germany", "subcountry": "Hamburg"}, "Winsen": {"country": "Germany", "subcountry": "Lower Saxony"}, "Winnenden": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Wilnsdorf": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Wilmersdorf": {"country": "Germany", "subcountry": "Berlin"}, "Willich": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Wilhelmstadt": {"country": "Germany", "subcountry": "Berlin"}, "Wilhelmshaven": {"country": "Germany", "subcountry": "Lower Saxony"}, "Wildeshausen": {"country": "Germany", "subcountry": "Lower Saxony"}, "Wiesloch": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Wiesbaden": {"country": "Germany", "subcountry": "Hesse"}, "Wiehl": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Wetzlar": {"country": "Germany", "subcountry": "Hesse"}, "Wetter (Ruhr)": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Westerstede": {"country": "Germany", "subcountry": "Lower Saxony"}, "Westend": {"country": "Germany", "subcountry": "Berlin"}, "Wesseling": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Wesel": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Wertheim": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Wernigerode": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Werne": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Wermelskirchen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Werl": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Werdohl": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Werder": {"country": "Germany", "subcountry": "Brandenburg"}, "Werdau": {"country": "Germany", "subcountry": "Saxony"}, "Wendlingen Am Neckar": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Wenden": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Wendelstein": {"country": "Germany", "subcountry": "Bavaria"}, "Weiterstadt": {"country": "Germany", "subcountry": "Hesse"}, "Wei\u00dfwasser": {"country": "Germany", "subcountry": "Saxony"}, "Wei\u00dfenfels": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Wei\u00dfenburg In Bayern": {"country": "Germany", "subcountry": "Bavaria"}, "Weinstadt-Endersbach": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Weinheim": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Weingarten": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Weimar": {"country": "Germany", "subcountry": "Thuringia"}, "Weilheim": {"country": "Germany", "subcountry": "Bavaria"}, "Weilerswist": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Weil Der Stadt": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Weil Am Rhein": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Weiden": {"country": "Germany", "subcountry": "Bavaria"}, "Wei\u00dfensee": {"country": "Germany", "subcountry": "Berlin"}, "Wegberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Weener": {"country": "Germany", "subcountry": "Lower Saxony"}, "Wedel": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Wedding": {"country": "Germany", "subcountry": "Berlin"}, "Wassenberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Warstein": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Warendorf": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Waren": {"country": "Germany", "subcountry": "Mecklenburg-Vorpommern"}, "Wardenburg": {"country": "Germany", "subcountry": "Lower Saxony"}, "Warburg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Wangen Im Allg\u00e4u": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Wandlitz": {"country": "Germany", "subcountry": "Brandenburg"}, "Waltrop": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Walsrode": {"country": "Germany", "subcountry": "Lower Saxony"}, "Wallenhorst": {"country": "Germany", "subcountry": "Lower Saxony"}, "Waldshut-Tiengen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Waldkraiburg": {"country": "Germany", "subcountry": "Bavaria"}, "Waldkirch": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Waldbr\u00f6l": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Waiblingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Wagh\u00e4usel": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Wadgassen": {"country": "Germany", "subcountry": "Saarland"}, "Wadern": {"country": "Germany", "subcountry": "Saarland"}, "Wachtberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Vreden": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "V\u00f6lklingen": {"country": "Germany", "subcountry": "Saarland"}, "Voerde": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Vlotho": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Vilshofen": {"country": "Germany", "subcountry": "Bavaria"}, "Villingen-Schwenningen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Viersen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Viernheim": {"country": "Germany", "subcountry": "Hesse"}, "Versmold": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Verl": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Verden": {"country": "Germany", "subcountry": "Lower Saxony"}, "Velbert": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Vechta": {"country": "Germany", "subcountry": "Lower Saxony"}, "Vechelde": {"country": "Germany", "subcountry": "Lower Saxony"}, "Vaterstetten": {"country": "Germany", "subcountry": "Bavaria"}, "Varel": {"country": "Germany", "subcountry": "Lower Saxony"}, "Vaihingen An Der Enz": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Uetersen": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Uslar": {"country": "Germany", "subcountry": "Lower Saxony"}, "Unterschlei\u00dfheim": {"country": "Germany", "subcountry": "Bavaria"}, "Unterhaching": {"country": "Germany", "subcountry": "Bavaria"}, "Unterkrozingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Unna": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Ulm": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Uelzen": {"country": "Germany", "subcountry": "Lower Saxony"}, "\u00dcberlingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "\u00dcbach-Palenberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Tuttlingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "T\u00fcbingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Trossingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Troisdorf": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Trier": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Traunstein": {"country": "Germany", "subcountry": "Bavaria"}, "Traunreut": {"country": "Germany", "subcountry": "Bavaria"}, "Torgau": {"country": "Germany", "subcountry": "Saxony"}, "T\u00f6nisvorst": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Tettnang": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Templin": {"country": "Germany", "subcountry": "Brandenburg"}, "Tempelhof": {"country": "Germany", "subcountry": "Berlin"}, "Teltow": {"country": "Germany", "subcountry": "Brandenburg"}, "Telgte": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Tegel": {"country": "Germany", "subcountry": "Berlin"}, "Taunusstein": {"country": "Germany", "subcountry": "Hesse"}, "Taufkirchen": {"country": "Germany", "subcountry": "Bavaria"}, "Syke": {"country": "Germany", "subcountry": "Lower Saxony"}, "Sundern": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Sulzbach-Rosenberg": {"country": "Germany", "subcountry": "Bavaria"}, "Sulzbach": {"country": "Germany", "subcountry": "Saarland"}, "Suhl": {"country": "Germany", "subcountry": "Thuringia"}, "Stuttgart": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Stuhr": {"country": "Germany", "subcountry": "Lower Saxony"}, "Strausberg": {"country": "Germany", "subcountry": "Brandenburg"}, "Straubing": {"country": "Germany", "subcountry": "Bavaria"}, "Stralsund": {"country": "Germany", "subcountry": "Mecklenburg-Vorpommern"}, "Straelen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Stolberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Stockelsdorf": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Stockach": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Stendal": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Stellingen": {"country": "Germany", "subcountry": "Hamburg"}, "Steinhagen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Steinfurt": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Steilshoop": {"country": "Germany", "subcountry": "Hamburg"}, "Steglitz": {"country": "Germany", "subcountry": "Berlin"}, "Sta\u00dffurt": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Starnberg": {"country": "Germany", "subcountry": "Bavaria"}, "Stadtlohn": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Stadthagen": {"country": "Germany", "subcountry": "Lower Saxony"}, "Stadtallendorf": {"country": "Germany", "subcountry": "Hesse"}, "Stade": {"country": "Germany", "subcountry": "Lower Saxony"}, "Staaken": {"country": "Germany", "subcountry": "Berlin"}, "Sprockh\u00f6vel": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Springe": {"country": "Germany", "subcountry": "Lower Saxony"}, "Speyer": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Spenge": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Sonthofen": {"country": "Germany", "subcountry": "Bavaria"}, "Sonneberg": {"country": "Germany", "subcountry": "Thuringia"}, "Sondershausen": {"country": "Germany", "subcountry": "Thuringia"}, "S\u00f6mmerda": {"country": "Germany", "subcountry": "Thuringia"}, "Soltau": {"country": "Germany", "subcountry": "Lower Saxony"}, "Solingen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Soest": {"country": "Netherlands", "subcountry": "Utrecht"}, "Sinzig": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Sinsheim": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Singen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Sindelfingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Simmerath": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Sigmaringen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Siegen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Siegburg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Senftenberg": {"country": "Germany", "subcountry": "Brandenburg"}, "Senden": {"country": "Germany", "subcountry": "Bavaria"}, "Selm": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Seligenstadt": {"country": "Germany", "subcountry": "Hesse"}, "Selb": {"country": "Germany", "subcountry": "Bavaria"}, "Sehnde": {"country": "Germany", "subcountry": "Lower Saxony"}, "Seevetal": {"country": "Germany", "subcountry": "Lower Saxony"}, "Seesen": {"country": "Germany", "subcountry": "Lower Saxony"}, "Seelze": {"country": "Germany", "subcountry": "Lower Saxony"}, "Schwetzingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Schwerte": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Schwerin": {"country": "Germany", "subcountry": "Mecklenburg-Vorpommern"}, "Schwelm": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Schweinfurt": {"country": "Germany", "subcountry": "Bavaria"}, "Schwedt (Oder)": {"country": "Germany", "subcountry": "Brandenburg"}, "Schwarzenberg": {"country": "Germany", "subcountry": "Saxony"}, "Schwanewede": {"country": "Germany", "subcountry": "Lower Saxony"}, "Schwandorf In Bayern": {"country": "Germany", "subcountry": "Bavaria"}, "Schwalmtal": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Schwalmstadt": {"country": "Germany", "subcountry": "Hesse"}, "Schwalbach": {"country": "Germany", "subcountry": "Saarland"}, "Schw\u00e4bisch Hall": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Schw\u00e4bisch Gm\u00fcnd": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Schwabach": {"country": "Germany", "subcountry": "Bavaria"}, "Schrobenhausen": {"country": "Germany", "subcountry": "Bavaria"}, "Schramberg": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Schortens": {"country": "Germany", "subcountry": "Lower Saxony"}, "Schorndorf": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Schopfheim": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Sch\u00f6neberg": {"country": "Germany", "subcountry": "Berlin"}, "Sch\u00f6nebeck": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Schneverdingen": {"country": "Germany", "subcountry": "Lower Saxony"}, "Schneeberg": {"country": "Germany", "subcountry": "Saxony"}, "Schmelz": {"country": "Germany", "subcountry": "Saarland"}, "Schmargendorf": {"country": "Germany", "subcountry": "Berlin"}, "Schmallenberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Schmalkalden": {"country": "Germany", "subcountry": "Thuringia"}, "Schl\u00fcchtern": {"country": "Germany", "subcountry": "Hesse"}, "Schleswig": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Schkeuditz": {"country": "Germany", "subcountry": "Saxony"}, "Schiffweiler": {"country": "Germany", "subcountry": "Saarland"}, "Schifferstadt": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Saulgau": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Sasel": {"country": "Germany", "subcountry": "Hamburg"}, "Sarstedt": {"country": "Germany", "subcountry": "Lower Saxony"}, "Sankt Wendel": {"country": "Germany", "subcountry": "Saarland"}, "Sankt Ingbert": {"country": "Germany", "subcountry": "Saarland"}, "Sankt Augustin": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Sangerhausen": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Salzwedel": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Salzkotten": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Saarlouis": {"country": "Germany", "subcountry": "Saarland"}, "Saarbr\u00fccken": {"country": "Germany", "subcountry": "Saarland"}, "Saalfeld": {"country": "Germany", "subcountry": "Thuringia"}, "R\u00fcsselsheim": {"country": "Germany", "subcountry": "Hesse"}, "Rummelsburg": {"country": "Germany", "subcountry": "Berlin"}, "Rudow": {"country": "Germany", "subcountry": "Berlin"}, "Rudolstadt": {"country": "Germany", "subcountry": "Thuringia"}, "Rottweil": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Rottenburg": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Roth": {"country": "Germany", "subcountry": "Bavaria"}, "Rotenburg": {"country": "Germany", "subcountry": "Lower Saxony"}, "Rostock": {"country": "Germany", "subcountry": "Mecklenburg-Vorpommern"}, "R\u00f6srath": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Rosenheim": {"country": "Germany", "subcountry": "Bavaria"}, "Ronnenberg": {"country": "Germany", "subcountry": "Lower Saxony"}, "Rinteln": {"country": "Germany", "subcountry": "Lower Saxony"}, "Rietberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Riesa": {"country": "Germany", "subcountry": "Saxony"}, "Riegelsberg": {"country": "Germany", "subcountry": "Saarland"}, "Ribnitz-Damgarten": {"country": "Germany", "subcountry": "Mecklenburg-Vorpommern"}, "Rheinfelden (Baden)": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Rheine": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Rheinberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Rheinbach": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Rhede": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Rheda-Wiedenbr\u00fcck": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Reutlingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Renningen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Rendsburg": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Remscheid": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Remagen": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Reinickendorf": {"country": "Germany", "subcountry": "Berlin"}, "Reinheim": {"country": "Germany", "subcountry": "Hesse"}, "Reinbek": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Reichenbach/Vogtland": {"country": "Germany", "subcountry": "Saxony"}, "Regensburg": {"country": "Germany", "subcountry": "Bavaria"}, "Rees": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Recklinghausen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Ravensburg": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Ratingen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Rathenow": {"country": "Germany", "subcountry": "Brandenburg"}, "Ratekau": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Rastede": {"country": "Germany", "subcountry": "Lower Saxony"}, "Rastatt": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Rahden": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Radolfzell Am Bodensee": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Radevormwald": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Radebeul": {"country": "Germany", "subcountry": "Saxony"}, "Radeberg": {"country": "Germany", "subcountry": "Saxony"}, "Quickborn": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Quedlinburg": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "P\u00fcttlingen": {"country": "Germany", "subcountry": "Saarland"}, "Pulheim": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Puchheim": {"country": "Germany", "subcountry": "Bavaria"}, "Prenzlauer Berg": {"country": "Germany", "subcountry": "Berlin"}, "Prenzlau": {"country": "Germany", "subcountry": "Brandenburg"}, "Preetz": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Potsdam": {"country": "Germany", "subcountry": "Brandenburg"}, "Porta Westfalica": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Poppenb\u00fcttel": {"country": "Germany", "subcountry": "Hamburg"}, "Plettenberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Plauen": {"country": "Germany", "subcountry": "Saxony"}, "Pirna": {"country": "Germany", "subcountry": "Saxony"}, "Pirmasens": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Pinneberg": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Pfungstadt": {"country": "Germany", "subcountry": "Hesse"}, "Pfullingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Pforzheim": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Pfaffenhofen An Der Ilm": {"country": "Germany", "subcountry": "Bavaria"}, "Petershagen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Penzberg": {"country": "Germany", "subcountry": "Bavaria"}, "Peine": {"country": "Germany", "subcountry": "Lower Saxony"}, "Passau": {"country": "Germany", "subcountry": "Bavaria"}, "Pasing": {"country": "Germany", "subcountry": "Bavaria"}, "Parchim": {"country": "Germany", "subcountry": "Mecklenburg-Vorpommern"}, "Papenburg": {"country": "Germany", "subcountry": "Lower Saxony"}, "Pankow": {"country": "Germany", "subcountry": "Berlin"}, "Paderborn": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Oyten": {"country": "Germany", "subcountry": "Lower Saxony"}, "Overath": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Ottweiler": {"country": "Germany", "subcountry": "Saarland"}, "Ottobrunn": {"country": "Germany", "subcountry": "Bavaria"}, "Osterholz-Scharmbeck": {"country": "Germany", "subcountry": "Lower Saxony"}, "Osnabr\u00fcck": {"country": "Germany", "subcountry": "Lower Saxony"}, "Oschersleben": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Oschatz": {"country": "Germany", "subcountry": "Saxony"}, "Oranienburg": {"country": "Germany", "subcountry": "Brandenburg"}, "Opladen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Olsberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Olpe": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Oldenburg": {"country": "Germany", "subcountry": "Lower Saxony"}, "Olching": {"country": "Germany", "subcountry": "Bavaria"}, "\u00d6hringen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Offenburg": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Offenbach": {"country": "Germany", "subcountry": "Hesse"}, "Oerlinghausen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Oer-Erkenschwick": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Oelde": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Odenthal": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Ochtrup": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Oberursel": {"country": "Germany", "subcountry": "Hesse"}, "Obertshausen": {"country": "Germany", "subcountry": "Hesse"}, "Obersch\u00f6neweide": {"country": "Germany", "subcountry": "Berlin"}, "Ober-Ramstadt": {"country": "Germany", "subcountry": "Hesse"}, "Oberkirch": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Oberhausen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Oberasbach": {"country": "Germany", "subcountry": "Bavaria"}, "N\u00fcrtingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "N\u00fcrnberg": {"country": "Germany", "subcountry": "Bavaria"}, "N\u00fcmbrecht": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Nottuln": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Northeim": {"country": "Germany", "subcountry": "Lower Saxony"}, "N\u00f6rdlingen": {"country": "Germany", "subcountry": "Bavaria"}, "Nordhorn": {"country": "Germany", "subcountry": "Lower Saxony"}, "Nordhausen": {"country": "Germany", "subcountry": "Thuringia"}, "Norderstedt": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Nordenham": {"country": "Germany", "subcountry": "Lower Saxony"}, "Norden": {"country": "Germany", "subcountry": "Lower Saxony"}, "Nippes": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Nikolassee": {"country": "Germany", "subcountry": "Berlin"}, "Nienburg": {"country": "Germany", "subcountry": "Lower Saxony"}, "Niedersch\u00f6nhausen": {"country": "Germany", "subcountry": "Berlin"}, "Niederkr\u00fcchten": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Niederkassel": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Nieder-Ingelheim": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Nidderau": {"country": "Germany", "subcountry": "Hesse"}, "Nidda": {"country": "Germany", "subcountry": "Hesse"}, "Neu Wulmstorf": {"country": "Germany", "subcountry": "Lower Saxony"}, "Neuwied": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Neu-Ulm": {"country": "Germany", "subcountry": "Bavaria"}, "Neustrelitz": {"country": "Germany", "subcountry": "Mecklenburg-Vorpommern"}, "Neustadt In Holstein": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Neustadt Bei Coburg": {"country": "Germany", "subcountry": "Bavaria"}, "Neustadt": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Neustadt Am R\u00fcbenberge": {"country": "Germany", "subcountry": "Lower Saxony"}, "Neue Neustadt": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Neuss": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Neuruppin": {"country": "Germany", "subcountry": "Brandenburg"}, "Neunkirchen": {"country": "Germany", "subcountry": "Saarland"}, "Neum\u00fcnster": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Neumarkt In Der Oberpfalz": {"country": "Germany", "subcountry": "Bavaria"}, "Neu Isenburg": {"country": "Germany", "subcountry": "Hesse"}, "Neufahrn Bei Freising": {"country": "Germany", "subcountry": "Bavaria"}, "Neuenhagen": {"country": "Germany", "subcountry": "Brandenburg"}, "Neuburg An Der Donau": {"country": "Germany", "subcountry": "Bavaria"}, "Neubr\u00fcck": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Neubrandenburg": {"country": "Germany", "subcountry": "Mecklenburg-Vorpommern"}, "Neu-Anspach": {"country": "Germany", "subcountry": "Hesse"}, "Nettetal": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Netphen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Neckarsulm": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Naumburg": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Nauen": {"country": "Germany", "subcountry": "Brandenburg"}, "Nagold": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Munster": {"country": "United States", "subcountry": "Indiana"}, "M\u00fcnster": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Hannoversch M\u00fcnden": {"country": "Germany", "subcountry": "Lower Saxony"}, "Munich": {"country": "Germany", "subcountry": "Bavaria"}, "M\u00fcllheim": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "M\u00fclheim (Ruhr)": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "M\u00fchlheim Am Main": {"country": "Germany", "subcountry": "Hesse"}, "Stuttgart M\u00fchlhausen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "M\u00fchlhausen": {"country": "Germany", "subcountry": "Thuringia"}, "M\u00fchldorf": {"country": "Germany", "subcountry": "Bavaria"}, "M\u00fchlacker": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Much": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "M\u00f6ssingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Mosbach": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Moosburg": {"country": "Germany", "subcountry": "Bavaria"}, "Monheim Am Rhein": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "M\u00f6nchengladbach": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "M\u00f6lln": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Moers": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Moabit": {"country": "Germany", "subcountry": "Berlin"}, "Mittweida": {"country": "Germany", "subcountry": "Saxony"}, "Minden": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Michelstadt": {"country": "Germany", "subcountry": "Hesse"}, "Metzingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Mettmann": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Meschede": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Merzig": {"country": "Germany", "subcountry": "Saarland"}, "Merseburg": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Meppen": {"country": "Germany", "subcountry": "Lower Saxony"}, "Menden": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Memmingen": {"country": "Germany", "subcountry": "Bavaria"}, "Melle": {"country": "Germany", "subcountry": "Lower Saxony"}, "Meissen": {"country": "Germany", "subcountry": "Saxony"}, "Meiningen": {"country": "Germany", "subcountry": "Thuringia"}, "Meinerzhagen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Meiderich": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Meerbusch": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Meerane": {"country": "Germany", "subcountry": "Saxony"}, "Meckenheim": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Mechernich": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Mayen": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Marzahn": {"country": "Germany", "subcountry": "Berlin"}, "Marsberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Marl": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Marktredwitz": {"country": "Germany", "subcountry": "Bavaria"}, "Marktoberdorf": {"country": "Germany", "subcountry": "Bavaria"}, "Markkleeberg": {"country": "Germany", "subcountry": "Saxony"}, "M\u00e4rkisches Viertel": {"country": "Germany", "subcountry": "Berlin"}, "Marienfelde": {"country": "Germany", "subcountry": "Berlin"}, "Mariendorf": {"country": "Germany", "subcountry": "Berlin"}, "Marburg An Der Lahn": {"country": "Germany", "subcountry": "Hesse"}, "Marbach Am Neckar": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Mannheim": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Mainz": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Maintal": {"country": "Germany", "subcountry": "Hesse"}, "Mahlsdorf": {"country": "Germany", "subcountry": "Berlin"}, "Magdeburg": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "L\u00fcnen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "L\u00fcneburg": {"country": "Germany", "subcountry": "Lower Saxony"}, "Ludwigshafen Am Rhein": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Ludwigsfelde": {"country": "Germany", "subcountry": "Brandenburg"}, "Ludwigsburg": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "L\u00fcdinghausen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "L\u00fcdenscheid": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Luckenwalde": {"country": "Germany", "subcountry": "Brandenburg"}, "L\u00fcbeck": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "L\u00fcbbenau": {"country": "Germany", "subcountry": "Brandenburg"}, "L\u00fcbbecke": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Loxstedt": {"country": "Germany", "subcountry": "Lower Saxony"}, "Losheim": {"country": "Germany", "subcountry": "Saarland"}, "L\u00f6rrach": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Lohr Am Main": {"country": "Germany", "subcountry": "Bavaria"}, "Lohne": {"country": "Germany", "subcountry": "Lower Saxony"}, "L\u00f6hne": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Lohmar": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "L\u00f6bau": {"country": "Germany", "subcountry": "Saxony"}, "Lippstadt": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Lingen": {"country": "Germany", "subcountry": "Lower Saxony"}, "Lindlar": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Lindau": {"country": "Germany", "subcountry": "Bavaria"}, "Limburg An Der Lahn": {"country": "Germany", "subcountry": "Hesse"}, "Limbach-Oberfrohna": {"country": "Germany", "subcountry": "Saxony"}, "Lilienthal": {"country": "Germany", "subcountry": "Lower Saxony"}, "Lichterfelde": {"country": "Germany", "subcountry": "Berlin"}, "Lichtenrade": {"country": "Germany", "subcountry": "Berlin"}, "Lichtenfels": {"country": "Germany", "subcountry": "Bavaria"}, "Lichtenberg": {"country": "Germany", "subcountry": "Berlin"}, "Leverkusen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Leutkirch Im Allg\u00e4u": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Leopoldsh\u00f6he": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Leonberg": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Lennestadt": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Lengerich": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Lemgo": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Leipzig": {"country": "Germany", "subcountry": "Saxony"}, "Leinfelden-Echterdingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Leimen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Leichlingen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Lehrte": {"country": "Germany", "subcountry": "Lower Saxony"}, "Leer": {"country": "Germany", "subcountry": "Lower Saxony"}, "Lebach": {"country": "Germany", "subcountry": "Saarland"}, "Laupheim": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Lauf An Der Pegnitz": {"country": "Germany", "subcountry": "Bavaria"}, "Lauchhammer": {"country": "Germany", "subcountry": "Brandenburg"}, "Lankwitz": {"country": "Germany", "subcountry": "Berlin"}, "Langenhorn": {"country": "Germany", "subcountry": "Hamburg"}, "Langenhagen": {"country": "Germany", "subcountry": "Lower Saxony"}, "Langenfeld": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Langen": {"country": "Germany", "subcountry": "Hesse"}, "Landshut": {"country": "Germany", "subcountry": "Bavaria"}, "Landsberg Am Lech": {"country": "Germany", "subcountry": "Bavaria"}, "Landau In Der Pfalz": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Lampertheim": {"country": "Germany", "subcountry": "Hesse"}, "Lahr": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Lahnstein": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Lage": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Laatzen": {"country": "Germany", "subcountry": "Lower Saxony"}, "Bad Laasphe": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "K\u00fcrten": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "K\u00fcnzelsau": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "K\u00fcnzell": {"country": "Germany", "subcountry": "Hesse"}, "Kulmbach": {"country": "Germany", "subcountry": "Bavaria"}, "Kronberg": {"country": "Germany", "subcountry": "Hesse"}, "Kronach": {"country": "Germany", "subcountry": "Bavaria"}, "Kreuztal": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Kreuzberg": {"country": "Germany", "subcountry": "Berlin"}, "Kreuzau": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Krefeld": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "K\u00f6then": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Korschenbroich": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Kornwestheim": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Korntal": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Korbach": {"country": "Germany", "subcountry": "Hesse"}, "K\u00f6penick": {"country": "Germany", "subcountry": "Berlin"}, "Berlin K\u00f6penick": {"country": "Germany", "subcountry": "Berlin"}, "Konz": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Konstanz": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "K\u00f6nigs Wusterhausen": {"country": "Germany", "subcountry": "Brandenburg"}, "K\u00f6nigswinter": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "K\u00f6nigstein Im Taunus": {"country": "Germany", "subcountry": "Hesse"}, "K\u00f6nigslutter Am Elm": {"country": "Germany", "subcountry": "Lower Saxony"}, "K\u00f6nigsbrunn": {"country": "Germany", "subcountry": "Bavaria"}, "K\u00f6ln": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Kolbermoor": {"country": "Germany", "subcountry": "Bavaria"}, "Koblenz": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Kleve": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Kleinmachnow": {"country": "Germany", "subcountry": "Brandenburg"}, "Kitzingen": {"country": "Germany", "subcountry": "Bavaria"}, "Kirchlengern": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Kirchheim Unter Teck": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Kirchhain": {"country": "Germany", "subcountry": "Hesse"}, "Kierspe": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Kiel": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Kevelaer": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Kerpen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Kempten (Allg\u00e4u)": {"country": "Germany", "subcountry": "Bavaria"}, "Kempen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Kelkheim (Taunus)": {"country": "Germany", "subcountry": "Hesse"}, "Kelheim": {"country": "Germany", "subcountry": "Bavaria"}, "Kehl": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Kaulsdorf": {"country": "Germany", "subcountry": "Berlin"}, "Kaufbeuren": {"country": "Germany", "subcountry": "Bavaria"}, "Kassel": {"country": "Germany", "subcountry": "Hesse"}, "Karow": {"country": "Germany", "subcountry": "Berlin"}, "Karlstadt": {"country": "Germany", "subcountry": "Bavaria"}, "Karlsruhe": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Karlshorst": {"country": "Germany", "subcountry": "Berlin"}, "Karlsfeld": {"country": "Germany", "subcountry": "Bavaria"}, "Karben": {"country": "Germany", "subcountry": "Hesse"}, "Kamp-Lintfort": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Kamenz": {"country": "Germany", "subcountry": "Saxony"}, "Kamen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Kaltenkirchen": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Kaiserslautern": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Kaarst": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "J\u00fclich": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "J\u00fcchen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Johannisthal": {"country": "Germany", "subcountry": "Berlin"}, "Jena": {"country": "Germany", "subcountry": "Thuringia"}, "Itzehoe": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Isernhagen Farster Bauerschaft": {"country": "Germany", "subcountry": "Lower Saxony"}, "Iserlohn": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Ingolstadt": {"country": "Germany", "subcountry": "Bavaria"}, "Ilmenau": {"country": "Germany", "subcountry": "Thuringia"}, "Illingen": {"country": "Germany", "subcountry": "Saarland"}, "Illertissen": {"country": "Germany", "subcountry": "Bavaria"}, "Idstein": {"country": "Germany", "subcountry": "Hesse"}, "Idar-Oberstein": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Ibbenb\u00fcren": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Husum": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "H\u00fcrth": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "H\u00fcnfeld": {"country": "Germany", "subcountry": "Hesse"}, "Hummelsb\u00fcttel": {"country": "Germany", "subcountry": "Hamburg"}, "Humboldtkolonie": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Hude": {"country": "Germany", "subcountry": "Lower Saxony"}, "H\u00fcckeswagen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "H\u00fcckelhoven": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Hoyerswerda": {"country": "Germany", "subcountry": "Saxony"}, "H\u00f6xter": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "H\u00f6velhof": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "H\u00f6rstel": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Horb Am Neckar": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Homburg": {"country": "Germany", "subcountry": "Saarland"}, "Holzwickede": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Holzminden": {"country": "Germany", "subcountry": "Lower Saxony"}, "Holzkirchen": {"country": "Germany", "subcountry": "Bavaria"}, "Hohenstein-Ernstthal": {"country": "Germany", "subcountry": "Saxony"}, "Hohen Neuendorf": {"country": "Germany", "subcountry": "Brandenburg"}, "Hofheim Am Taunus": {"country": "Germany", "subcountry": "Hesse"}, "Hofgeismar": {"country": "Germany", "subcountry": "Hesse"}, "Hof": {"country": "Germany", "subcountry": "Bavaria"}, "Hockenheim": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Hochheim Am Main": {"country": "Germany", "subcountry": "Hesse"}, "Hochfeld": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Hille": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Hildesheim": {"country": "Germany", "subcountry": "Lower Saxony"}, "Hilden": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Hilchenbach": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Hiddenhausen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Heusweiler": {"country": "Germany", "subcountry": "Saarland"}, "Heusenstamm": {"country": "Germany", "subcountry": "Hesse"}, "Hettstedt": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Hessisch Oldendorf": {"country": "Germany", "subcountry": "Lower Saxony"}, "Herzogenrath": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Herzogenaurach": {"country": "Germany", "subcountry": "Bavaria"}, "Herten": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Herrenberg": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Herne": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Hermsdorf": {"country": "Germany", "subcountry": "Berlin"}, "Herford": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Herdecke": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Herborn": {"country": "Germany", "subcountry": "Hesse"}, "Heppenheim An Der Bergstrasse": {"country": "Germany", "subcountry": "Hesse"}, "Hennigsdorf": {"country": "Germany", "subcountry": "Brandenburg"}, "Hennef": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Hemmingen": {"country": "Germany", "subcountry": "Lower Saxony"}, "Hemer": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Helmstedt": {"country": "Germany", "subcountry": "Lower Saxony"}, "Hellersdorf": {"country": "Germany", "subcountry": "Berlin"}, "Heinsberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Heilbad Heiligenstadt": {"country": "Germany", "subcountry": "Thuringia"}, "Heiligensee": {"country": "Germany", "subcountry": "Berlin"}, "Heiligenhaus": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Heilbronn": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Heidenheim An Der Brenz": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Heidenau": {"country": "Germany", "subcountry": "Saxony"}, "Heidelberg": {"country": "South Africa", "subcountry": "Gauteng"}, "Heide": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Hechingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Hattingen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Hattersheim": {"country": "Germany", "subcountry": "Hesse"}, "Ha\u00dfloch": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Harsewinkel": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Haren": {"country": "Netherlands", "subcountry": "Groningen"}, "Harburg": {"country": "Germany", "subcountry": "Hamburg"}, "Hannover": {"country": "Germany", "subcountry": "Lower Saxony"}, "Hanau Am Main": {"country": "Germany", "subcountry": "Hesse"}, "Hamminkeln": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Hamm": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Hameln": {"country": "Germany", "subcountry": "Lower Saxony"}, "Wandsbek": {"country": "Germany", "subcountry": "Hamburg"}, "Marienthal": {"country": "Germany", "subcountry": "Hamburg"}, "Hamburg-Mitte": {"country": "Germany", "subcountry": "Hamburg"}, "Eimsb\u00fcttel": {"country": "Germany", "subcountry": "Hamburg"}, "Altona": {"country": "Germany", "subcountry": "Hamburg"}, "Hamburg": {"country": "Germany", "subcountry": "Hamburg"}, "Halver": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Haltern": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Halstenbek": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Halle (Saale)": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Haldensleben I": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Halberstadt": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Hakenfelde": {"country": "Germany", "subcountry": "Berlin"}, "Haiger": {"country": "Germany", "subcountry": "Hesse"}, "Hagen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Haar": {"country": "Germany", "subcountry": "Bavaria"}, "Haan": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "G\u00fctersloh": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "G\u00fcstrow": {"country": "Germany", "subcountry": "Mecklenburg-Vorpommern"}, "Gunzenhausen": {"country": "Germany", "subcountry": "Bavaria"}, "G\u00fcnzburg": {"country": "Germany", "subcountry": "Bavaria"}, "Gummersbach": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Guben": {"country": "Germany", "subcountry": "Brandenburg"}, "Gro\u00df-Umstadt": {"country": "Germany", "subcountry": "Hesse"}, "Gro\u00dfostheim": {"country": "Germany", "subcountry": "Bavaria"}, "Gro\u00df-Gerau": {"country": "Germany", "subcountry": "Hesse"}, "Gro\u00dfenhain": {"country": "Germany", "subcountry": "Saxony"}, "Gronau": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Gr\u00f6benzell": {"country": "Germany", "subcountry": "Bavaria"}, "Grimma": {"country": "Germany", "subcountry": "Saxony"}, "Griesheim": {"country": "Germany", "subcountry": "Hesse"}, "Grevenbroich": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Greven": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Greiz": {"country": "Germany", "subcountry": "Thuringia"}, "Greifswald": {"country": "Germany", "subcountry": "Mecklenburg-Vorpommern"}, "Grefrath": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "G\u00f6ttingen": {"country": "Germany", "subcountry": "Lower Saxony"}, "Gotha": {"country": "Germany", "subcountry": "Thuringia"}, "Goslar": {"country": "Germany", "subcountry": "Lower Saxony"}, "G\u00f6rlitz": {"country": "Germany", "subcountry": "Saxony"}, "G\u00f6ppingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Goch": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Glinde": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Glauchau": {"country": "Germany", "subcountry": "Saxony"}, "Gladbeck": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Ginsheim-Gustavsburg": {"country": "Germany", "subcountry": "Hesse"}, "Gilching": {"country": "Germany", "subcountry": "Bavaria"}, "Gifhorn": {"country": "Germany", "subcountry": "Lower Saxony"}, "Gie\u00dfen": {"country": "Germany", "subcountry": "Hesse"}, "Giengen An Der Brenz": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Gevelsberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Gesundbrunnen": {"country": "Germany", "subcountry": "Berlin"}, "Geseke": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Gescher": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Gersthofen": {"country": "Germany", "subcountry": "Bavaria"}, "Germersheim": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Germering": {"country": "Germany", "subcountry": "Bavaria"}, "Gerlingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Geretsried": {"country": "Germany", "subcountry": "Bavaria"}, "Gera": {"country": "Germany", "subcountry": "Thuringia"}, "Georgsmarienh\u00fctte": {"country": "Germany", "subcountry": "Lower Saxony"}, "Gelsenkirchen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Gelnhausen": {"country": "Germany", "subcountry": "Hesse"}, "Geldern": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Geislingen An Der Steige": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Geilenkirchen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Geesthacht": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Gauting": {"country": "Germany", "subcountry": "Bavaria"}, "Garmisch-Partenkirchen": {"country": "Germany", "subcountry": "Bavaria"}, "Garching Bei M\u00fcnchen": {"country": "Germany", "subcountry": "Bavaria"}, "Garbsen": {"country": "Germany", "subcountry": "Lower Saxony"}, "Ganderkesee": {"country": "Germany", "subcountry": "Lower Saxony"}, "Gaggenau": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "F\u00fcrth": {"country": "Germany", "subcountry": "Bavaria"}, "F\u00fcrstenwalde": {"country": "Germany", "subcountry": "Brandenburg"}, "F\u00fcrstenfeldbruck": {"country": "Germany", "subcountry": "Bavaria"}, "Fulda": {"country": "Germany", "subcountry": "Hesse"}, "Fr\u00f6ndenberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Frohnau": {"country": "Germany", "subcountry": "Berlin"}, "Friesoythe": {"country": "Germany", "subcountry": "Lower Saxony"}, "Friedrichshain": {"country": "Germany", "subcountry": "Berlin"}, "Friedrichshagen": {"country": "Germany", "subcountry": "Berlin"}, "Friedrichshafen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Friedrichsfelde": {"country": "Germany", "subcountry": "Berlin"}, "Friedrichsdorf": {"country": "Germany", "subcountry": "Hesse"}, "Friedenau": {"country": "Germany", "subcountry": "Berlin"}, "Friedberg": {"country": "Germany", "subcountry": "Bavaria"}, "Freudenstadt": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Freudenberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Freital": {"country": "Germany", "subcountry": "Saxony"}, "Freising": {"country": "Germany", "subcountry": "Bavaria"}, "Freilassing": {"country": "Germany", "subcountry": "Bavaria"}, "Freiburg": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Freiberg Am Neckar": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Freiberg": {"country": "Germany", "subcountry": "Saxony"}, "Frechen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Frankfurt Am Main": {"country": "Germany", "subcountry": "Hesse"}, "Frankfurt (Oder)": {"country": "Germany", "subcountry": "Brandenburg"}, "Frankenthal": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Frankenberg": {"country": "Germany", "subcountry": "Saxony"}, "Forst": {"country": "Germany", "subcountry": "Brandenburg"}, "Forchheim": {"country": "Germany", "subcountry": "Bavaria"}, "Fl\u00f6rsheim": {"country": "Germany", "subcountry": "Hesse"}, "Flensburg": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Finsterwalde": {"country": "Germany", "subcountry": "Brandenburg"}, "Finnentrop": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Stuttgart Feuerbach": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Fellbach": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Falkensee": {"country": "Germany", "subcountry": "Brandenburg"}, "Eutin": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Euskirchen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Ettlingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Esslingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Espelkamp": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Eschweiler": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Eschwege": {"country": "Germany", "subcountry": "Hesse"}, "Eschborn": {"country": "Germany", "subcountry": "Hesse"}, "Erwitte": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Erlangen": {"country": "Germany", "subcountry": "Bavaria"}, "Erkrath": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Erkelenz": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Erfurt": {"country": "Germany", "subcountry": "Thuringia"}, "Erftstadt": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Erding": {"country": "Germany", "subcountry": "Bavaria"}, "Eppingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Eppelborn": {"country": "Germany", "subcountry": "Saarland"}, "Ennigerloh": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Ennepetal": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Enger": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Engelskirchen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Emsdetten": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Emmerich": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Emmendingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Emden": {"country": "Germany", "subcountry": "Lower Saxony"}, "Eltville": {"country": "Germany", "subcountry": "Hesse"}, "Elsdorf": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Elmshorn": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Ellwangen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Eitorf": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Eislingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Eisenh\u00fcttenstadt": {"country": "Germany", "subcountry": "Brandenburg"}, "Eisenach": {"country": "Germany", "subcountry": "Thuringia"}, "Einbeck": {"country": "Germany", "subcountry": "Lower Saxony"}, "Eilenburg": {"country": "Germany", "subcountry": "Saxony"}, "Ehingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Eggenstein-Leopoldshafen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Edewecht": {"country": "Germany", "subcountry": "Lower Saxony"}, "Eckernf\u00f6rde": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Eberswalde": {"country": "Germany", "subcountry": "Brandenburg"}, "Ebersbach An Der Fils": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Eberbach": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "D\u00fcsseldorf": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "D\u00fcren": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "D\u00fclmen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Duisburg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Duderstadt": {"country": "Germany", "subcountry": "Lower Saxony"}, "Dresden": {"country": "Germany", "subcountry": "Saxony"}, "Drensteinfurt": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Dreieich": {"country": "Germany", "subcountry": "Hesse"}, "Dortmund": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Dorsten": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Dormagen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Donauw\u00f6rth": {"country": "Germany", "subcountry": "Bavaria"}, "Donaueschingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "D\u00f6beln": {"country": "Germany", "subcountry": "Saxony"}, "Ditzingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Dinslaken": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Dingolfing": {"country": "Germany", "subcountry": "Bavaria"}, "Dillingen An Der Donau": {"country": "Germany", "subcountry": "Bavaria"}, "Dillingen": {"country": "Germany", "subcountry": "Saarland"}, "Dillenburg": {"country": "Germany", "subcountry": "Hesse"}, "Dietzenbach": {"country": "Germany", "subcountry": "Hesse"}, "Diepholz": {"country": "Germany", "subcountry": "Lower Saxony"}, "Dieburg": {"country": "Germany", "subcountry": "Hesse"}, "Deutz": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Detmold": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Dessau": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Delmenhorst": {"country": "Germany", "subcountry": "Lower Saxony"}, "Delitzsch": {"country": "Germany", "subcountry": "Saxony"}, "Delbr\u00fcck": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Deggendorf": {"country": "Germany", "subcountry": "Bavaria"}, "Datteln": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Darmstadt": {"country": "Germany", "subcountry": "Hesse"}, "Damme": {"country": "Germany", "subcountry": "Lower Saxony"}, "Dahlem": {"country": "Germany", "subcountry": "Berlin"}, "Dachau": {"country": "Germany", "subcountry": "Bavaria"}, "Cuxhaven": {"country": "Germany", "subcountry": "Lower Saxony"}, "Crimmitschau": {"country": "Germany", "subcountry": "Saxony"}, "Crailsheim": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Cottbus": {"country": "Germany", "subcountry": "Brandenburg"}, "Coswig": {"country": "Germany", "subcountry": "Saxony"}, "Coesfeld": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Cloppenburg": {"country": "Germany", "subcountry": "Lower Saxony"}, "Clausthal-Zellerfeld": {"country": "Germany", "subcountry": "Lower Saxony"}, "Chemnitz": {"country": "Germany", "subcountry": "Saxony"}, "Charlottenburg": {"country": "Germany", "subcountry": "Berlin"}, "Cham": {"country": "Germany", "subcountry": "Bavaria"}, "Celle": {"country": "Germany", "subcountry": "Lower Saxony"}, "Castrop-Rauxel": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Calw": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Buxtehude": {"country": "Germany", "subcountry": "Lower Saxony"}, "Butzbach": {"country": "Germany", "subcountry": "Hesse"}, "B\u00fcrstadt": {"country": "Germany", "subcountry": "Hesse"}, "Burscheid": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Burghausen": {"country": "Germany", "subcountry": "Bavaria"}, "Burgdorf": {"country": "Germany", "subcountry": "Lower Saxony"}, "Burg Bei Magdeburg": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "B\u00fcren": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "B\u00fcnde": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "B\u00fchl": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "B\u00fcdingen": {"country": "Germany", "subcountry": "Hesse"}, "Buckow": {"country": "Germany", "subcountry": "Berlin"}, "B\u00fcckeburg": {"country": "Germany", "subcountry": "Lower Saxony"}, "Buchholz In Der Nordheide": {"country": "Germany", "subcountry": "Lower Saxony"}, "Franz\u00f6sisch Buchholz": {"country": "Germany", "subcountry": "Berlin"}, "Buchen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Br\u00fchl": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Br\u00fcggen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bruckm\u00fchl": {"country": "Germany", "subcountry": "Bavaria"}, "Bruchsal": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Bruchk\u00f6bel": {"country": "Germany", "subcountry": "Hesse"}, "Britz": {"country": "Germany", "subcountry": "Berlin"}, "Brilon": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bretten": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Bremerv\u00f6rde": {"country": "Germany", "subcountry": "Lower Saxony"}, "Bremerhaven": {"country": "Germany", "subcountry": "Bremen"}, "Bremen": {"country": "Germany", "subcountry": "Bremen"}, "Braunschweig": {"country": "Germany", "subcountry": "Lower Saxony"}, "Brandenburg An Der Havel": {"country": "Germany", "subcountry": "Brandenburg"}, "Bramsche": {"country": "Germany", "subcountry": "Lower Saxony"}, "Brakel": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Brake (Unterweser)": {"country": "Germany", "subcountry": "Lower Saxony"}, "Brackenheim": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Bottrop": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bornheim": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Borna": {"country": "Germany", "subcountry": "Saxony"}, "Borken": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Boppard": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Bonn": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "B\u00f6nen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bogenhausen": {"country": "Germany", "subcountry": "Bavaria"}, "Bochum": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bocholt": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "B\u00f6blingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Bobingen": {"country": "Germany", "subcountry": "Bavaria"}, "Blomberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Blieskastel": {"country": "Germany", "subcountry": "Saarland"}, "Blankenburg": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Bitterfeld-Wolfen": {"country": "Germany", "subcountry": "Saxony"}, "Bingen Am Rhein": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Bietigheim-Bissingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Biesdorf": {"country": "Germany", "subcountry": "Berlin"}, "Bielefeld": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Biberach An Der Ri\u00df": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Bexbach": {"country": "Germany", "subcountry": "Saarland"}, "Beverungen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bernburg": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Bernau Bei Berlin": {"country": "Germany", "subcountry": "Brandenburg"}, "Berlin": {"country": "Germany", "subcountry": "Berlin"}, "Bergneustadt": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bergkamen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bergisch Gladbach": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bergheim": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bensheim": {"country": "Germany", "subcountry": "Hesse"}, "Bendorf": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Bedburg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Beckum": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Beckingen": {"country": "Germany", "subcountry": "Saarland"}, "Bayreuth": {"country": "Germany", "subcountry": "Bavaria"}, "Bautzen": {"country": "Germany", "subcountry": "Saxony"}, "Baunatal": {"country": "Germany", "subcountry": "Hesse"}, "Baumschulenweg": {"country": "Germany", "subcountry": "Berlin"}, "Bassum": {"country": "Germany", "subcountry": "Lower Saxony"}, "Bamberg": {"country": "Germany", "subcountry": "Bavaria"}, "Balingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Baiersbronn": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Baesweiler": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bad Zwischenahn": {"country": "Germany", "subcountry": "Lower Saxony"}, "Bad Wildungen": {"country": "Germany", "subcountry": "Hesse"}, "Bad Waldsee": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Bad Vilbel": {"country": "Germany", "subcountry": "Hesse"}, "Bad T\u00f6lz": {"country": "Germany", "subcountry": "Bavaria"}, "Bad Soden Am Taunus": {"country": "Germany", "subcountry": "Hesse"}, "Bad Segeberg": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Bad Schwartau": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Bad Salzungen": {"country": "Germany", "subcountry": "Thuringia"}, "Bad Salzuflen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bad S\u00e4ckingen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Bad Reichenhall": {"country": "Germany", "subcountry": "Bavaria"}, "Bad Rappenau": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Bad Pyrmont": {"country": "Germany", "subcountry": "Lower Saxony"}, "Bad Oldesloe": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Bad Oeynhausen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bad Neustadt An Der Saale": {"country": "Germany", "subcountry": "Bavaria"}, "Bad Neuenahr-Ahrweiler": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Bad Nauheim": {"country": "Germany", "subcountry": "Hesse"}, "Bad M\u00fcnstereifel": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bad M\u00fcnder Am Deister": {"country": "Germany", "subcountry": "Lower Saxony"}, "Bad Mergentheim": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Bad Lippspringe": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bad Langensalza": {"country": "Germany", "subcountry": "Thuringia"}, "Bad Kreuznach": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Bad Kissingen": {"country": "Germany", "subcountry": "Bavaria"}, "Bad Honnef": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bad Homburg Vor Der H\u00f6he": {"country": "Germany", "subcountry": "Hesse"}, "Bad Hersfeld": {"country": "Germany", "subcountry": "Hesse"}, "Bad Harzburg": {"country": "Germany", "subcountry": "Lower Saxony"}, "Bad Essen": {"country": "Germany", "subcountry": "Lower Saxony"}, "Baden-Baden": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Bad D\u00fcrkheim": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Bad Driburg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bad Berleburg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bad Bentheim": {"country": "Germany", "subcountry": "Lower Saxony"}, "Bad Aibling": {"country": "Germany", "subcountry": "Bavaria"}, "Backnang": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Babenhausen": {"country": "Germany", "subcountry": "Hesse"}, "Aurich": {"country": "Germany", "subcountry": "Lower Saxony"}, "Augsburg": {"country": "Germany", "subcountry": "Bavaria"}, "Auerbach": {"country": "Germany", "subcountry": "Saxony"}, "Aue": {"country": "Germany", "subcountry": "Saxony"}, "Attendorn": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Aschersleben": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Ascheberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Aschaffenburg": {"country": "Germany", "subcountry": "Bavaria"}, "Bad Arolsen": {"country": "Germany", "subcountry": "Hesse"}, "Arnstadt": {"country": "Germany", "subcountry": "Thuringia"}, "Arnsberg": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Apolda": {"country": "Germany", "subcountry": "Thuringia"}, "Ansbach": {"country": "Germany", "subcountry": "Bavaria"}, "Annaberg-Buchholz": {"country": "Germany", "subcountry": "Saxony"}, "Angerm\u00fcnde": {"country": "Germany", "subcountry": "Brandenburg"}, "Andernach": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Amberg": {"country": "Germany", "subcountry": "Bavaria"}, "Alzey": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Alzenau In Unterfranken": {"country": "Germany", "subcountry": "Bavaria"}, "Altglienicke": {"country": "Germany", "subcountry": "Berlin"}, "Altenburg": {"country": "Germany", "subcountry": "Thuringia"}, "Altena": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Altdorf": {"country": "Germany", "subcountry": "Bavaria"}, "Alsfeld": {"country": "Germany", "subcountry": "Hesse"}, "Alsdorf": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Alfter": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Alfeld": {"country": "Germany", "subcountry": "Lower Saxony"}, "Albstadt": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Aichach": {"country": "Germany", "subcountry": "Bavaria"}, "Ahrensburg": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Ahlen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Ahaus": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Adlershof": {"country": "Germany", "subcountry": "Berlin"}, "Achim": {"country": "Germany", "subcountry": "Lower Saxony"}, "Achern": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Aalen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Vellmar": {"country": "Germany", "subcountry": "Hesse"}, "Henstedt-Ulzburg": {"country": "Germany", "subcountry": "Schleswig-Holstein"}, "Aachen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "M\u00f6rfelden-Walldorf": {"country": "Germany", "subcountry": "Hesse"}, "Riedstadt": {"country": "Germany", "subcountry": "Hesse"}, "Lauda-K\u00f6nigshofen": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Filderstadt": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Ostfildern": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Rodgau": {"country": "Germany", "subcountry": "Hesse"}, "Gropiusstadt": {"country": "Germany", "subcountry": "Berlin"}, "Seeheim-Jugenheim": {"country": "Germany", "subcountry": "Hesse"}, "Charlottenburg-Nord": {"country": "Germany", "subcountry": "Berlin"}, "Mitte": {"country": "Germany", "subcountry": "Berlin"}, "Spremberg": {"country": "Germany", "subcountry": "Brandenburg"}, "Rheinstetten": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Altstadt Sud": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Altstadt Nord": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Neuehrenfeld": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Bilderstoeckchen": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Stuttgart-Ost": {"country": "Germany", "subcountry": "Baden-W\u00fcrttemberg"}, "Bochum-Hordel": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "St. Pauli": {"country": "Germany", "subcountry": "Hamburg"}, "Eidelstedt": {"country": "Germany", "subcountry": "Hamburg"}, "Halle Neustadt": {"country": "Germany", "subcountry": "Saxony-Anhalt"}, "Bergedorf": {"country": "Germany", "subcountry": "Hamburg"}, "Spandau": {"country": "Germany", "subcountry": "Berlin"}, "Berlin Sch\u00f6neberg": {"country": "Germany", "subcountry": "Berlin"}, "Berlin Treptow": {"country": "Germany", "subcountry": "Berlin"}, "Niederrad": {"country": "Germany", "subcountry": "Hesse"}, "Haselbachtal": {"country": "Germany", "subcountry": "Saxony"}, "Barmbek-Nord": {"country": "Germany", "subcountry": "Hamburg"}, "Farmsen-Berne": {"country": "Germany", "subcountry": "Hamburg"}, "Falkenhagener Feld": {"country": "Germany", "subcountry": "Berlin"}, "Neu-Hohensch\u00f6nhausen": {"country": "Germany", "subcountry": "Berlin"}, "Alt-Hohensch\u00f6nhausen": {"country": "Germany", "subcountry": "Berlin"}, "Fennpfuhl": {"country": "Germany", "subcountry": "Berlin"}, "Hamburg-Nord": {"country": "Germany", "subcountry": "Hamburg"}, "Burg Unter-Falkenstein": {"country": "Germany", "subcountry": "Bavaria"}, "Neustadt/Nord": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Neustadt/S\u00fcd": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Kalk": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "M\u00fclheim": {"country": "Germany", "subcountry": "North Rhine-Westphalia"}, "Gartenstadt": {"country": "Germany", "subcountry": "Rheinland-Pfalz"}, "Tadjoura": {"country": "Djibouti", "subcountry": "Tadjourah"}, "Obock": {"country": "Djibouti", "subcountry": "Obock"}, "Djibouti": {"country": "Djibouti", "subcountry": "Djibouti"}, "\u1e0e\u00e2nan": {"country": "Djibouti", "subcountry": "Ali Sabieh"}, "'Ali Sabieh": {"country": "Djibouti", "subcountry": "Ali Sabieh"}, "Viborg": {"country": "Denmark", "subcountry": "Central Jutland"}, "Vejle": {"country": "Denmark", "subcountry": "South Denmark"}, "Vanl\u00f8se": {"country": "Denmark", "subcountry": "Capital Region"}, "Taastrup": {"country": "Denmark", "subcountry": "Capital Region"}, "Svendborg": {"country": "Denmark", "subcountry": "South Denmark"}, "Stenl\u00f8se": {"country": "Denmark", "subcountry": "Capital Region"}, "S\u00f8nderborg": {"country": "Denmark", "subcountry": "South Denmark"}, "Slagelse": {"country": "Denmark", "subcountry": "Zealand"}, "Skive": {"country": "Denmark", "subcountry": "Central Jutland"}, "Silkeborg": {"country": "Denmark", "subcountry": "Central Jutland"}, "Roskilde": {"country": "Denmark", "subcountry": "Zealand"}, "R\u00f8dovre": {"country": "Denmark", "subcountry": "Capital Region"}, "Ringsted": {"country": "Denmark", "subcountry": "Zealand"}, "Randers": {"country": "Denmark", "subcountry": "Central Jutland"}, "Odense": {"country": "Denmark", "subcountry": "South Denmark"}, "Nyk\u00f8bing Falster": {"country": "Denmark", "subcountry": "Zealand"}, "Nyborg": {"country": "Denmark", "subcountry": "South Denmark"}, "N\u00e6stved": {"country": "Denmark", "subcountry": "Zealand"}, "N\u00f8rresundby": {"country": "Denmark", "subcountry": "North Denmark"}, "Liller\u00f8d": {"country": "Denmark", "subcountry": "Capital Region"}, "Kors\u00f8r": {"country": "Denmark", "subcountry": "Zealand"}, "K\u00f8ge": {"country": "Denmark", "subcountry": "Zealand"}, "Copenhagen": {"country": "Denmark", "subcountry": "Capital Region"}, "Kolding": {"country": "Denmark", "subcountry": "South Denmark"}, "Kalundborg": {"country": "Denmark", "subcountry": "Zealand"}, "Ish\u00f8j": {"country": "Denmark", "subcountry": "Capital Region"}, "Hvidovre": {"country": "Denmark", "subcountry": "Capital Region"}, "Horsens": {"country": "Denmark", "subcountry": "Central Jutland"}, "H\u00f8rsholm": {"country": "Denmark", "subcountry": "Capital Region"}, "Holstebro": {"country": "Denmark", "subcountry": "Central Jutland"}, "Holb\u00e6k": {"country": "Denmark", "subcountry": "Zealand"}, "Hj\u00f8rring": {"country": "Denmark", "subcountry": "North Denmark"}, "Hiller\u00f8d": {"country": "Denmark", "subcountry": "Capital Region"}, "Herning": {"country": "Denmark", "subcountry": "Central Jutland"}, "Helsing\u00f8r": {"country": "Denmark", "subcountry": "Capital Region"}, "Haderslev": {"country": "Denmark", "subcountry": "South Denmark"}, "Greve": {"country": "Denmark", "subcountry": "Zealand"}, "Glostrup": {"country": "Denmark", "subcountry": "Capital Region"}, "Frederikshavn": {"country": "Denmark", "subcountry": "North Denmark"}, "Frederiksberg": {"country": "Denmark", "subcountry": "Capital Region"}, "Fredericia": {"country": "Denmark", "subcountry": "South Denmark"}, "Farum": {"country": "Denmark", "subcountry": "Capital Region"}, "Esbjerg": {"country": "Denmark", "subcountry": "South Denmark"}, "Charlottenlund": {"country": "Denmark", "subcountry": "Capital Region"}, "Birker\u00f8d": {"country": "Denmark", "subcountry": "Capital Region"}, "Ballerup": {"country": "Denmark", "subcountry": "Capital Region"}, "\u00c5rhus": {"country": "Denmark", "subcountry": "Central Jutland"}, "Aalborg": {"country": "Denmark", "subcountry": "North Denmark"}, "Albertslund": {"country": "Denmark", "subcountry": "Capital Region"}, "Aabenraa": {"country": "Denmark", "subcountry": "South Denmark"}, "Roseau": {"country": "Dominica", "subcountry": "Saint George"}, "Villa Francisca": {"country": "Dominican Republic", "subcountry": "Nacional"}, "Villa Consuelo": {"country": "Dominican Republic", "subcountry": "Nacional"}, "Villa Bison\u00f3": {"country": "Dominican Republic", "subcountry": "Santiago"}, "Villa Altagracia": {"country": "Dominican Republic", "subcountry": "San Crist\u00f3bal"}, "Tamboril": {"country": "Dominican Republic", "subcountry": "Santiago"}, "Santiago De Los Caballeros": {"country": "Dominican Republic", "subcountry": "Santiago"}, "Santa Cruz De El Seibo": {"country": "Dominican Republic", "subcountry": "El Se\u00edbo"}, "Santa Cruz De Barahona": {"country": "Dominican Republic", "subcountry": "Barahona"}, "San Pedro De Macor\u00eds": {"country": "Dominican Republic", "subcountry": "San Pedro de Macor\u00eds"}, "San Juan De La Maguana": {"country": "Dominican Republic", "subcountry": "San Juan"}, "San Jos\u00e9 De Ocoa": {"country": "Dominican Republic", "subcountry": "San Jos\u00e9 de Ocoa"}, "San Francisco De Macor\u00eds": {"country": "Dominican Republic", "subcountry": "Duarte"}, "San Fernando De Monte Cristi": {"country": "Dominican Republic", "subcountry": "Monte Cristi"}, "Puerto Plata": {"country": "Dominican Republic", "subcountry": "Puerto Plata"}, "Salvale\u00f3n De Hig\u00fcey": {"country": "Dominican Republic", "subcountry": "La Altagracia"}, "Salcedo": {"country": "Dominican Republic", "subcountry": "Hermanas Mirabal"}, "Sabana Grande De Boy\u00e1": {"country": "Dominican Republic", "subcountry": "Monte Plata"}, "R\u00edo Grande": {"country": "Mexico", "subcountry": "Zacatecas"}, "Quisqueya": {"country": "Dominican Republic", "subcountry": "San Pedro de Macor\u00eds"}, "Punta Cana": {"country": "Dominican Republic", "subcountry": "La Altagracia"}, "Neiba": {"country": "Dominican Republic", "subcountry": "Baoruco"}, "Nagua": {"country": "Dominican Republic", "subcountry": "Mar\u00eda Trinidad S\u00e1nchez"}, "Monte Plata": {"country": "Dominican Republic", "subcountry": "Monte Plata"}, "Moca": {"country": "Dominican Republic", "subcountry": "Espaillat"}, "Mao": {"country": "Chad", "subcountry": "Kanem"}, "Las Matas De Farf\u00e1n": {"country": "Dominican Republic", "subcountry": "San Juan"}, "La Romana": {"country": "Dominican Republic", "subcountry": "La Romana"}, "Jarabacoa": {"country": "Dominican Republic", "subcountry": "La Vega"}, "Hato Mayor Del Rey": {"country": "Dominican Republic", "subcountry": "Hato Mayor"}, "Dajab\u00f3n": {"country": "Dominican Republic", "subcountry": "Dajab\u00f3n"}, "Cotu\u00ed": {"country": "Dominican Republic", "subcountry": "S\u00e1nchez Ram\u00edrez"}, "Constanza": {"country": "Dominican Republic", "subcountry": "La Vega"}, "Concepci\u00f3n De La Vega": {"country": "Dominican Republic", "subcountry": "La Vega"}, "Ciudad Nueva": {"country": "Dominican Republic", "subcountry": "Nacional"}, "Bonao": {"country": "Dominican Republic", "subcountry": "Monse\u00f1or Nouel"}, "Boca Chica": {"country": "Dominican Republic", "subcountry": "Santo Domingo"}, "San Crist\u00f3bal": {"country": "Venezuela", "subcountry": "T\u00e1chira"}, "Bayaguana": {"country": "Dominican Republic", "subcountry": "Monte Plata"}, "Ban\u00ed": {"country": "Dominican Republic", "subcountry": "Peravia"}, "Bajos De Haina": {"country": "Dominican Republic", "subcountry": "San Crist\u00f3bal"}, "Azua": {"country": "Dominican Republic", "subcountry": "Azua"}, "Santo Domingo Oeste": {"country": "Dominican Republic", "subcountry": "Santo Domingo"}, "Boumerdas": {"country": "Algeria", "subcountry": "Boumerdes"}, "Zeribet El Oued": {"country": "Algeria", "subcountry": "Biskra"}, "Zeralda": {"country": "Algeria", "subcountry": "Tipaza"}, "Zemoura": {"country": "Algeria", "subcountry": "Relizane"}, "Touggourt": {"country": "Algeria", "subcountry": "Ouargla"}, "Tolga": {"country": "Algeria", "subcountry": "Biskra"}, "Tlemcen": {"country": "Algeria", "subcountry": "Tlemcen"}, "Tizi Rached": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "Tizi Ouzou": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "Tizi-N-Tleta": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "Tizi Gheniff": {"country": "Algeria", "subcountry": "Boumerdes"}, "Tissemsilt": {"country": "Algeria", "subcountry": "Tissemsilt"}, "Tirmitine": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "Tipasa": {"country": "Algeria", "subcountry": "Tipaza"}, "Tindouf": {"country": "Algeria", "subcountry": "Tindouf"}, "Timizart": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "Timimoun": {"country": "Algeria", "subcountry": "Adrar"}, "El Hed": {"country": "Algeria", "subcountry": "Beja\u00efa"}, "Tiaret": {"country": "Algeria", "subcountry": "Tiaret"}, "Theniet El Had": {"country": "Algeria", "subcountry": "A\u00efn Defla"}, "Thenia": {"country": "Algeria", "subcountry": "Boumerdes"}, "Telerghma": {"country": "Algeria", "subcountry": "Mila"}, "T\u00e9bessa": {"country": "Algeria", "subcountry": "T\u00e9bessa"}, "Tebesbest": {"country": "Algeria", "subcountry": "Ouargla"}, "Tazoult-Lambese": {"country": "Algeria", "subcountry": "Batna"}, "Tamanrasset": {"country": "Algeria", "subcountry": "Tamanghasset"}, "Tamalous": {"country": "Algeria", "subcountry": "Skikda"}, "Tadma\u00eft": {"country": "Algeria", "subcountry": "Boumerdes"}, "Sour El Ghozlane": {"country": "Algeria", "subcountry": "Bouira"}, "Souma": {"country": "Algeria", "subcountry": "Blida"}, "Lardjem": {"country": "Algeria", "subcountry": "Tissemsilt"}, "Souk Ahras": {"country": "Algeria", "subcountry": "Souk Ahras"}, "Sougueur": {"country": "Algeria", "subcountry": "Tiaret"}, "Skikda": {"country": "Algeria", "subcountry": "Skikda"}, "Sig": {"country": "Algeria", "subcountry": "Mascara"}, "Sidi Okba": {"country": "Algeria", "subcountry": "Biskra"}, "Sidi Moussa": {"country": "Algeria", "subcountry": "Blida"}, "Sidi M\u00e9rouane": {"country": "Algeria", "subcountry": "Mila"}, "Sidi Khaled": {"country": "Algeria", "subcountry": "Biskra"}, "Sidi Ech Chahmi": {"country": "Algeria", "subcountry": "Oran"}, "Sidi Bel Abb\u00e8s": {"country": "Algeria", "subcountry": "Sidi Bel Abb\u00e8s"}, "Sidi Amrane": {"country": "Algeria", "subcountry": "Ouargla"}, "Sidi Akkacha": {"country": "Algeria", "subcountry": "Chlef"}, "Sidi A\u00efssa": {"country": "Algeria", "subcountry": "M\u02bcsila"}, "Sidi Abdelli": {"country": "Algeria", "subcountry": "Tlemcen"}, "Sfizef": {"country": "Algeria", "subcountry": "Sidi Bel Abb\u00e8s"}, "S\u00e9tif": {"country": "Algeria", "subcountry": "S\u00e9tif"}, "Sedrata": {"country": "Algeria", "subcountry": "Souk Ahras"}, "Seddouk": {"country": "Algeria", "subcountry": "Beja\u00efa"}, "Sebdou": {"country": "Algeria", "subcountry": "Tlemcen"}, "Saoula": {"country": "Algeria", "subcountry": "Tipaza"}, "Salah Bey": {"country": "Algeria", "subcountry": "S\u00e9tif"}, "Sa\u00efda": {"country": "Algeria", "subcountry": "Sa\u00efda"}, "Rouissat": {"country": "Algeria", "subcountry": "Ouargla"}, "Rouiba": {"country": "Algeria", "subcountry": "Alger"}, "Rouached": {"country": "Algeria", "subcountry": "Mila"}, "Robbah": {"country": "Algeria", "subcountry": "El Oued"}, "Remchi": {"country": "Algeria", "subcountry": "Tlemcen"}, "Relizane": {"country": "Algeria", "subcountry": "Relizane"}, "Reguiba": {"country": "Algeria", "subcountry": "El Oued"}, "Regha\u00efa": {"country": "Algeria", "subcountry": "Boumerdes"}, "Reggane": {"country": "Algeria", "subcountry": "Adrar"}, "R\u00e2s El Oued": {"country": "Algeria", "subcountry": "Bordj Bou Arr\u00e9ridj"}, "R\u00e2s El A\u00efoun": {"country": "Algeria", "subcountry": "Batna"}, "Oum El Bouaghi": {"country": "Algeria", "subcountry": "Oum el Bouaghi"}, "Ouled Mimoun": {"country": "Algeria", "subcountry": "Tlemcen"}, "Oued Sly": {"country": "Algeria", "subcountry": "Chlef"}, "Oued Rhiou": {"country": "Algeria", "subcountry": "Relizane"}, "Oued Fodda": {"country": "Algeria", "subcountry": "Chlef"}, "Oued El Alleug": {"country": "Algeria", "subcountry": "Tipaza"}, "Oued El Abtal": {"country": "Algeria", "subcountry": "Mascara"}, "Ouargla": {"country": "Algeria", "subcountry": "Ouargla"}, "Oran": {"country": "Algeria", "subcountry": "Oran"}, "Nedroma": {"country": "Algeria", "subcountry": "Tlemcen"}, "Naciria": {"country": "Algeria", "subcountry": "Boumerdes"}, "M\u2019Sila": {"country": "Algeria", "subcountry": "M\u02bcsila"}, "Mouza\u00efa": {"country": "Algeria", "subcountry": "Tipaza"}, "Mostaganem": {"country": "Algeria", "subcountry": "Mostaganem"}, "Mila": {"country": "Algeria", "subcountry": "Mila"}, "Metlili Chaamba": {"country": "Algeria", "subcountry": "Gharda\u00efa"}, "Messaad": {"country": "Algeria", "subcountry": "Djelfa"}, "Meskiana": {"country": "Algeria", "subcountry": "Oum el Bouaghi"}, "Mers El Kebir": {"country": "Algeria", "subcountry": "Oran"}, "Merouana": {"country": "Algeria", "subcountry": "Batna"}, "Melouza": {"country": "Algeria", "subcountry": "Bordj Bou Arr\u00e9ridj"}, "Mekla": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "Mehdia": {"country": "Algeria", "subcountry": "Tiaret"}, "Megarine": {"country": "Algeria", "subcountry": "Ouargla"}, "Meftah": {"country": "Algeria", "subcountry": "Blida"}, "M\u00e9d\u00e9a": {"country": "Algeria", "subcountry": "M\u00e9d\u00e9a"}, "Mazouna": {"country": "Algeria", "subcountry": "Relizane"}, "Mascara": {"country": "Algeria", "subcountry": "Mascara"}, "Mansourah": {"country": "Algeria", "subcountry": "Bordj Bou Arr\u00e9ridj"}, "Manso\u00fbra": {"country": "Algeria", "subcountry": "Tlemcen"}, "Makouda": {"country": "Algeria", "subcountry": "Boumerdes"}, "L\u2019Arbaa Na\u00eft Irathen": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "Larba\u00e2": {"country": "Algeria", "subcountry": "Batna"}, "Lakhdaria": {"country": "Algeria", "subcountry": "Bouira"}, "Laghouat": {"country": "Algeria", "subcountry": "Laghouat"}, "Ksar El Boukhari": {"country": "Algeria", "subcountry": "M\u00e9d\u00e9a"}, "Ksar Chellala": {"country": "Algeria", "subcountry": "Tiaret"}, "Kolea": {"country": "Algeria", "subcountry": "Tipaza"}, "Khenchela": {"country": "Algeria", "subcountry": "Khenchela"}, "Khemis Miliana": {"country": "Algeria", "subcountry": "A\u00efn Defla"}, "Khemis El Khechna": {"country": "Algeria", "subcountry": "Boumerdes"}, "Kerkera": {"country": "Algeria", "subcountry": "Skikda"}, "Jijel": {"country": "Algeria", "subcountry": "Jijel"}, "Djidiouia": {"country": "Algeria", "subcountry": "Relizane"}, "Isser": {"country": "Algeria", "subcountry": "Boumerdes"}, "I-N-Salah": {"country": "Algeria", "subcountry": "Tamanghasset"}, "Ighram": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "Hennaya": {"country": "Algeria", "subcountry": "Tlemcen"}, "H\u00e9liopolis": {"country": "Algeria", "subcountry": "Guelma"}, "Hassi Messaoud": {"country": "Algeria", "subcountry": "Ouargla"}, "Hammamet": {"country": "Tunisia", "subcountry": "N\u0101bul"}, "Hammam Bou Hadjar": {"country": "Algeria", "subcountry": "A\u00efn Temouchent"}, "Hamma Bouziane": {"country": "Algeria", "subcountry": "Constantine"}, "Hadjout": {"country": "Algeria", "subcountry": "Tipaza"}, "Guelma": {"country": "Algeria", "subcountry": "Guelma"}, "Gharda\u00efa": {"country": "Algeria", "subcountry": "Gharda\u00efa"}, "Frenda": {"country": "Algeria", "subcountry": "Tiaret"}, "Freha": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "Feraoun": {"country": "Algeria", "subcountry": "Beja\u00efa"}, "Es Senia": {"country": "Algeria", "subcountry": "Oran"}, "El Tarf": {"country": "Algeria", "subcountry": "El Tarf"}, "El Oued": {"country": "Algeria", "subcountry": "El Oued"}, "El Malah": {"country": "Algeria", "subcountry": "A\u00efn Temouchent"}, "El Kseur": {"country": "Algeria", "subcountry": "Beja\u00efa"}, "El Khroub": {"country": "Algeria", "subcountry": "Constantine"}, "El Kala": {"country": "Algeria", "subcountry": "El Tarf"}, "El Idrissia": {"country": "Algeria", "subcountry": "Djelfa"}, "El Hadjira": {"country": "Algeria", "subcountry": "Ouargla"}, "El Hadjar": {"country": "Algeria", "subcountry": "Annaba"}, "El Eulma": {"country": "Algeria", "subcountry": "S\u00e9tif"}, "El Bayadh": {"country": "Algeria", "subcountry": "El Bayadh"}, "El Attaf": {"country": "Algeria", "subcountry": "A\u00efn Defla"}, "Chlef": {"country": "Algeria", "subcountry": "Chlef"}, "El Aouinet": {"country": "Algeria", "subcountry": "Oum el Bouaghi"}, "El Amria": {"country": "Algeria", "subcountry": "A\u00efn Temouchent"}, "El Affroun": {"country": "Algeria", "subcountry": "Tipaza"}, "El Achir": {"country": "Algeria", "subcountry": "Bordj Bou Arr\u00e9ridj"}, "El Abiodh Sidi Cheikh": {"country": "Algeria", "subcountry": "El Bayadh"}, "El Abadia": {"country": "Algeria", "subcountry": "A\u00efn Defla"}, "Ech Chettia": {"country": "Algeria", "subcountry": "Chlef"}, "Drean": {"country": "Algeria", "subcountry": "Annaba"}, "Draa El Mizan": {"country": "Algeria", "subcountry": "Bouira"}, "Draa Ben Khedda": {"country": "Algeria", "subcountry": "Boumerdes"}, "Douera": {"country": "Algeria", "subcountry": "Tipaza"}, "Djelfa": {"country": "Algeria", "subcountry": "Djelfa"}, "Djamaa": {"country": "Algeria", "subcountry": "Ouargla"}, "Didouche Mourad": {"country": "Algeria", "subcountry": "Constantine"}, "Dellys": {"country": "Algeria", "subcountry": "Boumerdes"}, "Debila": {"country": "Algeria", "subcountry": "El Oued"}, "Dar El Be\u00efda": {"country": "Algeria", "subcountry": "Alger"}, "Dar Chioukh": {"country": "Algeria", "subcountry": "Djelfa"}, "Constantine": {"country": "Algeria", "subcountry": "Constantine"}, "Chorfa": {"country": "Algeria", "subcountry": "Bouira"}, "Chiffa": {"country": "Algeria", "subcountry": "Blida"}, "Chetouane": {"country": "Algeria", "subcountry": "Tlemcen"}, "Cheria": {"country": "Algeria", "subcountry": "T\u00e9bessa"}, "Cheraga": {"country": "Algeria", "subcountry": "Tipaza"}, "Chemini": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "Chelghoum El A\u00efd": {"country": "Algeria", "subcountry": "Mila"}, "Chebli": {"country": "Algeria", "subcountry": "Blida"}, "Charef": {"country": "Algeria", "subcountry": "Djelfa"}, "Chabet El Ameur": {"country": "Algeria", "subcountry": "Boumerdes"}, "Brezina": {"country": "Algeria", "subcountry": "El Bayadh"}, "Bou Tlelis": {"country": "Algeria", "subcountry": "Oran"}, "Boumahra Ahmed": {"country": "Algeria", "subcountry": "Guelma"}, "Boukadir": {"country": "Algeria", "subcountry": "Chlef"}, "Bou Isma\u00efl": {"country": "Algeria", "subcountry": "Tipaza"}, "Bou\u00efra": {"country": "Algeria", "subcountry": "Bouira"}, "Bouinan": {"country": "Algeria", "subcountry": "Blida"}, "Bou Hanifia El Hamamat": {"country": "Algeria", "subcountry": "Mascara"}, "Bougara": {"country": "Algeria", "subcountry": "Blida"}, "Bougaa": {"country": "Algeria", "subcountry": "S\u00e9tif"}, "Boufarik": {"country": "Algeria", "subcountry": "Blida"}, "Boudouaou": {"country": "Algeria", "subcountry": "Boumerdes"}, "Boudjima": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "Bo\u00fb Arfa": {"country": "Algeria", "subcountry": "Blida"}, "Bordj Zemoura": {"country": "Algeria", "subcountry": "Bordj Bou Arr\u00e9ridj"}, "Bordj Ghdir": {"country": "Algeria", "subcountry": "Bordj Bou Arr\u00e9ridj"}, "Bordj El Kiffan": {"country": "Algeria", "subcountry": "Alger"}, "Bordj Bou Arreridj": {"country": "Algeria", "subcountry": "Bordj Bou Arr\u00e9ridj"}, "Boghni": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "Blida": {"country": "Algeria", "subcountry": "Blida"}, "Biskra": {"country": "Algeria", "subcountry": "Biskra"}, "Birkhadem": {"country": "Algeria", "subcountry": "Alger"}, "Birine": {"country": "Algeria", "subcountry": "Djelfa"}, "Bir El Djir": {"country": "Algeria", "subcountry": "Oran"}, "Bir El Ater": {"country": "Algeria", "subcountry": "T\u00e9bessa"}, "Besbes": {"country": "Algeria", "subcountry": "El Tarf"}, "Berrouaghia": {"country": "Algeria", "subcountry": "M\u00e9d\u00e9a"}, "Berriane": {"country": "Algeria", "subcountry": "Gharda\u00efa"}, "Berrahal": {"country": "Algeria", "subcountry": "Annaba"}, "Bensekrane": {"country": "Algeria", "subcountry": "Tlemcen"}, "Ben Mehidi": {"country": "Algeria", "subcountry": "El Tarf"}, "Beni Saf": {"country": "Algeria", "subcountry": "A\u00efn Temouchent"}, "Beni Mester": {"country": "Algeria", "subcountry": "Tlemcen"}, "Beni Mered": {"country": "Algeria", "subcountry": "Blida"}, "Beni Douala": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "Beni Amrane": {"country": "Algeria", "subcountry": "Boumerdes"}, "Beja\u00efa": {"country": "Algeria", "subcountry": "Beja\u00efa"}, "B\u00e9char": {"country": "Algeria", "subcountry": "B\u00e9char"}, "Batna": {"country": "Algeria", "subcountry": "Batna"}, "Barika": {"country": "Algeria", "subcountry": "Batna"}, "Barbacha": {"country": "Algeria", "subcountry": "Beja\u00efa"}, "Baraki": {"country": "Algeria", "subcountry": "Tipaza"}, "Bab Ezzouar": {"country": "Algeria", "subcountry": "Alger"}, "Azzaba": {"country": "Algeria", "subcountry": "Skikda"}, "Azazga": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "Arris": {"country": "Algeria", "subcountry": "Batna"}, "Arhribs": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "Arbatache": {"country": "Algeria", "subcountry": "Boumerdes"}, "Aoulef": {"country": "Algeria", "subcountry": "Adrar"}, "Annaba": {"country": "Algeria", "subcountry": "Annaba"}, "Ammi Moussa": {"country": "Algeria", "subcountry": "Relizane"}, "Amizour": {"country": "Algeria", "subcountry": "Beja\u00efa"}, "Algiers": {"country": "Algeria", "subcountry": "Alger"}, "Akbou": {"country": "Algeria", "subcountry": "Beja\u00efa"}, "A\u00efn Touta": {"country": "Algeria", "subcountry": "Batna"}, "A\u00efn Temouchent": {"country": "Algeria", "subcountry": "A\u00efn Temouchent"}, "A\u00efn Taya": {"country": "Algeria", "subcountry": "Alger"}, "A\u00efn Smara": {"country": "Algeria", "subcountry": "Constantine"}, "A\u00efn Sefra": {"country": "Algeria", "subcountry": "Naama \u0627\u0644\u0646\u0639\u0627\u0645\u0629"}, "A\u00efn Oussera": {"country": "Algeria", "subcountry": "Djelfa"}, "\u2019A\u00efn Merane": {"country": "Algeria", "subcountry": "Relizane"}, "A\u00efn Kercha": {"country": "Algeria", "subcountry": "Oum el Bouaghi"}, "A\u00efn Fakroun": {"country": "Algeria", "subcountry": "Oum el Bouaghi"}, "\u2019A\u00efn El Turk": {"country": "Algeria", "subcountry": "Oran"}, "\u2019A\u00efn El Melh": {"country": "Algeria", "subcountry": "M\u02bcsila"}, "\u2019A\u00efn El Hammam": {"country": "Algeria", "subcountry": "Tizi Ouzou"}, "\u2018A\u00efn El Hadjel": {"country": "Algeria", "subcountry": "M\u02bcsila"}, "A\u00efn El Bya": {"country": "Algeria", "subcountry": "Oran"}, "\u2019A\u00efn El Berd": {"country": "Algeria", "subcountry": "Sidi Bel Abb\u00e8s"}, "\u2019A\u00efn El Bell": {"country": "Algeria", "subcountry": "Djelfa"}, "\u2019A\u00efn Deheb": {"country": "Algeria", "subcountry": "Tiaret"}, "A\u00efn Defla": {"country": "Algeria", "subcountry": "A\u00efn Defla"}, "A\u00efn Bessem": {"country": "Algeria", "subcountry": "Bouira"}, "\u2019A\u00efn Benian": {"country": "Algeria", "subcountry": "Tipaza"}, "A\u00efn Be\u00efda": {"country": "Algeria", "subcountry": "Oum el Bouaghi"}, "A\u00efn Arnat": {"country": "Algeria", "subcountry": "S\u00e9tif"}, "\u2019A\u00efn Abid": {"country": "Algeria", "subcountry": "Constantine"}, "Aflou": {"country": "Algeria", "subcountry": "Laghouat"}, "Adrar": {"country": "Algeria", "subcountry": "Adrar"}, "Abou El Hassan": {"country": "Algeria", "subcountry": "Chlef"}, "Babor - Ville": {"country": "Algeria", "subcountry": "S\u00e9tif"}, "Zamora": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Yaguachi Nuevo": {"country": "Ecuador", "subcountry": "Guayas"}, "Vinces": {"country": "Ecuador", "subcountry": "Los R\u00edos"}, "Ventanas": {"country": "Ecuador", "subcountry": "Los R\u00edos"}, "Velasco Ibarra": {"country": "Ecuador", "subcountry": "Guayas"}, "Tulc\u00e1n": {"country": "Ecuador", "subcountry": "Carchi"}, "Tena": {"country": "Ecuador", "subcountry": "Napo"}, "Santo Domingo De Los Colorados": {"country": "Ecuador", "subcountry": "Santo Domingo de los Ts\u00e1chilas"}, "San Lorenzo De Esmeraldas": {"country": "Ecuador", "subcountry": "Esmeraldas"}, "San Gabriel": {"country": "United States", "subcountry": "California"}, "Samborond\u00f3n": {"country": "Ecuador", "subcountry": "Guayas"}, "Rosa Zarate": {"country": "Ecuador", "subcountry": "Esmeraldas"}, "Riobamba": {"country": "Ecuador", "subcountry": "Chimborazo"}, "Quito": {"country": "Ecuador", "subcountry": "Pichincha"}, "Quevedo": {"country": "Ecuador", "subcountry": "Los R\u00edos"}, "Puyo": {"country": "Ecuador", "subcountry": "Pastaza"}, "Pujil\u00ed": {"country": "Ecuador", "subcountry": "Cotopaxi"}, "Puerto Francisco De Orellana": {"country": "Ecuador", "subcountry": "Orellana"}, "Portoviejo": {"country": "Ecuador", "subcountry": "Manab\u00ed"}, "Playas": {"country": "Ecuador", "subcountry": "Guayas"}, "Pi\u00f1as": {"country": "Ecuador", "subcountry": "El Oro"}, "Pelileo": {"country": "Ecuador", "subcountry": "Tungurahua"}, "Pedro Carbo": {"country": "Ecuador", "subcountry": "Guayas"}, "Pasaje": {"country": "Ecuador", "subcountry": "El Oro"}, "Otavalo": {"country": "Ecuador", "subcountry": "Imbabura"}, "Naranjito": {"country": "Ecuador", "subcountry": "Guayas"}, "Naranjal": {"country": "Ecuador", "subcountry": "Guayas"}, "Montecristi": {"country": "Ecuador", "subcountry": "Manab\u00ed"}, "Montalvo": {"country": "Ecuador", "subcountry": "Los R\u00edos"}, "Manta": {"country": "Ecuador", "subcountry": "Manab\u00ed"}, "Machala": {"country": "Ecuador", "subcountry": "El Oro"}, "Machachi": {"country": "Ecuador", "subcountry": "Pichincha"}, "Macas": {"country": "Ecuador", "subcountry": "Morona-Santiago"}, "Loja": {"country": "Spain", "subcountry": "Andalusia"}, "La Troncal": {"country": "Ecuador", "subcountry": "Ca\u00f1ar"}, "Latacunga": {"country": "Ecuador", "subcountry": "Cotopaxi"}, "La Man\u00e1": {"country": "Ecuador", "subcountry": "Cotopaxi"}, "La Libertad": {"country": "El Salvador", "subcountry": "La Libertad"}, "Nueva Loja": {"country": "Ecuador", "subcountry": "Sucumbios"}, "Jipijapa": {"country": "Ecuador", "subcountry": "Manab\u00ed"}, "Ibarra": {"country": "Ecuador", "subcountry": "Imbabura"}, "Huaquillas": {"country": "Ecuador", "subcountry": "El Oro"}, "Guayaquil": {"country": "Ecuador", "subcountry": "Guayas"}, "Guaranda": {"country": "Ecuador", "subcountry": "Bol\u00edvar"}, "Gualaceo": {"country": "Ecuador", "subcountry": "Azuay"}, "El Triunfo": {"country": "Ecuador", "subcountry": "Guayas"}, "Eloy Alfaro": {"country": "Ecuador", "subcountry": "Guayas"}, "Cuenca": {"country": "Philippines", "subcountry": "Calabarzon"}, "Chone": {"country": "Ecuador", "subcountry": "Manab\u00ed"}, "Cayambe": {"country": "Ecuador", "subcountry": "Pichincha"}, "Catamayo": {"country": "Ecuador", "subcountry": "Loja"}, "Cariamanga": {"country": "Ecuador", "subcountry": "Loja"}, "Calceta": {"country": "Ecuador", "subcountry": "Manab\u00ed"}, "Boca Suno": {"country": "Ecuador", "subcountry": "Orellana"}, "Balzar": {"country": "Ecuador", "subcountry": "Guayas"}, "Bah\u00eda De Car\u00e1quez": {"country": "Ecuador", "subcountry": "Manab\u00ed"}, "Babahoyo": {"country": "Ecuador", "subcountry": "Los R\u00edos"}, "Azogues": {"country": "Ecuador", "subcountry": "Ca\u00f1ar"}, "Atuntaqui": {"country": "Ecuador", "subcountry": "Imbabura"}, "Ambato": {"country": "Ecuador", "subcountry": "Tungurahua"}, "Tutamandahostel": {"country": "Ecuador", "subcountry": "Pichincha"}, "Viljandi": {"country": "Estonia", "subcountry": "Viljandimaa"}, "Tartu": {"country": "Estonia", "subcountry": "Tartu"}, "Tallinn": {"country": "Estonia", "subcountry": "Harjumaa"}, "Sillam\u00e4e": {"country": "Estonia", "subcountry": "Ida-Virumaa"}, "Rakvere": {"country": "Estonia", "subcountry": "L\u00e4\u00e4ne-Virumaa"}, "P\u00e4rnu": {"country": "Estonia", "subcountry": "P\u00e4rnumaa"}, "Narva": {"country": "Estonia", "subcountry": "Ida-Virumaa"}, "Maardu": {"country": "Estonia", "subcountry": "Harjumaa"}, "Kohtla-J\u00e4rve": {"country": "Estonia", "subcountry": "Ida-Virumaa"}, "Zift\u00e1": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Gharb\u012byah"}, "Toukh": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Qaly\u016bb\u012byah"}, "\u0162\u0101miyah": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Fayy\u016bm"}, "\u0162alkh\u0101": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at ad Daqahl\u012byah"}, "Tal\u0101": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Min\u016bf\u012byah"}, "\u0162ah\u0163\u0101": {"country": "Egypt", "subcountry": "S\u016bh\u0101j"}, "Sumus\u0163\u0101 As Sul\u0163\u0101n\u012b": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at Ban\u012b Suwayf"}, "Sohag": {"country": "Egypt", "subcountry": "S\u016bh\u0101j"}, "S\u012bd\u012b S\u0101lim": {"country": "Egypt", "subcountry": "Kafr ash Shaykh"}, "Shirb\u012bn": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at ad Daqahl\u012byah"}, "Shib\u012bn Al Qan\u0101\u0163ir": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Qaly\u016bb\u012byah"}, "Shib\u012bn Al Kawm": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Min\u016bf\u012byah"}, "Samann\u016bd": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Gharb\u012byah"}, "Sam\u0101l\u016b\u0163": {"country": "Egypt", "subcountry": "Al Miny\u0101"}, "Rosetta": {"country": "Egypt", "subcountry": "Al Bu\u1e29ayrah"}, "Ras Gharib": {"country": "Egypt", "subcountry": "Red Sea"}, "Quwaysin\u0101": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Min\u016bf\u012byah"}, "Qu\u0163\u016br": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Gharb\u012byah"}, "Kousa": {"country": "Egypt", "subcountry": "Qin\u0101"}, "Qin\u0101": {"country": "Egypt", "subcountry": "Qin\u0101"}, "Qaly\u016bb": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Qaly\u016bb\u012byah"}, "Naj\u2018 \u1e28amm\u0101d\u012b": {"country": "Egypt", "subcountry": "Qin\u0101"}, "Minyat An Na\u015fr": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at ad Daqahl\u012byah"}, "Min\u016bf": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Min\u016bf\u012byah"}, "Ma\u0163\u0101y": {"country": "Egypt", "subcountry": "Al Miny\u0101"}, "Masht\u016bl As S\u016bq": {"country": "Egypt", "subcountry": "Eastern Province"}, "Mersa Matruh": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at Ma\u0163r\u016b\u1e29"}, "Manfal\u016b\u0163": {"country": "Egypt", "subcountry": "Asy\u016b\u0163"}, "Mallaw\u012b": {"country": "Egypt", "subcountry": "Al Miny\u0101"}, "Mad\u012bnat Sittah Ukt\u016bbar": {"country": "Egypt", "subcountry": "Al J\u012bzah"}, "Kawm Umb\u016b": {"country": "Egypt", "subcountry": "Asw\u0101n"}, "Kawm \u1e28am\u0101dah": {"country": "Egypt", "subcountry": "Al Bu\u1e29ayrah"}, "Kafr \u015eaqr": {"country": "Egypt", "subcountry": "Eastern Province"}, "Kafr Az Zayy\u0101t": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Gharb\u012byah"}, "Kafr Ash Shaykh": {"country": "Egypt", "subcountry": "Kafr ash Shaykh"}, "Kafr Ad Daww\u0101r": {"country": "Egypt", "subcountry": "Al Bu\u1e29ayrah"}, "Juhaynah": {"country": "Egypt", "subcountry": "S\u016bh\u0101j"}, "Jirj\u0101": {"country": "Egypt", "subcountry": "S\u016bh\u0101j"}, "\u2018Izbat Al Burj": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at ad Daqahl\u012byah"}, "I\u0163s\u0101": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Fayy\u016bm"}, "Isn\u0101": {"country": "Egypt", "subcountry": "Qin\u0101"}, "Idk\u016b": {"country": "Egypt", "subcountry": "Al Bu\u1e29ayrah"}, "Idf\u016b": {"country": "Egypt", "subcountry": "Asw\u0101n"}, "Ibshaw\u0101y": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Fayy\u016bm"}, "\u1e28alw\u0101n": {"country": "Egypt", "subcountry": "Cairo Governorate"}, "Hihy\u0101": {"country": "Egypt", "subcountry": "Eastern Province"}, "\u1e28awsh \u2018\u012as\u00e1": {"country": "Egypt", "subcountry": "Al Bu\u1e29ayrah"}, "Fuwwah": {"country": "Egypt", "subcountry": "Kafr ash Shaykh"}, "Farsh\u016b\u0163": {"country": "Egypt", "subcountry": "Qin\u0101"}, "F\u0101rask\u016br": {"country": "Egypt", "subcountry": "Dumy\u0101\u0163"}, "F\u0101q\u016bs": {"country": "Egypt", "subcountry": "Eastern Province"}, "Damietta": {"country": "Egypt", "subcountry": "Dumy\u0101\u0163"}, "Diyarb Najm": {"country": "Egypt", "subcountry": "Eastern Province"}, "Dis\u016bq": {"country": "Egypt", "subcountry": "Kafr ash Shaykh"}, "Dishn\u0101": {"country": "Egypt", "subcountry": "Qin\u0101"}, "Dikirnis": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at ad Daqahl\u012byah"}, "Dayr\u016b\u0163": {"country": "Egypt", "subcountry": "Asy\u016b\u0163"}, "Dayr Maw\u0101s": {"country": "Egypt", "subcountry": "Al Miny\u0101"}, "Damanh\u016br": {"country": "Egypt", "subcountry": "Al Bu\u1e29ayrah"}, "B\u016bsh": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at Ban\u012b Suwayf"}, "Port Said": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at B\u016br Sa\u2018\u012bd"}, "B\u016br Saf\u0101jah": {"country": "Egypt", "subcountry": "Red Sea"}, "Bilq\u0101s": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at ad Daqahl\u012byah"}, "Bilbays": {"country": "Egypt", "subcountry": "Eastern Province"}, "Basy\u016bn": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Gharb\u012byah"}, "Ban\u012b Suwayf": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at Ban\u012b Suwayf"}, "Ban\u012b Maz\u0101r": {"country": "Egypt", "subcountry": "Al Miny\u0101"}, "Banh\u0101": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Qaly\u016bb\u012byah"}, "Zagazig": {"country": "Egypt", "subcountry": "Eastern Province"}, "Aws\u012bm": {"country": "Egypt", "subcountry": "Al J\u012bzah"}, "At Tall Al Kab\u012br": {"country": "Egypt", "subcountry": "Al Ism\u0101\u2018\u012bl\u012byah"}, "Asy\u016b\u0163": {"country": "Egypt", "subcountry": "Asy\u016b\u0163"}, "Aswan": {"country": "Egypt", "subcountry": "Asw\u0101n"}, "Suez": {"country": "Egypt", "subcountry": "As Suways"}, "A\u015f \u015eaff": {"country": "Egypt", "subcountry": "Al J\u012bzah"}, "Ash Shuhad\u0101\u2019": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Min\u016bf\u012byah"}, "Ashm\u016bn": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Min\u016bf\u012byah"}, "Al W\u0101si\u0163ah": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Fayy\u016bm"}, "Luxor": {"country": "Egypt", "subcountry": "Luxor"}, "Al Q\u016b\u015f\u012byah": {"country": "Egypt", "subcountry": "Asy\u016b\u0163"}, "Al Qu\u015fayr": {"country": "Syria", "subcountry": "Homs"}, "Al Qurayn": {"country": "Egypt", "subcountry": "Eastern Province"}, "Al Qan\u0101y\u0101t": {"country": "Egypt", "subcountry": "Eastern Province"}, "Al Qan\u0101\u0163ir Al Khayr\u012byah": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Qaly\u016bb\u012byah"}, "Cairo": {"country": "Egypt", "subcountry": "Cairo Governorate"}, "Al Miny\u0101": {"country": "Egypt", "subcountry": "Al Miny\u0101"}, "Al Ma\u0163ar\u012byah": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at ad Daqahl\u012byah"}, "Al Manzilah": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at ad Daqahl\u012byah"}, "Al Man\u015f\u016brah": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at ad Daqahl\u012byah"}, "Al Mansh\u0101h": {"country": "Egypt", "subcountry": "S\u016bh\u0101j"}, "Al Ma\u1e29allah Al Kubr\u00e1": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Gharb\u012byah"}, "Al Kh\u0101rijah": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al W\u0101d\u012b al Jad\u012bd"}, "Al Kh\u0101nkah": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Qaly\u016bb\u012byah"}, "Al J\u012bzah": {"country": "Egypt", "subcountry": "Al J\u012bzah"}, "Al Jam\u0101l\u012byah": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at ad Daqahl\u012byah"}, "Ismailia": {"country": "Egypt", "subcountry": "Al Ism\u0101\u2018\u012bl\u012byah"}, "Alexandria": {"country": "United States", "subcountry": "Louisiana"}, "Al Ibr\u0101h\u012bm\u012byah": {"country": "Egypt", "subcountry": "Eastern Province"}, "Al \u1e28aw\u0101mid\u012byah": {"country": "Egypt", "subcountry": "Al J\u012bzah"}, "Al \u1e28\u0101m\u016bl": {"country": "Egypt", "subcountry": "Kafr ash Shaykh"}, "Hurghada": {"country": "Egypt", "subcountry": "Red Sea"}, "Al Fayy\u016bm": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Fayy\u016bm"}, "Al Fashn": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at Ban\u012b Suwayf"}, "Al Baw\u012b\u0163\u012b": {"country": "Egypt", "subcountry": "Al J\u012bzah"}, "Al Balyan\u0101": {"country": "Egypt", "subcountry": "S\u016bh\u0101j"}, "Al B\u0101j\u016br": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at al Min\u016bf\u012byah"}, "Al Bad\u0101r\u012b": {"country": "Egypt", "subcountry": "Asy\u016b\u0163"}, "Al \u2018Ayy\u0101\u0163": {"country": "Egypt", "subcountry": "Al J\u012bzah"}, "Arish": {"country": "Egypt", "subcountry": "Sham\u0101l S\u012bn\u0101\u02bc"}, "Akhm\u012bm": {"country": "Egypt", "subcountry": "S\u016bh\u0101j"}, "Aj\u0101": {"country": "Egypt", "subcountry": "Mu\u1e29\u0101faz\u0327at ad Daqahl\u012byah"}, "Ad Dilinj\u0101t": {"country": "Egypt", "subcountry": "Al Bu\u1e29ayrah"}, "Ab\u016b T\u012bj": {"country": "Egypt", "subcountry": "Asy\u016b\u0163"}, "Ab\u016b Qurq\u0101\u015f": {"country": "Egypt", "subcountry": "Al Miny\u0101"}, "Ab\u016b Kab\u012br": {"country": "Egypt", "subcountry": "Eastern Province"}, "Ab\u016b Al Ma\u0163\u0101m\u012br": {"country": "Egypt", "subcountry": "Al Bu\u1e29ayrah"}, "Abn\u016bb": {"country": "Egypt", "subcountry": "Asy\u016b\u0163"}, "Az Zarq\u0101": {"country": "Egypt", "subcountry": "Dumy\u0101\u0163"}, "Ain Sukhna": {"country": "Egypt", "subcountry": "As Suways"}, "Smara": {"country": "Western Sahara", "subcountry": "Oued Ed-Dahab-Lagouira"}, "La\u00e2youne / El Aai\u00fan": {"country": "Western Sahara", "subcountry": "Oued Ed-Dahab-Lagouira"}, "Dakhla": {"country": "Morocco", "subcountry": "Oued ed Dahab-Lagouira"}, "Massawa": {"country": "Eritrea", "subcountry": "Northern Red Sea Region"}, "Keren": {"country": "Eritrea", "subcountry": "\u0100nseba"}, "Barentu": {"country": "Eritrea", "subcountry": "Gash Barka"}, "Asmara": {"country": "Eritrea", "subcountry": "Ma\u02bc\u0101kel"}, "Assab": {"country": "Eritrea", "subcountry": "Debubaw\u012b K\u02bceyih Bahr\u012b"}, "Mendefera": {"country": "Eritrea", "subcountry": "Debub"}, "Zubia": {"country": "Spain", "subcountry": "Andalusia"}, "Zafra": {"country": "Spain", "subcountry": "Extremadura"}, "Yecla": {"country": "Spain", "subcountry": "Murcia"}, "Villena": {"country": "Spain", "subcountry": "Valencia"}, "Villarrobledo": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Vila-Real": {"country": "Spain", "subcountry": "Valencia"}, "Villanueva De La Serena": {"country": "Spain", "subcountry": "Extremadura"}, "Villajoyosa": {"country": "Spain", "subcountry": "Valencia"}, "V\u00edcar": {"country": "Spain", "subcountry": "Andalusia"}, "V\u00e9lez-M\u00e1laga": {"country": "Spain", "subcountry": "Andalusia"}, "Valencia": {"country": "Venezuela", "subcountry": "Carabobo"}, "Valdepe\u00f1as": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Utrera": {"country": "Spain", "subcountry": "Andalusia"}, "Ubrique": {"country": "Spain", "subcountry": "Andalusia"}, "\u00dabeda": {"country": "Spain", "subcountry": "Andalusia"}, "Totana": {"country": "Spain", "subcountry": "Murcia"}, "Torrox": {"country": "Spain", "subcountry": "Andalusia"}, "Torrevieja": {"country": "Spain", "subcountry": "Valencia"}, "Torre-Pacheco": {"country": "Spain", "subcountry": "Murcia"}, "Torrent": {"country": "Spain", "subcountry": "Valencia"}, "Torremolinos": {"country": "Spain", "subcountry": "Andalusia"}, "Tomelloso": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Tomares": {"country": "Spain", "subcountry": "Andalusia"}, "T\u00edas": {"country": "Spain", "subcountry": "Canary Islands"}, "Telde": {"country": "Spain", "subcountry": "Canary Islands"}, "Teguise": {"country": "Spain", "subcountry": "Canary Islands"}, "Tarifa": {"country": "Spain", "subcountry": "Andalusia"}, "Talavera De La Reina": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Tacoronte": {"country": "Spain", "subcountry": "Canary Islands"}, "Tavernes De La Valldigna": {"country": "Spain", "subcountry": "Valencia"}, "Sueca": {"country": "Spain", "subcountry": "Valencia"}, "Silla": {"country": "Spain", "subcountry": "Valencia"}, "San Vicent Del Raspeig": {"country": "Spain", "subcountry": "Valencia"}, "Santomera": {"country": "Spain", "subcountry": "Murcia"}, "Santa Pola": {"country": "Spain", "subcountry": "Valencia"}, "Santaf\u00e9": {"country": "Spain", "subcountry": "Andalusia"}, "Santa Eul\u00e0ria Des Riu": {"country": "Spain", "subcountry": "Balearic Islands"}, "Santa Cruz De Tenerife": {"country": "Spain", "subcountry": "Canary Islands"}, "Santa Cruz De La Palma": {"country": "Spain", "subcountry": "Canary Islands"}, "Santa Br\u00edgida": {"country": "Spain", "subcountry": "Canary Islands"}, "San Roque": {"country": "Spain", "subcountry": "Andalusia"}, "San Pedro Del Pinatar": {"country": "Spain", "subcountry": "Murcia"}, "San Pedro De Alc\u00e1ntara": {"country": "Spain", "subcountry": "Andalusia"}, "San Miguel De Abona": {"country": "Spain", "subcountry": "Canary Islands"}, "Sanl\u00facar De Barrameda": {"country": "Spain", "subcountry": "Andalusia"}, "San Juan De Aznalfarache": {"country": "Spain", "subcountry": "Andalusia"}, "San Juan De Alicante": {"country": "Spain", "subcountry": "Valencia"}, "San Fernando": {"country": "United States", "subcountry": "California"}, "La Laguna": {"country": "Spain", "subcountry": "Canary Islands"}, "San Bartolom\u00e9 De Tirajana": {"country": "Spain", "subcountry": "Canary Islands"}, "San Bartolom\u00e9": {"country": "Spain", "subcountry": "Canary Islands"}, "Sant Antoni De Portmany": {"country": "Spain", "subcountry": "Balearic Islands"}, "Sagunto": {"country": "Spain", "subcountry": "Valencia"}, "Rota": {"country": "Spain", "subcountry": "Andalusia"}, "Roquetas De Mar": {"country": "Spain", "subcountry": "Andalusia"}, "Ronda": {"country": "Spain", "subcountry": "Andalusia"}, "Rojales": {"country": "Spain", "subcountry": "Valencia"}, "Rinc\u00f3n De La Victoria": {"country": "Spain", "subcountry": "Andalusia"}, "Ribarroja": {"country": "Spain", "subcountry": "Valencia"}, "Requena": {"country": "Spain", "subcountry": "Valencia"}, "Realejo Alto": {"country": "Spain", "subcountry": "Canary Islands"}, "Pu\u00e7ol": {"country": "Spain", "subcountry": "Valencia"}, "Puerto Real": {"country": "Spain", "subcountry": "Andalusia"}, "Puertollano": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Puerto Del Rosario": {"country": "Spain", "subcountry": "Canary Islands"}, "Puerto De La Cruz": {"country": "Spain", "subcountry": "Canary Islands"}, "Puente-Genil": {"country": "Spain", "subcountry": "Andalusia"}, "La Pobla De Vallbona": {"country": "Spain", "subcountry": "Valencia"}, "Priego De C\u00f3rdoba": {"country": "Spain", "subcountry": "Andalusia"}, "Pozoblanco": {"country": "Spain", "subcountry": "Andalusia"}, "Pollen\u00e7a": {"country": "Spain", "subcountry": "Balearic Islands"}, "Pilar De La Horadada": {"country": "Spain", "subcountry": "Valencia"}, "Picassent": {"country": "Spain", "subcountry": "Valencia"}, "Paterna": {"country": "Spain", "subcountry": "Valencia"}, "Palma": {"country": "Spain", "subcountry": "Balearic Islands"}, "Palma Del R\u00edo": {"country": "Spain", "subcountry": "Andalusia"}, "P\u00e1jara": {"country": "Spain", "subcountry": "Canary Islands"}, "Paiporta": {"country": "Spain", "subcountry": "Valencia"}, "Osuna": {"country": "Spain", "subcountry": "Andalusia"}, "Orihuela": {"country": "Spain", "subcountry": "Valencia"}, "Ontinyent": {"country": "Spain", "subcountry": "Valencia"}, "Onda": {"country": "Spain", "subcountry": "Valencia"}, "Oliva": {"country": "Spain", "subcountry": "Valencia"}, "Novelda": {"country": "Spain", "subcountry": "Valencia"}, "N\u00edjar": {"country": "Spain", "subcountry": "Andalusia"}, "Nerja": {"country": "Spain", "subcountry": "Andalusia"}, "Navalmoral De La Mata": {"country": "Spain", "subcountry": "Extremadura"}, "Murcia": {"country": "Philippines", "subcountry": "Western Visayas"}, "Mula": {"country": "Spain", "subcountry": "Murcia"}, "Muchamiel": {"country": "Spain", "subcountry": "Valencia"}, "Motril": {"country": "Spain", "subcountry": "Andalusia"}, "Mor\u00f3n De La Frontera": {"country": "Spain", "subcountry": "Andalusia"}, "Montilla": {"country": "Spain", "subcountry": "Andalusia"}, "Montijo": {"country": "Portugal", "subcountry": "Set\u00fabal"}, "Moncada": {"country": "Spain", "subcountry": "Valencia"}, "Molina De Segura": {"country": "Spain", "subcountry": "Murcia"}, "Moguer": {"country": "Spain", "subcountry": "Andalusia"}, "Mog\u00e1n": {"country": "Spain", "subcountry": "Canary Islands"}, "Mislata": {"country": "Spain", "subcountry": "Valencia"}, "Mijas": {"country": "Spain", "subcountry": "Andalusia"}, "M\u00e9rida": {"country": "Venezuela", "subcountry": "M\u00e9rida"}, "Melilla": {"country": "Spain", "subcountry": "Melilla"}, "Mazarr\u00f3n": {"country": "Spain", "subcountry": "Murcia"}, "Maspalomas": {"country": "Spain", "subcountry": "Canary Islands"}, "Massamagrell": {"country": "Spain", "subcountry": "Valencia"}, "Martos": {"country": "Spain", "subcountry": "Andalusia"}, "Marratx\u00ed": {"country": "Spain", "subcountry": "Balearic Islands"}, "Marchena": {"country": "Spain", "subcountry": "Andalusia"}, "Marbella": {"country": "Spain", "subcountry": "Andalusia"}, "Maracena": {"country": "Spain", "subcountry": "Andalusia"}, "Manises": {"country": "Spain", "subcountry": "Valencia"}, "Manacor": {"country": "Spain", "subcountry": "Balearic Islands"}, "Mairena Del Aljarafe": {"country": "Spain", "subcountry": "Andalusia"}, "Mairena Del Alcor": {"country": "Spain", "subcountry": "Andalusia"}, "Ma\u00f3": {"country": "Spain", "subcountry": "Balearic Islands"}, "Lucena": {"country": "Philippines", "subcountry": "Calabarzon"}, "Los Palacios Y Villafranca": {"country": "Spain", "subcountry": "Andalusia"}, "Los Llanos De Aridane": {"country": "Spain", "subcountry": "Canary Islands"}, "Los Barrios": {"country": "Spain", "subcountry": "Andalusia"}, "Los Alc\u00e1zares": {"country": "Spain", "subcountry": "Murcia"}, "Lorca": {"country": "Spain", "subcountry": "Murcia"}, "Lora Del R\u00edo": {"country": "Spain", "subcountry": "Andalusia"}, "Llucmajor": {"country": "Spain", "subcountry": "Balearic Islands"}, "Ll\u00edria": {"country": "Spain", "subcountry": "Valencia"}, "Lepe": {"country": "Spain", "subcountry": "Andalusia"}, "Lebrija": {"country": "Spain", "subcountry": "Andalusia"}, "Las Torres De Cotillas": {"country": "Spain", "subcountry": "Murcia"}, "Las Palmas De Gran Canaria": {"country": "Spain", "subcountry": "Canary Islands"}, "La Solana": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Las Cabezas De San Juan": {"country": "Spain", "subcountry": "Andalusia"}, "La Roda": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "La Rinconada": {"country": "Peru", "subcountry": "Puno"}, "La Orotava": {"country": "Spain", "subcountry": "Canary Islands"}, "La Oliva": {"country": "Spain", "subcountry": "Canary Islands"}, "La Nucia": {"country": "Spain", "subcountry": "Valencia"}, "La L\u00ednea De La Concepci\u00f3n": {"country": "Spain", "subcountry": "Andalusia"}, "L'Eliana": {"country": "Spain", "subcountry": "Valencia"}, "La Carolina": {"country": "Spain", "subcountry": "Andalusia"}, "Jumilla": {"country": "Spain", "subcountry": "Murcia"}, "Jerez De La Frontera": {"country": "Spain", "subcountry": "Andalusia"}, "Javea": {"country": "Spain", "subcountry": "Valencia"}, "X\u00e0tiva": {"country": "Spain", "subcountry": "Valencia"}, "Ja\u00e9n": {"country": "Peru", "subcountry": "Cajamarca"}, "Isla Cristina": {"country": "Spain", "subcountry": "Andalusia"}, "Ingenio": {"country": "Spain", "subcountry": "Canary Islands"}, "Inca": {"country": "Spain", "subcountry": "Balearic Islands"}, "Icod De Los Vinos": {"country": "Spain", "subcountry": "Canary Islands"}, "Ibiza": {"country": "Spain", "subcountry": "Balearic Islands"}, "Ibi": {"country": "Nigeria", "subcountry": "Taraba"}, "Hu\u00e9rcal-Overa": {"country": "Spain", "subcountry": "Andalusia"}, "Huelva": {"country": "Spain", "subcountry": "Andalusia"}, "Hell\u00edn": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "G\u00fcimar": {"country": "Spain", "subcountry": "Canary Islands"}, "Gu\u00eda De Isora": {"country": "Spain", "subcountry": "Canary Islands"}, "Guardamar Del Segura": {"country": "Spain", "subcountry": "Valencia"}, "Guadix": {"country": "Spain", "subcountry": "Andalusia"}, "Granadilla De Abona": {"country": "Spain", "subcountry": "Canary Islands"}, "Gandia": {"country": "Spain", "subcountry": "Valencia"}, "G\u00e1ldar": {"country": "Spain", "subcountry": "Canary Islands"}, "Fuengirola": {"country": "Spain", "subcountry": "Andalusia"}, "Felanitx": {"country": "Spain", "subcountry": "Balearic Islands"}, "Estepona": {"country": "Spain", "subcountry": "Andalusia"}, "El Viso Del Alcor": {"country": "Spain", "subcountry": "Andalusia"}, "El Puerto De Santa Mar\u00eda": {"country": "Spain", "subcountry": "Andalusia"}, "El Ejido": {"country": "Spain", "subcountry": "Andalusia"}, "Elda": {"country": "Spain", "subcountry": "Valencia"}, "Elche": {"country": "Spain", "subcountry": "Valencia"}, "El Arahal": {"country": "Spain", "subcountry": "Andalusia"}, "\u00c9cija": {"country": "Spain", "subcountry": "Andalusia"}, "Dos Hermanas": {"country": "Spain", "subcountry": "Andalusia"}, "Don Benito": {"country": "Spain", "subcountry": "Extremadura"}, "Denia": {"country": "Spain", "subcountry": "Valencia"}, "Daimiel": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Cullera": {"country": "Spain", "subcountry": "Valencia"}, "Quart De Poblet": {"country": "Spain", "subcountry": "Valencia"}, "Crevillente": {"country": "Spain", "subcountry": "Valencia"}, "Coria Del R\u00edo": {"country": "Spain", "subcountry": "Andalusia"}, "Conil De La Frontera": {"country": "Spain", "subcountry": "Andalusia"}, "Co\u00edn": {"country": "Spain", "subcountry": "Andalusia"}, "Ciudad Real": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Cieza": {"country": "Spain", "subcountry": "Murcia"}, "Xirivella": {"country": "Spain", "subcountry": "Valencia"}, "Chipiona": {"country": "Spain", "subcountry": "Andalusia"}, "Chiclana De La Frontera": {"country": "Spain", "subcountry": "Andalusia"}, "Ceheg\u00edn": {"country": "Spain", "subcountry": "Murcia"}, "Catarroja": {"country": "Spain", "subcountry": "Valencia"}, "Castilleja De La Cuesta": {"country": "Spain", "subcountry": "Andalusia"}, "Castell\u00f3 De La Plana": {"country": "Spain", "subcountry": "Valencia"}, "Cartaya": {"country": "Spain", "subcountry": "Andalusia"}, "C\u00e1rtama": {"country": "Spain", "subcountry": "Andalusia"}, "Carmona": {"country": "Philippines", "subcountry": "Calabarzon"}, "Carlet": {"country": "Spain", "subcountry": "Valencia"}, "Carcaixent": {"country": "Spain", "subcountry": "Valencia"}, "Caravaca": {"country": "Spain", "subcountry": "Murcia"}, "Campo De Criptana": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Campi\u00f1a": {"country": "Spain", "subcountry": "Andalusia"}, "El Campello": {"country": "Spain", "subcountry": "Valencia"}, "Camas": {"country": "United States", "subcountry": "Washington"}, "Calvi\u00e0": {"country": "Spain", "subcountry": "Balearic Islands"}, "Calp": {"country": "Spain", "subcountry": "Valencia"}, "Callosa De Segura": {"country": "Spain", "subcountry": "Valencia"}, "Cadiz": {"country": "Philippines", "subcountry": "Western Visayas"}, "C\u00e1ceres": {"country": "Spain", "subcountry": "Extremadura"}, "Cabra": {"country": "Spain", "subcountry": "Andalusia"}, "Burriana": {"country": "Spain", "subcountry": "Valencia"}, "Burjassot": {"country": "Spain", "subcountry": "Valencia"}, "Bormujos": {"country": "Spain", "subcountry": "Andalusia"}, "B\u00e9tera": {"country": "Spain", "subcountry": "Valencia"}, "Berja": {"country": "Spain", "subcountry": "Andalusia"}, "Benidorm": {"country": "Spain", "subcountry": "Valencia"}, "Benet\u00fasser": {"country": "Spain", "subcountry": "Valencia"}, "Benalm\u00e1dena": {"country": "Spain", "subcountry": "Andalusia"}, "Baza": {"country": "Spain", "subcountry": "Andalusia"}, "Barbate De Franco": {"country": "Spain", "subcountry": "Andalusia"}, "Bail\u00e9n": {"country": "Spain", "subcountry": "Andalusia"}, "Baeza": {"country": "Spain", "subcountry": "Andalusia"}, "Baena": {"country": "Spain", "subcountry": "Andalusia"}, "Badajoz": {"country": "Spain", "subcountry": "Extremadura"}, "Ayamonte": {"country": "Spain", "subcountry": "Andalusia"}, "Atarfe": {"country": "Spain", "subcountry": "Andalusia"}, "Atamar\u00eda": {"country": "Spain", "subcountry": "Murcia"}, "Aspe": {"country": "Spain", "subcountry": "Valencia"}, "Arucas": {"country": "Spain", "subcountry": "Canary Islands"}, "Arrecife": {"country": "Spain", "subcountry": "Canary Islands"}, "Arona": {"country": "Spain", "subcountry": "Canary Islands"}, "Armilla": {"country": "Spain", "subcountry": "Andalusia"}, "Arcos De La Frontera": {"country": "Spain", "subcountry": "Andalusia"}, "Archena": {"country": "Spain", "subcountry": "Murcia"}, "Antequera": {"country": "Spain", "subcountry": "Andalusia"}, "And\u00fajar": {"country": "Spain", "subcountry": "Andalusia"}, "Altea": {"country": "Spain", "subcountry": "Valencia"}, "Almu\u00f1\u00e9car": {"country": "Spain", "subcountry": "Andalusia"}, "Almorad\u00ed": {"country": "Spain", "subcountry": "Valencia"}, "Almonte": {"country": "Spain", "subcountry": "Andalusia"}, "Almer\u00eda": {"country": "Spain", "subcountry": "Andalusia"}, "Almendralejo": {"country": "Spain", "subcountry": "Extremadura"}, "Almassora": {"country": "Spain", "subcountry": "Valencia"}, "Almansa": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Aljaraque": {"country": "Spain", "subcountry": "Andalusia"}, "Alicante": {"country": "Spain", "subcountry": "Valencia"}, "Alhaur\u00edn El Grande": {"country": "Spain", "subcountry": "Andalusia"}, "Alhaur\u00edn De La Torre": {"country": "Spain", "subcountry": "Andalusia"}, "Alhama De Murcia": {"country": "Spain", "subcountry": "Murcia"}, "Algemes\u00ed": {"country": "Spain", "subcountry": "Valencia"}, "Algeciras": {"country": "Spain", "subcountry": "Andalusia"}, "Alfafar": {"country": "Spain", "subcountry": "Valencia"}, "Aldaia": {"country": "Spain", "subcountry": "Valencia"}, "Alc\u00fadia": {"country": "Spain", "subcountry": "Balearic Islands"}, "Alcoy": {"country": "Spain", "subcountry": "Valencia"}, "Alzira": {"country": "Spain", "subcountry": "Valencia"}, "Alc\u00e1zar De San Juan": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Alcantarilla": {"country": "Spain", "subcountry": "Murcia"}, "Alcal\u00e1 La Real": {"country": "Spain", "subcountry": "Andalusia"}, "Alcal\u00e1 De Guadaira": {"country": "Spain", "subcountry": "Andalusia"}, "Alboraya": {"country": "Spain", "subcountry": "Valencia"}, "Albolote": {"country": "Spain", "subcountry": "Andalusia"}, "Albal": {"country": "Spain", "subcountry": "Valencia"}, "Albacete": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Alaqu\u00e0s": {"country": "Spain", "subcountry": "Valencia"}, "Ag\u00fcimes": {"country": "Spain", "subcountry": "Canary Islands"}, "\u00c1guilas": {"country": "Spain", "subcountry": "Murcia"}, "Adra": {"country": "India", "subcountry": "West Bengal"}, "Adeje": {"country": "Spain", "subcountry": "Canary Islands"}, "Groa De Murviedro": {"country": "Spain", "subcountry": "Valencia"}, "Zarautz": {"country": "Spain", "subcountry": "Basque Country"}, "Viveiro": {"country": "Spain", "subcountry": "Galicia"}, "Gasteiz / Vitoria": {"country": "Spain", "subcountry": "Basque Country"}, "Vinar\u00f2s": {"country": "Spain", "subcountry": "Valencia"}, "Villaviciosa De Od\u00f3n": {"country": "Spain", "subcountry": "Madrid"}, "Villaverde": {"country": "Spain", "subcountry": "Madrid"}, "Villaquilambre": {"country": "Spain", "subcountry": "Castille and Le\u00f3n"}, "Vilanova I La Geltr\u00fa": {"country": "Spain", "subcountry": "Catalonia"}, "Villanueva Del Pardillo": {"country": "Spain", "subcountry": "Madrid"}, "Villanueva De La Ca\u00f1ada": {"country": "Spain", "subcountry": "Madrid"}, "Vilalba": {"country": "Spain", "subcountry": "Galicia"}, "Vilagarc\u00eda De Arousa": {"country": "Spain", "subcountry": "Galicia"}, "Vilafranca Del Pened\u00e8s": {"country": "Spain", "subcountry": "Catalonia"}, "Vila-Seca": {"country": "Spain", "subcountry": "Catalonia"}, "Vilaseca": {"country": "Spain", "subcountry": "Catalonia"}, "Viladecans": {"country": "Spain", "subcountry": "Catalonia"}, "Vigo": {"country": "Spain", "subcountry": "Galicia"}, "Vic": {"country": "Spain", "subcountry": "Catalonia"}, "Vic\u00e1lvaro": {"country": "Spain", "subcountry": "Madrid"}, "El Vendrell": {"country": "Spain", "subcountry": "Catalonia"}, "Valls": {"country": "Spain", "subcountry": "Catalonia"}, "Valladolid": {"country": "Mexico", "subcountry": "Yucat\u00e1n"}, "Valdemoro": {"country": "Spain", "subcountry": "Madrid"}, "Rivas-Vaciamadrid": {"country": "Spain", "subcountry": "Madrid"}, "Utebo": {"country": "Spain", "subcountry": "Aragon"}, "Tui": {"country": "Spain", "subcountry": "Galicia"}, "Tudela": {"country": "Spain", "subcountry": "Navarre"}, "Tortosa": {"country": "Spain", "subcountry": "Catalonia"}, "Torrelodones": {"country": "Spain", "subcountry": "Madrid"}, "Torrelavega": {"country": "Spain", "subcountry": "Cantabria"}, "Torrej\u00f3n De Ardoz": {"country": "Spain", "subcountry": "Madrid"}, "Torredembarra": {"country": "Spain", "subcountry": "Catalonia"}, "Tordera": {"country": "Spain", "subcountry": "Catalonia"}, "Tolosa": {"country": "Spain", "subcountry": "Basque Country"}, "Tetu\u00e1n De Las Victorias": {"country": "Spain", "subcountry": "Madrid"}, "Teruel": {"country": "Spain", "subcountry": "Aragon"}, "Teo": {"country": "Spain", "subcountry": "Galicia"}, "T\u00e0rrega": {"country": "Spain", "subcountry": "Catalonia"}, "Terrassa": {"country": "Spain", "subcountry": "Catalonia"}, "Tarragona": {"country": "Spain", "subcountry": "Catalonia"}, "Taranc\u00f3n": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Soria": {"country": "Spain", "subcountry": "Castille and Le\u00f3n"}, "Sitges": {"country": "Spain", "subcountry": "Catalonia"}, "Sestao": {"country": "Spain", "subcountry": "Basque Country"}, "Sese\u00f1a": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Cerdanyola Del Vall\u00e8s": {"country": "Spain", "subcountry": "Catalonia"}, "Sant Vicen\u00e7 Dels Horts": {"country": "Spain", "subcountry": "Catalonia"}, "Barakaldo": {"country": "Spain", "subcountry": "Basque Country"}, "Santurtzi": {"country": "Spain", "subcountry": "Basque Country"}, "Sant Just Desvern": {"country": "Spain", "subcountry": "Catalonia"}, "Santiago De Compostela": {"country": "Spain", "subcountry": "Galicia"}, "Santa Perp\u00e8tua De Mogoda": {"country": "Spain", "subcountry": "Catalonia"}, "Santander": {"country": "Spain", "subcountry": "Cantabria"}, "Barber\u00e0 Del Vall\u00e8s": {"country": "Spain", "subcountry": "Catalonia"}, "Santa Coloma De Gramenet": {"country": "Spain", "subcountry": "Catalonia"}, "San Sebasti\u00e1n De Los Reyes": {"country": "Spain", "subcountry": "Madrid"}, "Donostia / San Sebasti\u00e1n": {"country": "Spain", "subcountry": "Basque Country"}, "Sant Quirze Del Vall\u00e8s": {"country": "Spain", "subcountry": "Catalonia"}, "Sant Pere De Ribes": {"country": "Spain", "subcountry": "Catalonia"}, "San Mart\u00edn De La Vega": {"country": "Spain", "subcountry": "Madrid"}, "San Lorenzo De El Escorial": {"country": "Spain", "subcountry": "Madrid"}, "Vilassar De Mar": {"country": "Spain", "subcountry": "Catalonia"}, "Sant Joan Desp\u00ed": {"country": "Spain", "subcountry": "Catalonia"}, "Sanxenxo": {"country": "Spain", "subcountry": "Galicia"}, "San Fernando De Henares": {"country": "Spain", "subcountry": "Madrid"}, "Sant Feliu De Llobregat": {"country": "Spain", "subcountry": "Catalonia"}, "Sant Feliu De Gu\u00edxols": {"country": "Spain", "subcountry": "Catalonia"}, "Sant Cugat Del Vall\u00e8s": {"country": "Spain", "subcountry": "Catalonia"}, "Sant Celoni": {"country": "Spain", "subcountry": "Catalonia"}, "Sant Carles De La R\u00e0pita": {"country": "Spain", "subcountry": "Catalonia"}, "Sant Boi De Llobregat": {"country": "Spain", "subcountry": "Catalonia"}, "Sant Andreu De Palomar": {"country": "Spain", "subcountry": "Catalonia"}, "San Andr\u00e9s Del Rabanedo": {"country": "Spain", "subcountry": "Castille and Le\u00f3n"}, "Sant Andreu De La Barca": {"country": "Spain", "subcountry": "Catalonia"}, "Sant Adri\u00e0 De Bes\u00f2s": {"country": "Spain", "subcountry": "Catalonia"}, "Sama": {"country": "Spain", "subcountry": "Asturias"}, "Salt": {"country": "Spain", "subcountry": "Catalonia"}, "Salou": {"country": "Spain", "subcountry": "Catalonia"}, "Salamanca": {"country": "Mexico", "subcountry": "Guanajuato"}, "Sabadell": {"country": "Spain", "subcountry": "Catalonia"}, "Rub\u00ed": {"country": "Spain", "subcountry": "Catalonia"}, "Roses": {"country": "Spain", "subcountry": "Catalonia"}, "Ripollet": {"country": "Spain", "subcountry": "Catalonia"}, "Ribeira": {"country": "Spain", "subcountry": "Galicia"}, "Reus": {"country": "Spain", "subcountry": "Catalonia"}, "Errenteria": {"country": "Spain", "subcountry": "Basque Country"}, "Redondela": {"country": "Spain", "subcountry": "Galicia"}, "Puente De Vallecas": {"country": "Spain", "subcountry": "Madrid"}, "Ponteareas": {"country": "Spain", "subcountry": "Galicia"}, "Premi\u00e0 De Mar": {"country": "Spain", "subcountry": "Catalonia"}, "Pozuelo De Alarc\u00f3n": {"country": "Spain", "subcountry": "Madrid"}, "Poio": {"country": "Spain", "subcountry": "Galicia"}, "Portugalete": {"country": "Spain", "subcountry": "Basque Country"}, "Porri\u00f1o": {"country": "Spain", "subcountry": "Galicia"}, "Ponferrada": {"country": "Spain", "subcountry": "Castille and Le\u00f3n"}, "Plasencia": {"country": "Spain", "subcountry": "Extremadura"}, "Pinto": {"country": "Spain", "subcountry": "Madrid"}, "Pineda De Mar": {"country": "Spain", "subcountry": "Catalonia"}, "Parla": {"country": "Spain", "subcountry": "Madrid"}, "Parets Del Vall\u00e8s": {"country": "Spain", "subcountry": "Catalonia"}, "Palencia": {"country": "Guatemala", "subcountry": "Guatemala"}, "Palam\u00f3s": {"country": "Spain", "subcountry": "Catalonia"}, "Palafrugell": {"country": "Spain", "subcountry": "Catalonia"}, "Oviedo": {"country": "United States", "subcountry": "Florida"}, "Oria": {"country": "Spain", "subcountry": "Basque Country"}, "Ourense": {"country": "Spain", "subcountry": "Galicia"}, "Olot": {"country": "Spain", "subcountry": "Catalonia"}, "Olesa De Montserrat": {"country": "Spain", "subcountry": "Catalonia"}, "Oleiros": {"country": "Spain", "subcountry": "Galicia"}, "Nigr\u00e1n": {"country": "Spain", "subcountry": "Galicia"}, "Navalcarnero": {"country": "Spain", "subcountry": "Madrid"}, "Nar\u00f3n": {"country": "Spain", "subcountry": "Galicia"}, "Mungia": {"country": "Spain", "subcountry": "Basque Country"}, "M\u00f3stoles": {"country": "Spain", "subcountry": "Madrid"}, "Moratalaz": {"country": "Spain", "subcountry": "Madrid"}, "Monz\u00f3n": {"country": "Spain", "subcountry": "Aragon"}, "Montorn\u00e8s Del Vall\u00e8s": {"country": "Spain", "subcountry": "Catalonia"}, "Monforte De Lemos": {"country": "Spain", "subcountry": "Galicia"}, "Arrasate / Mondrag\u00f3n": {"country": "Spain", "subcountry": "Basque Country"}, "Montcada I Reixac": {"country": "Spain", "subcountry": "Catalonia"}, "Mollet Del Vall\u00e8s": {"country": "Spain", "subcountry": "Catalonia"}, "Molins De Rei": {"country": "Spain", "subcountry": "Catalonia"}, "Moa\u00f1a": {"country": "Spain", "subcountry": "Galicia"}, "Miranda De Ebro": {"country": "Spain", "subcountry": "Castille and Le\u00f3n"}, "Mieres": {"country": "Spain", "subcountry": "Asturias"}, "Mejorada Del Campo": {"country": "Spain", "subcountry": "Madrid"}, "Medina Del Campo": {"country": "Spain", "subcountry": "Castille and Le\u00f3n"}, "Matar\u00f3": {"country": "Spain", "subcountry": "Catalonia"}, "El Masnou": {"country": "Spain", "subcountry": "Catalonia"}, "Martorell": {"country": "Spain", "subcountry": "Catalonia"}, "Mar\u00edn": {"country": "Spain", "subcountry": "Galicia"}, "Manresa": {"country": "Spain", "subcountry": "Catalonia"}, "Manlleu": {"country": "Spain", "subcountry": "Catalonia"}, "Malgrat De Mar": {"country": "Spain", "subcountry": "Catalonia"}, "Majadahonda": {"country": "Spain", "subcountry": "Madrid"}, "Lugo": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Logro\u00f1o": {"country": "Spain", "subcountry": "La Rioja"}, "Lloret De Mar": {"country": "Spain", "subcountry": "Catalonia"}, "Laudio / Llodio": {"country": "Spain", "subcountry": "Basque Country"}, "Lleida": {"country": "Spain", "subcountry": "Catalonia"}, "Le\u00f3n": {"country": "Nicaragua", "subcountry": "Le\u00f3n"}, "Leioa": {"country": "Spain", "subcountry": "Basque Country"}, "Legan\u00e9s": {"country": "Spain", "subcountry": "Madrid"}, "Las Rozas De Madrid": {"country": "Spain", "subcountry": "Madrid"}, "Lasarte": {"country": "Spain", "subcountry": "Basque Country"}, "La Pineda": {"country": "Spain", "subcountry": "Catalonia"}, "Lal\u00edn": {"country": "Spain", "subcountry": "Galicia"}, "Laguna De Duero": {"country": "Spain", "subcountry": "Castille and Le\u00f3n"}, "A Estrada": {"country": "Spain", "subcountry": "Galicia"}, "A Coru\u00f1a": {"country": "Spain", "subcountry": "Galicia"}, "Irun": {"country": "Spain", "subcountry": "Basque Country"}, "Illescas": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Igualada": {"country": "Spain", "subcountry": "Catalonia"}, "Humanes De Madrid": {"country": "Spain", "subcountry": "Madrid"}, "Huesca": {"country": "Spain", "subcountry": "Aragon"}, "L'Hospitalet De Llobregat": {"country": "Spain", "subcountry": "Catalonia"}, "Hortaleza": {"country": "Spain", "subcountry": "Madrid"}, "Hernani": {"country": "Spain", "subcountry": "Basque Country"}, "Gernika-Lumo": {"country": "Spain", "subcountry": "Basque Country"}, "Getxo": {"country": "Spain", "subcountry": "Basque Country"}, "Guadalajara": {"country": "Mexico", "subcountry": "Jalisco"}, "Granollers": {"country": "Spain", "subcountry": "Catalonia"}, "Gr\u00e0cia": {"country": "Spain", "subcountry": "Catalonia"}, "Gij\u00f3n": {"country": "Spain", "subcountry": "Asturias"}, "Getafe": {"country": "Spain", "subcountry": "Madrid"}, "Girona": {"country": "Spain", "subcountry": "Catalonia"}, "Gav\u00e0": {"country": "Spain", "subcountry": "Catalonia"}, "Galdakao": {"country": "Spain", "subcountry": "Basque Country"}, "Galapagar": {"country": "Spain", "subcountry": "Madrid"}, "Hondarribia": {"country": "Spain", "subcountry": "Basque Country"}, "Fuenlabrada": {"country": "Spain", "subcountry": "Madrid"}, "Figueras": {"country": "Spain", "subcountry": "Asturias"}, "Figueres": {"country": "Spain", "subcountry": "Catalonia"}, "Esplugues De Llobregat": {"country": "Spain", "subcountry": "Catalonia"}, "Esparreguera": {"country": "Spain", "subcountry": "Catalonia"}, "Ermua": {"country": "Spain", "subcountry": "Basque Country"}, "Erandio": {"country": "Spain", "subcountry": "Basque Country"}, "El Prat De Llobregat": {"country": "Spain", "subcountry": "Catalonia"}, "Ferrol": {"country": "Spain", "subcountry": "Galicia"}, "El Astillero": {"country": "Spain", "subcountry": "Cantabria"}, "Ejea De Los Caballeros": {"country": "Spain", "subcountry": "Aragon"}, "Eibar": {"country": "Spain", "subcountry": "Basque Country"}, "Durango": {"country": "United States", "subcountry": "Colorado"}, "Culleredo": {"country": "Spain", "subcountry": "Galicia"}, "Coslada": {"country": "Spain", "subcountry": "Madrid"}, "Cornell\u00e0 De Llobregat": {"country": "Spain", "subcountry": "Catalonia"}, "Colmenar Viejo": {"country": "Spain", "subcountry": "Madrid"}, "Collado-Villalba": {"country": "Spain", "subcountry": "Madrid"}, "Ciudad Lineal": {"country": "Spain", "subcountry": "Madrid"}, "Ciutadella": {"country": "Spain", "subcountry": "Balearic Islands"}, "Ciempozuelos": {"country": "Spain", "subcountry": "Madrid"}, "Chamart\u00edn": {"country": "Spain", "subcountry": "Madrid"}, "Castro-Urdiales": {"country": "Spain", "subcountry": "Cantabria"}, "Castelldefels": {"country": "Spain", "subcountry": "Catalonia"}, "Castellar Del Vall\u00e8s": {"country": "Spain", "subcountry": "Catalonia"}, "Cardedeu": {"country": "Spain", "subcountry": "Catalonia"}, "Carballo": {"country": "Spain", "subcountry": "Galicia"}, "Canovelles": {"country": "Spain", "subcountry": "Catalonia"}, "Cangas Do Morrazo": {"country": "Spain", "subcountry": "Galicia"}, "Cambrils": {"country": "Spain", "subcountry": "Catalonia"}, "Cambre": {"country": "Spain", "subcountry": "Galicia"}, "Camargo": {"country": "Spain", "subcountry": "Cantabria"}, "Calella": {"country": "Spain", "subcountry": "Catalonia"}, "Caldes De Montbui": {"country": "Spain", "subcountry": "Catalonia"}, "Calatayud": {"country": "Spain", "subcountry": "Aragon"}, "Calahorra": {"country": "Spain", "subcountry": "La Rioja"}, "Calafell": {"country": "Spain", "subcountry": "Catalonia"}, "Burlata": {"country": "Spain", "subcountry": "Navarre"}, "Burgos": {"country": "Philippines", "subcountry": "Central Luzon"}, "Boiro": {"country": "Spain", "subcountry": "Galicia"}, "Boadilla Del Monte": {"country": "Spain", "subcountry": "Madrid"}, "Blanes": {"country": "Spain", "subcountry": "Catalonia"}, "Bilbao": {"country": "Spain", "subcountry": "Basque Country"}, "Bermeo": {"country": "Spain", "subcountry": "Basque Country"}, "Berga": {"country": "Spain", "subcountry": "Catalonia"}, "Benic\u00e0ssim": {"country": "Spain", "subcountry": "Valencia"}, "Benicarl\u00f3": {"country": "Spain", "subcountry": "Valencia"}, "Benavente": {"country": "Spain", "subcountry": "Castille and Le\u00f3n"}, "B\u00e9jar": {"country": "Spain", "subcountry": "Castille and Le\u00f3n"}, "Barcelona": {"country": "Venezuela", "subcountry": "Anzo\u00e1tegui"}, "Barbastro": {"country": "Spain", "subcountry": "Aragon"}, "Bara\u00f1\u00e1in": {"country": "Spain", "subcountry": "Navarre"}, "Barajas De Madrid": {"country": "Spain", "subcountry": "Madrid"}, "Banyoles": {"country": "Spain", "subcountry": "Catalonia"}, "Balaguer": {"country": "Spain", "subcountry": "Catalonia"}, "Badalona": {"country": "Spain", "subcountry": "Catalonia"}, "Azuqueca De Henares": {"country": "Spain", "subcountry": "Castille-La Mancha"}, "Avil\u00e9s": {"country": "Spain", "subcountry": "Asturias"}, "\u00c1vila": {"country": "Spain", "subcountry": "Castille and Le\u00f3n"}, "Arteixo": {"country": "Spain", "subcountry": "Galicia"}, "Arganda": {"country": "Spain", "subcountry": "Madrid"}, "Aranjuez": {"country": "Spain", "subcountry": "Madrid"}, "Aranda De Duero": {"country": "Spain", "subcountry": "Castille and Le\u00f3n"}, "Amposta": {"country": "Spain", "subcountry": "Catalonia"}, "Amorebieta": {"country": "Spain", "subcountry": "Basque Country"}, "Am\u00e9s": {"country": "Spain", "subcountry": "Galicia"}, "Algorta": {"country": "Spain", "subcountry": "Basque Country"}, "Algete": {"country": "Spain", "subcountry": "Madrid"}, "Alcorc\u00f3n": {"country": "Spain", "subcountry": "Madrid"}, "Alcobendas": {"country": "Spain", "subcountry": "Madrid"}, "Alca\u00f1iz": {"country": "Spain", "subcountry": "Aragon"}, "Alcal\u00e1 De Henares": {"country": "Spain", "subcountry": "Madrid"}, "Nou Barris": {"country": "Spain", "subcountry": "Catalonia"}, "Pinar De Chamart\u00edn": {"country": "Spain", "subcountry": "Madrid"}, "Playa Del Ingles": {"country": "Spain", "subcountry": "Canary Islands"}, "Puerto Del Carmen": {"country": "Spain", "subcountry": "Canary Islands"}, "Ceuta": {"country": "Spain", "subcountry": "Ceuta"}, "Moncloa-Aravaca": {"country": "Spain", "subcountry": "Madrid"}, "Eixample": {"country": "Spain", "subcountry": "Catalonia"}, "Les Corts": {"country": "Spain", "subcountry": "Catalonia"}, "Sarri\u00e0-Sant Gervasi": {"country": "Spain", "subcountry": "Catalonia"}, "Horta-Guinard\u00f3": {"country": "Spain", "subcountry": "Catalonia"}, "Sants-Montju\u00efc": {"country": "Spain", "subcountry": "Catalonia"}, "Sant Mart\u00ed": {"country": "Spain", "subcountry": "Catalonia"}, "Ciutat Vella": {"country": "Spain", "subcountry": "Catalonia"}, "Arganzuela": {"country": "Spain", "subcountry": "Madrid"}, "San Blas": {"country": "Spain", "subcountry": "Madrid"}, "Latina": {"country": "Italy", "subcountry": "Latium"}, "Usera": {"country": "Spain", "subcountry": "Madrid"}, "Chamber\u00ed": {"country": "Spain", "subcountry": "Madrid"}, "Carabanchel": {"country": "Spain", "subcountry": "Madrid"}, "City Center": {"country": "Spain", "subcountry": "Madrid"}, "L'Alf\u00e0s Del Pi": {"country": "Spain", "subcountry": "Valencia"}, "Las Gabias": {"country": "Spain", "subcountry": "Andalusia"}, "Delicias": {"country": "Spain", "subcountry": "Aragon"}, "Almozara": {"country": "Spain", "subcountry": "Aragon"}, "Montecanal": {"country": "Spain", "subcountry": "Aragon"}, "Oliver-Valdefierro": {"country": "Spain", "subcountry": "Aragon"}, "Santutxu": {"country": "Spain", "subcountry": "Basque Country"}, "Los Realejos": {"country": "Spain", "subcountry": "Canary Islands"}, "Pasaia": {"country": "Spain", "subcountry": "Basque Country"}, "Basauri": {"country": "Spain", "subcountry": "Basque Country"}, "Llefi\u00e0": {"country": "Spain", "subcountry": "Catalonia"}, "Corvera De Asturias": {"country": "Spain", "subcountry": "Asturias"}, "Tres Cantos": {"country": "Spain", "subcountry": "Madrid"}, "Iturrama": {"country": "Spain", "subcountry": "Navarre"}, "Ermitaga\u00f1a": {"country": "Spain", "subcountry": "Navarre"}, "Primer Ensanche": {"country": "Spain", "subcountry": "Navarre"}, "Segundo Ensanche": {"country": "Spain", "subcountry": "Navarre"}, "Fuencarral-El Pardo": {"country": "Spain", "subcountry": "Madrid"}, "Villa De Vallecas": {"country": "Spain", "subcountry": "Madrid"}, "Natahoyo": {"country": "Spain", "subcountry": "Asturias"}, "Ziway": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Yirga \u2018Alem": {"country": "Ethiopia", "subcountry": "Southern Nations, Nationalities, and People's Region"}, "Yab\u0113lo": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Werota": {"country": "Ethiopia", "subcountry": "Amhara"}, "Wenj\u012b": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Tippi": {"country": "Ethiopia", "subcountry": "Southern Nations, Nationalities, and People's Region"}, "Shashemen\u0113": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Shambu": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Shak\u012bso": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Sebeta": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Rob\u012bt": {"country": "Ethiopia", "subcountry": "Amhara"}, "Nejo": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Nazr\u0113t": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Mojo": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Metu": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Metah\u0101ra": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Mend\u012b": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Mekele": {"country": "Ethiopia", "subcountry": "Tigray"}, "Maych\u2019Ew": {"country": "Ethiopia", "subcountry": "Tigray"}, "Korem": {"country": "Ethiopia", "subcountry": "Tigray"}, "K\u2019Ol\u012bto": {"country": "Ethiopia", "subcountry": "Southern Nations, Nationalities, and People's Region"}, "Kibre Mengist": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Kemis\u0113": {"country": "Ethiopia", "subcountry": "Amhara"}, "Kombolcha": {"country": "Ethiopia", "subcountry": "Amhara"}, "Jinka": {"country": "Ethiopia", "subcountry": "Southern Nations, Nationalities, and People's Region"}, "J\u012bma": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Jijiga": {"country": "Ethiopia", "subcountry": "Somali"}, "Inda Silas\u0113": {"country": "Ethiopia", "subcountry": "Tigray"}, "Harar": {"country": "Ethiopia", "subcountry": "Harari"}, "H\u0101gere Hiywet": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Gondar": {"country": "Ethiopia", "subcountry": "Amhara"}, "Goba": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Waliso": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Ginir": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Gimbi": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Genet": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Gelemso": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Gebre Guracha": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Gamb\u0113la": {"country": "Ethiopia", "subcountry": "Gambela"}, "Finote Selam": {"country": "Ethiopia", "subcountry": "Amhara"}, "Fich\u0113": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Felege Neway": {"country": "Ethiopia", "subcountry": "Southern Nations, Nationalities, and People's Region"}, "Dubti": {"country": "Ethiopia", "subcountry": "\u0100far"}, "Dodola": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Dire Dawa": {"country": "Ethiopia", "subcountry": "Dire Dawa"}, "D\u012bla": {"country": "Ethiopia", "subcountry": "Southern Nations, Nationalities, and People's Region"}, "Des\u0113": {"country": "Ethiopia", "subcountry": "Amhara"}, "Demb\u012b Dolo": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Bishoftu": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Debre Tabor": {"country": "Ethiopia", "subcountry": "Amhara"}, "Debre Mark\u2019Os": {"country": "Ethiopia", "subcountry": "Amhara"}, "Debre Birhan": {"country": "Ethiopia", "subcountry": "Amhara"}, "Debark\u2019": {"country": "Ethiopia", "subcountry": "Amhara"}, "Butaj\u012bra": {"country": "Ethiopia", "subcountry": "Southern Nations, Nationalities, and People's Region"}, "Bur\u0113": {"country": "Ethiopia", "subcountry": "Amhara"}, "Bonga": {"country": "Ethiopia", "subcountry": "Southern Nations, Nationalities, and People's Region"}, "Bod\u012bt\u012b": {"country": "Ethiopia", "subcountry": "Southern Nations, Nationalities, and People's Region"}, "Bichena": {"country": "Ethiopia", "subcountry": "Amhara"}, "Bed\u0113sa": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Bedel\u0113": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Bat\u012b": {"country": "Ethiopia", "subcountry": "Amhara"}, "Bako": {"country": "Ethiopia", "subcountry": "Southern Nations, Nationalities, and People's Region"}, "Bahir Dar": {"country": "Ethiopia", "subcountry": "Amhara"}, "Hawassa": {"country": "Ethiopia", "subcountry": "Southern Nations, Nationalities, and People's Region"}, "\u0100sosa": {"country": "Ethiopia", "subcountry": "B\u012bnshangul Gumuz"}, "\u0100sbe Tefer\u012b": {"country": "Ethiopia", "subcountry": "Oromiya"}, "Asaita": {"country": "Ethiopia", "subcountry": "\u0100far"}, "\u0100sasa": {"country": "Ethiopia", "subcountry": "Oromiya"}, "\u0100reka": {"country": "Ethiopia", "subcountry": "Southern Nations, Nationalities, and People's Region"}, "\u0100rba Minch\u2019": {"country": "Ethiopia", "subcountry": "Southern Nations, Nationalities, and People's Region"}, "Axum": {"country": "Ethiopia", "subcountry": "Tigray"}, "Hagere Maryam": {"country": "Ethiopia", "subcountry": "Oromiya"}, "\u0100garo": {"country": "Ethiopia", "subcountry": "Oromiya"}, "\u0100d\u012bs Zemen": {"country": "Ethiopia", "subcountry": "Amhara"}, "Addis Ababa": {"country": "Ethiopia", "subcountry": "\u0100d\u012bs \u0100beba"}, "\u0100d\u012bgrat": {"country": "Ethiopia", "subcountry": "Tigray"}, "Addiet Canna": {"country": "Ethiopia", "subcountry": "Amhara"}, "Abomsa": {"country": "Ethiopia", "subcountry": "Amhara"}, "Yl\u00f6j\u00e4rvi": {"country": "Finland", "subcountry": "Pirkanmaa"}, "Vihti": {"country": "Finland", "subcountry": "Uusimaa"}, "Varkaus": {"country": "Finland", "subcountry": "Northern Savo"}, "Vantaa": {"country": "Finland", "subcountry": "Uusimaa"}, "Valkeakoski": {"country": "Finland", "subcountry": "Pirkanmaa"}, "Vaasa": {"country": "Finland", "subcountry": "Ostrobothnia"}, "Uusikaupunki": {"country": "Finland", "subcountry": "Southwest Finland"}, "Tuusula": {"country": "Finland", "subcountry": "Uusimaa"}, "Turku": {"country": "Finland", "subcountry": "Southwest Finland"}, "Tornio": {"country": "Finland", "subcountry": "Lapland"}, "Tampere": {"country": "Finland", "subcountry": "Pirkanmaa"}, "Siilinj\u00e4rvi": {"country": "Finland", "subcountry": "Northern Savo"}, "Sibbo": {"country": "Finland", "subcountry": "Uusimaa"}, "Sein\u00e4joki": {"country": "Finland", "subcountry": "Southern Ostrobothnia"}, "Savonlinna": {"country": "Finland", "subcountry": "Southern Savonia"}, "Salo": {"country": "Finland", "subcountry": "Southwest Finland"}, "Rovaniemi": {"country": "Finland", "subcountry": "Lapland"}, "Riihim\u00e4ki": {"country": "Finland", "subcountry": "H\u00e4me"}, "Rauma": {"country": "Finland", "subcountry": "Satakunta"}, "Raisio": {"country": "Finland", "subcountry": "Southwest Finland"}, "Raahe": {"country": "Finland", "subcountry": "Northern Ostrobothnia"}, "Pori": {"country": "Finland", "subcountry": "Satakunta"}, "Pirkkala": {"country": "Finland", "subcountry": "Pirkanmaa"}, "Oulu": {"country": "Finland", "subcountry": "Northern Ostrobothnia"}, "Nurmij\u00e4rvi": {"country": "Finland", "subcountry": "Uusimaa"}, "Nokia": {"country": "Finland", "subcountry": "Pirkanmaa"}, "Mikkeli": {"country": "Finland", "subcountry": "Southern Savonia"}, "M\u00e4nts\u00e4l\u00e4": {"country": "Finland", "subcountry": "Uusimaa"}, "Lovisa": {"country": "Finland", "subcountry": "Uusimaa"}, "Lohja": {"country": "Finland", "subcountry": "Uusimaa"}, "Lieto": {"country": "Finland", "subcountry": "Southwest Finland"}, "Lemp\u00e4\u00e4l\u00e4": {"country": "Finland", "subcountry": "Pirkanmaa"}, "Laukaa": {"country": "Finland", "subcountry": "Central Finland"}, "Lappeenranta": {"country": "Finland", "subcountry": "South Karelia"}, "Lahti": {"country": "Finland", "subcountry": "P\u00e4ij\u00e4nne Tavastia"}, "Kirkkonummi": {"country": "Finland", "subcountry": "Uusimaa"}, "Kuusamo": {"country": "Finland", "subcountry": "Northern Ostrobothnia"}, "Kuopio": {"country": "Finland", "subcountry": "Northern Savo"}, "Kouvola": {"country": "Finland", "subcountry": "Kymenlaakso"}, "Kotka": {"country": "Finland", "subcountry": "Kymenlaakso"}, "Korsholm": {"country": "Finland", "subcountry": "Ostrobothnia"}, "Kokkola": {"country": "Finland", "subcountry": "Central Ostrobothnia"}, "Kerava": {"country": "Finland", "subcountry": "Uusimaa"}, "Kemi": {"country": "Finland", "subcountry": "Lapland"}, "Karhula": {"country": "Finland", "subcountry": "Kymenlaakso"}, "Kangasala": {"country": "Finland", "subcountry": "Pirkanmaa"}, "Kajaani": {"country": "Finland", "subcountry": "Kainuu"}, "Kaarina": {"country": "Finland", "subcountry": "Southwest Finland"}, "Jyv\u00e4skyl\u00e4": {"country": "Finland", "subcountry": "Central Finland"}, "Joensuu": {"country": "Finland", "subcountry": "North Karelia"}, "J\u00e4rvenp\u00e4\u00e4": {"country": "Finland", "subcountry": "Uusimaa"}, "Janakkala": {"country": "Finland", "subcountry": "H\u00e4me"}, "J\u00e4ms\u00e4": {"country": "Finland", "subcountry": "Central Finland"}, "Jakobstad": {"country": "Finland", "subcountry": "Ostrobothnia"}, "Imatra": {"country": "Finland", "subcountry": "South Karelia"}, "Iisalmi": {"country": "Finland", "subcountry": "Northern Savo"}, "Hyvinge": {"country": "Finland", "subcountry": "Uusimaa"}, "Hollola": {"country": "Finland", "subcountry": "P\u00e4ij\u00e4nne Tavastia"}, "Helsinki": {"country": "Finland", "subcountry": "Uusimaa"}, "Heinola": {"country": "Finland", "subcountry": "P\u00e4ij\u00e4nne Tavastia"}, "Haukipudas": {"country": "Finland", "subcountry": "Northern Ostrobothnia"}, "Hamina": {"country": "Finland", "subcountry": "Kymenlaakso"}, "H\u00e4meenlinna": {"country": "Finland", "subcountry": "H\u00e4me"}, "Forssa": {"country": "Finland", "subcountry": "H\u00e4me"}, "Espoo": {"country": "Finland", "subcountry": "Uusimaa"}, "Porvoo": {"country": "Finland", "subcountry": "Uusimaa"}, "Anjala": {"country": "Finland", "subcountry": "Kymenlaakso"}, "L\u00e4nsi-Turunmaa": {"country": "Finland", "subcountry": "Southwest Finland"}, "Suva": {"country": "Fiji", "subcountry": "Central"}, "Nadi": {"country": "Fiji", "subcountry": "Western"}, "Lautoka": {"country": "Fiji", "subcountry": "Western"}, "Labasa": {"country": "Fiji", "subcountry": "Northern"}, "Stanley": {"country": "United Kingdom", "subcountry": "England"}, "Palikir - National Government Center": {"country": "Micronesia", "subcountry": "Pohnpei"}, "T\u00f3rshavn": {"country": "Faroe Islands", "subcountry": "Streymoy"}, "Yerres": {"country": "France", "subcountry": "\u00cele-de-France"}, "Wittenheim": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Wattrelos": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Wasquehal": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Voiron": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Vitry-Sur-Seine": {"country": "France", "subcountry": "\u00cele-de-France"}, "Vitry-Le-Fran\u00e7ois": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Vitrolles": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Vitr\u00e9": {"country": "France", "subcountry": "Brittany"}, "Viry-Ch\u00e2tillon": {"country": "France", "subcountry": "\u00cele-de-France"}, "Viroflay": {"country": "France", "subcountry": "\u00cele-de-France"}, "Vincennes": {"country": "United States", "subcountry": "Indiana"}, "Villiers-Sur-Marne": {"country": "France", "subcountry": "\u00cele-de-France"}, "Villiers-Le-Bel": {"country": "France", "subcountry": "\u00cele-de-France"}, "Villeurbanne": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Villers-L\u00e8s-Nancy": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Villepinte": {"country": "France", "subcountry": "\u00cele-de-France"}, "Villeparisis": {"country": "France", "subcountry": "\u00cele-de-France"}, "Villeneuve-Sur-Lot": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Villeneuve-Saint-Georges": {"country": "France", "subcountry": "\u00cele-de-France"}, "Villeneuve-Le-Roi": {"country": "France", "subcountry": "\u00cele-de-France"}, "Villeneuve-La-Garenne": {"country": "France", "subcountry": "\u00cele-de-France"}, "Villenave-D\u2019Ornon": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Villemomble": {"country": "France", "subcountry": "\u00cele-de-France"}, "Villejuif": {"country": "France", "subcountry": "\u00cele-de-France"}, "Villefranche-Sur-Sa\u00f4ne": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Villefontaine": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Vigneux-Sur-Seine": {"country": "France", "subcountry": "\u00cele-de-France"}, "Vierzon": {"country": "France", "subcountry": "Centre"}, "Vienne": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Vichy": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Vesoul": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Vertou": {"country": "France", "subcountry": "Pays de la Loire"}, "Versailles": {"country": "France", "subcountry": "\u00cele-de-France"}, "Verri\u00e8res-Le-Buisson": {"country": "France", "subcountry": "\u00cele-de-France"}, "Verneuil-Sur-Seine": {"country": "France", "subcountry": "\u00cele-de-France"}, "Verdun": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "V\u00e9nissieux": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Vend\u00f4me": {"country": "France", "subcountry": "Centre"}, "Vence": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "V\u00e9lizy-Villacoublay": {"country": "France", "subcountry": "\u00cele-de-France"}, "Vaur\u00e9al": {"country": "France", "subcountry": "\u00cele-de-France"}, "Vaulx-En-Velin": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Vanves": {"country": "France", "subcountry": "\u00cele-de-France"}, "Vannes": {"country": "France", "subcountry": "Brittany"}, "Vand\u0153uvre-L\u00e8s-Nancy": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Vallauris": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Valenciennes": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Valence": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Tulle": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Troyes": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Tremblay-En-France": {"country": "France", "subcountry": "\u00cele-de-France"}, "Trappes": {"country": "France", "subcountry": "\u00cele-de-France"}, "Tours": {"country": "France", "subcountry": "Centre"}, "Tournefeuille": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Tourlaville": {"country": "France", "subcountry": "Normandy"}, "Tourcoing": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Toulouse": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Toulon": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Toul": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Torcy": {"country": "France", "subcountry": "\u00cele-de-France"}, "Thonon-Les-Bains": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Thionville": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Thiais": {"country": "France", "subcountry": "\u00cele-de-France"}, "Tergnier": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Taverny": {"country": "France", "subcountry": "\u00cele-de-France"}, "Tassin-La-Demi-Lune": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Tarbes": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Talence": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Suresnes": {"country": "France", "subcountry": "\u00cele-de-France"}, "Sucy-En-Brie": {"country": "France", "subcountry": "\u00cele-de-France"}, "Strasbourg": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Stains": {"country": "France", "subcountry": "\u00cele-de-France"}, "Sotteville-L\u00e8s-Rouen": {"country": "France", "subcountry": "Normandy"}, "Sorgues": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Soisy-Sous-Montmorency": {"country": "France", "subcountry": "\u00cele-de-France"}, "Soissons": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Six-Fours-Les-Plages": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Sin-Le-Noble": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Seynod": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "S\u00e8vres": {"country": "France", "subcountry": "\u00cele-de-France"}, "Sevran": {"country": "France", "subcountry": "\u00cele-de-France"}, "S\u00e8te": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Sens": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Senlis": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "S\u00e9lestat": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Sedan": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Schiltigheim": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Sceaux": {"country": "France", "subcountry": "\u00cele-de-France"}, "Savigny-Sur-Orge": {"country": "France", "subcountry": "\u00cele-de-France"}, "Savigny-Le-Temple": {"country": "France", "subcountry": "\u00cele-de-France"}, "Saumur": {"country": "France", "subcountry": "Pays de la Loire"}, "Sartrouville": {"country": "France", "subcountry": "\u00cele-de-France"}, "Sarreguemines": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Sarcelles": {"country": "France", "subcountry": "\u00cele-de-France"}, "Saran": {"country": "France", "subcountry": "Centre"}, "Sannois": {"country": "France", "subcountry": "\u00cele-de-France"}, "Sanary-Sur-Mer": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Salon-De-Provence": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Sallanches": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Saint-S\u00e9bastien-Sur-Loire": {"country": "France", "subcountry": "Pays de la Loire"}, "Saint-Rapha\u00ebl": {"country": "Haiti", "subcountry": "Nord"}, "Saint-Quentin": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Saint-Priest": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Saint-Pol-Sur-Mer": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Saint-Pierre-Des-Corps": {"country": "France", "subcountry": "Centre"}, "Saint-Ouen-L\u2019Aum\u00f4ne": {"country": "France", "subcountry": "\u00cele-de-France"}, "Saint-Ouen": {"country": "France", "subcountry": "\u00cele-de-France"}, "Saint-Omer": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Saint-Nazaire": {"country": "France", "subcountry": "Pays de la Loire"}, "Saint-Michel-Sur-Orge": {"country": "France", "subcountry": "\u00cele-de-France"}, "Saint-M\u00e9dard-En-Jalles": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Saint-Maximin-La-Sainte-Baume": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Saint-Maur-Des-Foss\u00e9s": {"country": "France", "subcountry": "\u00cele-de-France"}, "Saint-Martin-D\u2019H\u00e8res": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Saint-Mand\u00e9": {"country": "France", "subcountry": "\u00cele-de-France"}, "Saint-Malo": {"country": "France", "subcountry": "Brittany"}, "Saint-Louis": {"country": "Senegal", "subcountry": "Saint-Louis"}, "Saint-L\u00f4": {"country": "France", "subcountry": "Normandy"}, "Saint-Leu-La-For\u00eat": {"country": "France", "subcountry": "\u00cele-de-France"}, "Saint-Leu": {"country": "Reunion", "subcountry": "R\u00e9union"}, "Saint-Laurent-Du-Var": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Saint-Jean-De-La-Ruelle": {"country": "France", "subcountry": "Centre"}, "Saint-Jean-De-Braye": {"country": "France", "subcountry": "Centre"}, "Saint-Herblain": {"country": "France", "subcountry": "Pays de la Loire"}, "Saint-Gratien": {"country": "France", "subcountry": "\u00cele-de-France"}, "Saint-Germain-En-Laye": {"country": "France", "subcountry": "\u00cele-de-France"}, "Saint-Genis-Laval": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Saint-Fons": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Saint-\u00c9tienne-Du-Rouvray": {"country": "France", "subcountry": "Normandy"}, "Saint-\u00c9tienne": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Saintes": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Sainte-Genevi\u00e8ve-Des-Bois": {"country": "France", "subcountry": "\u00cele-de-France"}, "Sainte-Foy-L\u00e8s-Lyon": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Saint-\u00c9gr\u00e8ve": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Saint-Dizier": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Saint-Di\u00e9-Des-Vosges": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Saint-Denis": {"country": "Reunion", "subcountry": "R\u00e9union"}, "Saint-Cyr-Sur-Loire": {"country": "France", "subcountry": "Centre"}, "Saint-Cyr-L\u2019\u00c9cole": {"country": "France", "subcountry": "\u00cele-de-France"}, "Saint-Cloud": {"country": "France", "subcountry": "\u00cele-de-France"}, "Saint-Chamond": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Saint-Brieuc": {"country": "France", "subcountry": "Brittany"}, "Saint-Avold": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Saint-Avertin": {"country": "France", "subcountry": "Centre"}, "Saint-Amand-Les-Eaux": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Rueil-Malmaison": {"country": "France", "subcountry": "\u00cele-de-France"}, "Royan": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Rouen": {"country": "France", "subcountry": "Normandy"}, "Roubaix": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Rosny-Sous-Bois": {"country": "France", "subcountry": "\u00cele-de-France"}, "Ronchin": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Romorantin-Lanthenay": {"country": "France", "subcountry": "Centre"}, "Romans-Sur-Is\u00e8re": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Romainville": {"country": "France", "subcountry": "\u00cele-de-France"}, "Roissy-En-Brie": {"country": "France", "subcountry": "\u00cele-de-France"}, "Rodez": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Rochefort": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Roanne": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Ris-Orangis": {"country": "France", "subcountry": "\u00cele-de-France"}, "Riom": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Rillieux-La-Pape": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Rez\u00e9": {"country": "France", "subcountry": "Pays de la Loire"}, "Rennes": {"country": "France", "subcountry": "Brittany"}, "Reims": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Rambouillet": {"country": "France", "subcountry": "\u00cele-de-France"}, "Quimper": {"country": "France", "subcountry": "Brittany"}, "Puteaux": {"country": "France", "subcountry": "\u00cele-de-France"}, "Port-De-Bouc": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Pontoise": {"country": "France", "subcountry": "\u00cele-de-France"}, "Pontivy": {"country": "France", "subcountry": "Brittany"}, "Pontarlier": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Pont-\u00c0-Mousson": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Poitiers": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Poissy": {"country": "France", "subcountry": "\u00cele-de-France"}, "Ploemeur": {"country": "France", "subcountry": "Brittany"}, "Plaisir": {"country": "France", "subcountry": "\u00cele-de-France"}, "Plaisance-Du-Touch": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Pierrefitte-Sur-Seine": {"country": "France", "subcountry": "\u00cele-de-France"}, "Pessac": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Pertuis": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Perpignan": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "P\u00e9rigueux": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Pau": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Paris": {"country": "France", "subcountry": "\u00cele-de-France"}, "Pantin": {"country": "France", "subcountry": "\u00cele-de-France"}, "Pamiers": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Palaiseau": {"country": "France", "subcountry": "\u00cele-de-France"}, "Ozoir-La-Ferri\u00e8re": {"country": "France", "subcountry": "\u00cele-de-France"}, "Oyonnax": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Outreau": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Oullins": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Osny": {"country": "France", "subcountry": "\u00cele-de-France"}, "Orvault": {"country": "France", "subcountry": "Pays de la Loire"}, "Orsay": {"country": "France", "subcountry": "\u00cele-de-France"}, "Orly": {"country": "France", "subcountry": "\u00cele-de-France"}, "Orl\u00e9ans": {"country": "France", "subcountry": "Centre"}, "Olivet": {"country": "France", "subcountry": "Centre"}, "Octeville": {"country": "France", "subcountry": "Normandy"}, "Noyon": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Noisy-Le-Sec": {"country": "France", "subcountry": "\u00cele-de-France"}, "Noisy-Le-Grand": {"country": "France", "subcountry": "\u00cele-de-France"}, "Noisiel": {"country": "France", "subcountry": "\u00cele-de-France"}, "Nogent-Sur-Oise": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Nogent-Sur-Marne": {"country": "France", "subcountry": "\u00cele-de-France"}, "Niort": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "N\u00eemes": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Nice": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Nevers": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Neuilly-Sur-Seine": {"country": "France", "subcountry": "\u00cele-de-France"}, "Neuilly-Sur-Marne": {"country": "France", "subcountry": "\u00cele-de-France"}, "Neuilly-Plaisance": {"country": "France", "subcountry": "\u00cele-de-France"}, "Narbonne": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Nantes": {"country": "France", "subcountry": "Pays de la Loire"}, "Nanterre": {"country": "France", "subcountry": "\u00cele-de-France"}, "Nancy": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Muret": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Mulhouse": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Moulins": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Mougins": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Morsang-Sur-Orge": {"country": "France", "subcountry": "\u00cele-de-France"}, "Morlaix": {"country": "France", "subcountry": "Brittany"}, "Mont-Saint-Aignan": {"country": "France", "subcountry": "Normandy"}, "Montrouge": {"country": "France", "subcountry": "\u00cele-de-France"}, "Montreuil": {"country": "France", "subcountry": "\u00cele-de-France"}, "Montpellier": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Montmorency": {"country": "France", "subcountry": "\u00cele-de-France"}, "Montlu\u00e7on": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Montivilliers": {"country": "France", "subcountry": "Normandy"}, "Montigny-L\u00e8s-Metz": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Montigny-L\u00e8s-Cormeilles": {"country": "France", "subcountry": "\u00cele-de-France"}, "Montigny-Le-Bretonneux": {"country": "France", "subcountry": "\u00cele-de-France"}, "Montgeron": {"country": "France", "subcountry": "\u00cele-de-France"}, "Montfermeil": {"country": "France", "subcountry": "\u00cele-de-France"}, "Montesson": {"country": "France", "subcountry": "\u00cele-de-France"}, "Montereau-Fault-Yonne": {"country": "France", "subcountry": "\u00cele-de-France"}, "Mont\u00e9limar": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Mont-De-Marsan": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Montceau-Les-Mines": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Montbrison": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Montb\u00e9liard": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Montauban": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Montargis": {"country": "France", "subcountry": "Centre"}, "Mons-En-Bar\u0153ul": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Moissy-Cramayel": {"country": "France", "subcountry": "\u00cele-de-France"}, "Mitry-Mory": {"country": "France", "subcountry": "\u00cele-de-France"}, "Miramas": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Millau": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Meyzieu": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Meylan": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Meudon": {"country": "France", "subcountry": "\u00cele-de-France"}, "Metz": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "M\u00e9rignac": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Menton": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Melun": {"country": "France", "subcountry": "\u00cele-de-France"}, "Meaux": {"country": "France", "subcountry": "\u00cele-de-France"}, "Mayenne": {"country": "France", "subcountry": "Pays de la Loire"}, "Maurepas": {"country": "France", "subcountry": "\u00cele-de-France"}, "Mauguio": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Maubeuge": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Massy": {"country": "France", "subcountry": "\u00cele-de-France"}, "Martigues": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marmande": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Marly-Le-Roi": {"country": "France", "subcountry": "\u00cele-de-France"}, "Marignane": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marcq-En-Bar\u0153ul": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Mantes-La-Ville": {"country": "France", "subcountry": "\u00cele-de-France"}, "Mantes-La-Jolie": {"country": "France", "subcountry": "\u00cele-de-France"}, "Manosque": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Mandelieu-La-Napoule": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Malakoff": {"country": "France", "subcountry": "\u00cele-de-France"}, "Maisons-Laffitte": {"country": "France", "subcountry": "\u00cele-de-France"}, "Maisons-Alfort": {"country": "France", "subcountry": "\u00cele-de-France"}, "M\u00e2con": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Lyon": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Lun\u00e9ville": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Lunel": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Luc\u00e9": {"country": "France", "subcountry": "Centre"}, "Louviers": {"country": "France", "subcountry": "Normandy"}, "Lourdes": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Lormont": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Lorient": {"country": "France", "subcountry": "Brittany"}, "Loos": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Lons-Le-Saunier": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Longjumeau": {"country": "France", "subcountry": "\u00cele-de-France"}, "Lomme": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Lognes": {"country": "France", "subcountry": "\u00cele-de-France"}, "Livry-Gargan": {"country": "France", "subcountry": "\u00cele-de-France"}, "L\u2019Isle-Sur-La-Sorgue": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Lisieux": {"country": "France", "subcountry": "Normandy"}, "Lingolsheim": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Limoges": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Limeil-Br\u00e9vannes": {"country": "France", "subcountry": "\u00cele-de-France"}, "Limay": {"country": "Philippines", "subcountry": "Central Luzon"}, "Li\u00e9vin": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Libourne": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "L'Ha\u00ff-Les-Roses": {"country": "France", "subcountry": "\u00cele-de-France"}, "Le V\u00e9sinet": {"country": "France", "subcountry": "\u00cele-de-France"}, "Levallois-Perret": {"country": "France", "subcountry": "\u00cele-de-France"}, "Les Sables-D'Olonne": {"country": "France", "subcountry": "Pays de la Loire"}, "Les Pennes-Mirabeau": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Les Pavillons-Sous-Bois": {"country": "France", "subcountry": "\u00cele-de-France"}, "Les Mureaux": {"country": "France", "subcountry": "\u00cele-de-France"}, "Les Lilas": {"country": "France", "subcountry": "\u00cele-de-France"}, "Les Herbiers": {"country": "France", "subcountry": "Pays de la Loire"}, "Les Clayes-Sous-Bois": {"country": "France", "subcountry": "\u00cele-de-France"}, "Le Puy-En-Velay": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Le Pr\u00e9-Saint-Gervais": {"country": "France", "subcountry": "\u00cele-de-France"}, "Le Pontet": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Le Plessis-Tr\u00e9vise": {"country": "France", "subcountry": "\u00cele-de-France"}, "Le Plessis-Robinson": {"country": "France", "subcountry": "\u00cele-de-France"}, "Le Petit-Quevilly": {"country": "France", "subcountry": "Normandy"}, "Le Perreux-Sur-Marne": {"country": "France", "subcountry": "\u00cele-de-France"}, "Le Pecq": {"country": "France", "subcountry": "\u00cele-de-France"}, "Lens": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Le M\u00e9e-Sur-Seine": {"country": "France", "subcountry": "\u00cele-de-France"}, "Le Mans": {"country": "France", "subcountry": "Pays de la Loire"}, "Le Kremlin-Bic\u00eatre": {"country": "France", "subcountry": "\u00cele-de-France"}, "Le Havre": {"country": "France", "subcountry": "Normandy"}, "Le Grand-Quevilly": {"country": "France", "subcountry": "Normandy"}, "Le Creusot": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Le Chesnay": {"country": "France", "subcountry": "\u00cele-de-France"}, "Le Cannet": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Le Bouscat": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Le Blanc-Mesnil": {"country": "France", "subcountry": "\u00cele-de-France"}, "Laxou": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "La Valette-Du-Var": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Lattes": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "La Teste-De-Buch": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "La Seyne-Sur-Mer": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "La Roche-Sur-Yon": {"country": "France", "subcountry": "Pays de la Loire"}, "La Rochelle": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Laon": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Lannion": {"country": "France", "subcountry": "Brittany"}, "Lanester": {"country": "France", "subcountry": "Brittany"}, "Landerneau": {"country": "France", "subcountry": "Brittany"}, "Lambersart": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "La Madeleine": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Lagny-Sur-Marne": {"country": "France", "subcountry": "\u00cele-de-France"}, "La Garenne-Colombes": {"country": "France", "subcountry": "\u00cele-de-France"}, "La Garde": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "La Fl\u00e8che": {"country": "France", "subcountry": "Pays de la Loire"}, "La Crau": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "La Courneuve": {"country": "France", "subcountry": "\u00cele-de-France"}, "La Ciotat": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "La Chapelle-Sur-Erdre": {"country": "France", "subcountry": "Pays de la Loire"}, "La Celle-Saint-Cloud": {"country": "France", "subcountry": "\u00cele-de-France"}, "Jouy-Le-Moutier": {"country": "France", "subcountry": "\u00cele-de-France"}, "Jou\u00e9-L\u00e9s-Tours": {"country": "France", "subcountry": "Centre"}, "Joinville-Le-Pont": {"country": "France", "subcountry": "\u00cele-de-France"}, "Ivry-Sur-Seine": {"country": "France", "subcountry": "\u00cele-de-France"}, "Istres": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Issy-Les-Moulineaux": {"country": "France", "subcountry": "\u00cele-de-France"}, "Issoire": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Illzach": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Illkirch-Graffenstaden": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Hy\u00e8res": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Houilles": {"country": "France", "subcountry": "\u00cele-de-France"}, "H\u00e9rouville-Saint-Clair": {"country": "France", "subcountry": "Normandy"}, "Herblay": {"country": "France", "subcountry": "\u00cele-de-France"}, "H\u00e9nin-Beaumont": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Hem": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Hazebrouck": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Hayange": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Hautmont": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Yutz": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Haubourdin": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Halluin": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Haguenau": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Guyancourt": {"country": "France", "subcountry": "\u00cele-de-France"}, "Gujan-Mestras": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Gu\u00e9ret": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Gu\u00e9rande": {"country": "France", "subcountry": "Pays de la Loire"}, "Grigny": {"country": "France", "subcountry": "\u00cele-de-France"}, "Grenoble": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Grasse": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Grande-Synthe": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Gradignan": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Goussainville": {"country": "France", "subcountry": "\u00cele-de-France"}, "Gonesse": {"country": "France", "subcountry": "\u00cele-de-France"}, "Givors": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Gif-Sur-Yvette": {"country": "France", "subcountry": "\u00cele-de-France"}, "Gien": {"country": "France", "subcountry": "Centre"}, "Gentilly": {"country": "France", "subcountry": "\u00cele-de-France"}, "Gennevilliers": {"country": "France", "subcountry": "\u00cele-de-France"}, "Garges-L\u00e8s-Gonesse": {"country": "France", "subcountry": "\u00cele-de-France"}, "Gardanne": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Garches": {"country": "France", "subcountry": "\u00cele-de-France"}, "Gap": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Gagny": {"country": "France", "subcountry": "\u00cele-de-France"}, "Frontignan": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Fresnes": {"country": "France", "subcountry": "\u00cele-de-France"}, "Fr\u00e9jus": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Franconville": {"country": "France", "subcountry": "\u00cele-de-France"}, "Foug\u00e8res": {"country": "France", "subcountry": "Brittany"}, "Fos-Sur-Mer": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Forbach": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Fontenay-Sous-Bois": {"country": "France", "subcountry": "\u00cele-de-France"}, "Fontenay-Le-Comte": {"country": "France", "subcountry": "Pays de la Loire"}, "Fontenay-Aux-Roses": {"country": "France", "subcountry": "\u00cele-de-France"}, "Fontainebleau": {"country": "France", "subcountry": "\u00cele-de-France"}, "Fontaine": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Floirac": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Fleury-Les-Aubrais": {"country": "France", "subcountry": "Centre"}, "Flers": {"country": "France", "subcountry": "Normandy"}, "Firminy": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "F\u00e9camp": {"country": "France", "subcountry": "Normandy"}, "Faches-Thumesnil": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Eysines": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "\u00c9vry": {"country": "France", "subcountry": "\u00cele-de-France"}, "\u00c9vreux": {"country": "France", "subcountry": "Normandy"}, "\u00c9tampes": {"country": "France", "subcountry": "\u00cele-de-France"}, "La Baule-Escoublac": {"country": "France", "subcountry": "Pays de la Loire"}, "Ermont": {"country": "France", "subcountry": "\u00cele-de-France"}, "\u00c9ragny": {"country": "France", "subcountry": "\u00cele-de-France"}, "\u00c9queurdreville-Hainneville": {"country": "France", "subcountry": "Normandy"}, "\u00c9pinay-Sur-Seine": {"country": "France", "subcountry": "\u00cele-de-France"}, "\u00c9pinal": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "\u00c9pernay": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Elbeuf": {"country": "France", "subcountry": "Normandy"}, "\u00c9lancourt": {"country": "France", "subcountry": "\u00cele-de-France"}, "\u00c9cully": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "\u00c9chirolles": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Eaubonne": {"country": "France", "subcountry": "\u00cele-de-France"}, "Dunkerque": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Dreux": {"country": "France", "subcountry": "Centre"}, "Draveil": {"country": "France", "subcountry": "\u00cele-de-France"}, "Drancy": {"country": "France", "subcountry": "\u00cele-de-France"}, "Draguignan": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Douarnenez": {"country": "France", "subcountry": "Brittany"}, "Douai": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Domont": {"country": "France", "subcountry": "\u00cele-de-France"}, "Dole": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Dijon": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Digne-Les-Bains": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Deuil-La-Barre": {"country": "France", "subcountry": "\u00cele-de-France"}, "Denain": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "D\u00e9cines-Charpieu": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Dax": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Dammarie-Les-Lys": {"country": "France", "subcountry": "\u00cele-de-France"}, "Cugnaux": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Croix": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Cr\u00e9teil": {"country": "France", "subcountry": "\u00cele-de-France"}, "Cr\u00e9py-En-Valois": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Creil": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Cran-Gevrier": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Cournon-D\u2019Auvergne": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Courbevoie": {"country": "France", "subcountry": "\u00cele-de-France"}, "Coulommiers": {"country": "France", "subcountry": "\u00cele-de-France"}, "Cou\u00ebron": {"country": "France", "subcountry": "Pays de la Loire"}, "Coudekerque-Branche": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Cormeilles-En-Parisis": {"country": "France", "subcountry": "\u00cele-de-France"}, "Corbeil-Essonnes": {"country": "France", "subcountry": "\u00cele-de-France"}, "Conflans-Sainte-Honorine": {"country": "France", "subcountry": "\u00cele-de-France"}, "Concarneau": {"country": "France", "subcountry": "Brittany"}, "Compi\u00e8gne": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Combs-La-Ville": {"country": "France", "subcountry": "\u00cele-de-France"}, "Pontault-Combault": {"country": "France", "subcountry": "\u00cele-de-France"}, "Colomiers": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Colombes": {"country": "France", "subcountry": "\u00cele-de-France"}, "Colmar": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Cognac": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Cluses": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Clichy-Sous-Bois": {"country": "France", "subcountry": "\u00cele-de-France"}, "Clichy": {"country": "France", "subcountry": "\u00cele-de-France"}, "Clermont-Ferrand": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Clamart": {"country": "France", "subcountry": "\u00cele-de-France"}, "Cholet": {"country": "France", "subcountry": "Pays de la Loire"}, "Choisy-Le-Roi": {"country": "France", "subcountry": "\u00cele-de-France"}, "Chilly-Mazarin": {"country": "France", "subcountry": "\u00cele-de-France"}, "Chevilly-Larue": {"country": "France", "subcountry": "\u00cele-de-France"}, "Cherbourg-Octeville": {"country": "France", "subcountry": "Normandy"}, "Chen\u00f4ve": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Chennevi\u00e8res-Sur-Marne": {"country": "France", "subcountry": "\u00cele-de-France"}, "Chelles": {"country": "France", "subcountry": "\u00cele-de-France"}, "Chaville": {"country": "France", "subcountry": "\u00cele-de-France"}, "Chaumont": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Chatou": {"country": "France", "subcountry": "\u00cele-de-France"}, "Ch\u00e2tillon": {"country": "France", "subcountry": "\u00cele-de-France"}, "Ch\u00e2tenay-Malabry": {"country": "France", "subcountry": "\u00cele-de-France"}, "Ch\u00e2tellerault": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Ch\u00e2teau-Thierry": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Ch\u00e2teauroux": {"country": "France", "subcountry": "Centre"}, "Ch\u00e2teaudun": {"country": "France", "subcountry": "Centre"}, "Chartres": {"country": "France", "subcountry": "Centre"}, "Charleville-M\u00e9zi\u00e8res": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Charenton-Le-Pont": {"country": "France", "subcountry": "\u00cele-de-France"}, "Champs-Sur-Marne": {"country": "France", "subcountry": "\u00cele-de-France"}, "Champigny-Sur-Marne": {"country": "France", "subcountry": "\u00cele-de-France"}, "Chamb\u00e9ry": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Chamali\u00e8res": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Chalon-Sur-Sa\u00f4ne": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Ch\u00e2lons-En-Champagne": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Challans": {"country": "France", "subcountry": "Pays de la Loire"}, "Cestas": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Cesson-S\u00e9vign\u00e9": {"country": "France", "subcountry": "Brittany"}, "Cergy": {"country": "France", "subcountry": "\u00cele-de-France"}, "Cenon": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Cavaillon": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Castres": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Castelnau-Le-Lez": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Carvin": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Carri\u00e8res-Sous-Poissy": {"country": "France", "subcountry": "\u00cele-de-France"}, "Carquefou": {"country": "France", "subcountry": "Pays de la Loire"}, "Carpentras": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Carcassonne": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Canteleu": {"country": "France", "subcountry": "Normandy"}, "Cannes": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Cambrai": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Caluire-Et-Cuire": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Calais": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Cahors": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Cagnes-Sur-Mer": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Caen": {"country": "France", "subcountry": "Normandy"}, "Cachan": {"country": "France", "subcountry": "\u00cele-de-France"}, "Bry-Sur-Marne": {"country": "France", "subcountry": "\u00cele-de-France"}, "Brunoy": {"country": "France", "subcountry": "\u00cele-de-France"}, "Bruay-La-Buissi\u00e8re": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Bron": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Brive-La-Gaillarde": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Brignoles": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Brie-Comte-Robert": {"country": "France", "subcountry": "\u00cele-de-France"}, "Br\u00e9tigny-Sur-Orge": {"country": "France", "subcountry": "\u00cele-de-France"}, "Bressuire": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Bourgoin": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Bourg-L\u00e8s-Valence": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Bourg-La-Reine": {"country": "France", "subcountry": "\u00cele-de-France"}, "Bourges": {"country": "France", "subcountry": "Centre"}, "Bourg-En-Bresse": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Boulogne-Sur-Mer": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Boulogne-Billancourt": {"country": "France", "subcountry": "\u00cele-de-France"}, "Bouguenais": {"country": "France", "subcountry": "Pays de la Loire"}, "Bordeaux": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Bonneuil-Sur-Marne": {"country": "France", "subcountry": "\u00cele-de-France"}, "Bondy": {"country": "France", "subcountry": "\u00cele-de-France"}, "Boissy-Saint-L\u00e9ger": {"country": "France", "subcountry": "\u00cele-de-France"}, "Bois-Colombes": {"country": "France", "subcountry": "\u00cele-de-France"}, "Bobigny": {"country": "France", "subcountry": "\u00cele-de-France"}, "Blois": {"country": "France", "subcountry": "Centre"}, "Blanquefort": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Blagnac": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Bischheim": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Biarritz": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Bezons": {"country": "France", "subcountry": "\u00cele-de-France"}, "B\u00e9ziers": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "B\u00e9thune": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Besan\u00e7on": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Bergerac": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Berck": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Berck-Plage": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Belfort": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "B\u00e8gles": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Beauvais": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Beaune": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Bayonne": {"country": "United States", "subcountry": "New Jersey"}, "Bastia": {"country": "France", "subcountry": "Corsica"}, "Bar-Le-Duc": {"country": "France", "subcountry": "Alsace-Champagne-Ardenne-Lorraine"}, "Balma": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Bagnols-Sur-C\u00e8ze": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Bagnolet": {"country": "France", "subcountry": "\u00cele-de-France"}, "Bagneux": {"country": "France", "subcountry": "\u00cele-de-France"}, "Avon": {"country": "United States", "subcountry": "Ohio"}, "Avion": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Avignon": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Auxerre": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Autun": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Aurillac": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Aulnay-Sous-Bois": {"country": "France", "subcountry": "\u00cele-de-France"}, "Audincourt": {"country": "France", "subcountry": "Bourgogne-Franche-Comt\u00e9"}, "Auch": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Aubervilliers": {"country": "France", "subcountry": "\u00cele-de-France"}, "Aubagne": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Athis-Mons": {"country": "France", "subcountry": "\u00cele-de-France"}, "Asni\u00e8res-Sur-Seine": {"country": "France", "subcountry": "\u00cele-de-France"}, "Arras": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Armenti\u00e8res": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Arles": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Argenteuil": {"country": "France", "subcountry": "\u00cele-de-France"}, "Argentan": {"country": "France", "subcountry": "Normandy"}, "Arcueil": {"country": "France", "subcountry": "\u00cele-de-France"}, "Antony": {"country": "France", "subcountry": "\u00cele-de-France"}, "Antibes": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Annonay": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Annemasse": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Annecy-Le-Vieux": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Annecy": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Angoul\u00eame": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Anglet": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Angers": {"country": "France", "subcountry": "Pays de la Loire"}, "Amiens": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Allauch": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Alfortville": {"country": "France", "subcountry": "\u00cele-de-France"}, "Al\u00e8s": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Alen\u00e7on": {"country": "France", "subcountry": "Normandy"}, "Albi": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Albertville": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Ajaccio": {"country": "France", "subcountry": "Corsica"}, "Aix-Les-Bains": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Aix-En-Provence": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Agen": {"country": "France", "subcountry": "Aquitaine-Limousin-Poitou-Charentes"}, "Agde": {"country": "France", "subcountry": "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es"}, "Ach\u00e8res": {"country": "France", "subcountry": "\u00cele-de-France"}, "Abbeville": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Villeneuve-D'Ascq": {"country": "France", "subcountry": "Nord-Pas-de-Calais-Picardie"}, "Les Ulis": {"country": "France", "subcountry": "\u00cele-de-France"}, "Bourgoin-Jallieu": {"country": "France", "subcountry": "Auvergne-Rh\u00f4ne-Alpes"}, "Marseille 01": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille 02": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille 03": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille 04": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille 05": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille 06": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille 07": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille 08": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille 10": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille 09": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille 11": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille 12": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille 13": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille 14": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille 15": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "Marseille 16": {"country": "France", "subcountry": "Provence-Alpes-C\u00f4te d'Azur"}, "La Defense": {"country": "France", "subcountry": "\u00cele-de-France"}, "Saint-Quentin-En-Yvelines": {"country": "France", "subcountry": "\u00cele-de-France"}, "Cergy-Pontoise": {"country": "France", "subcountry": "\u00cele-de-France"}, "Tchibanga": {"country": "Gabon", "subcountry": "Nyanga"}, "Port-Gentil": {"country": "Gabon", "subcountry": "Ogoou\u00e9-Maritime"}, "Oyem": {"country": "Gabon", "subcountry": "Woleu-Ntem"}, "Mouila": {"country": "Gabon", "subcountry": "Ngouni\u00e9"}, "Moanda": {"country": "Gabon", "subcountry": "Haut-Ogoou\u00e9"}, "Libreville": {"country": "Gabon", "subcountry": "Estuaire"}, "Lambar\u00e9n\u00e9": {"country": "Gabon", "subcountry": "Moyen-Ogoou\u00e9"}, "Koulamoutou": {"country": "Gabon", "subcountry": "Ogoou\u00e9-Lolo"}, "Franceville": {"country": "Gabon", "subcountry": "Haut-Ogoou\u00e9"}, "York": {"country": "United States", "subcountry": "Pennsylvania"}, "Yeovil": {"country": "United Kingdom", "subcountry": "England"}, "Yeadon": {"country": "United Kingdom", "subcountry": "England"}, "Yate": {"country": "United Kingdom", "subcountry": "England"}, "Wrexham": {"country": "United Kingdom", "subcountry": "Wales"}, "Worthing": {"country": "United Kingdom", "subcountry": "England"}, "Worksop": {"country": "United Kingdom", "subcountry": "England"}, "Workington": {"country": "United Kingdom", "subcountry": "England"}, "Worcester": {"country": "South Africa", "subcountry": "Western Cape"}, "Woodford Green": {"country": "United Kingdom", "subcountry": "England"}, "Wombwell": {"country": "United Kingdom", "subcountry": "England"}, "Wolverhampton": {"country": "United Kingdom", "subcountry": "England"}, "Wokingham": {"country": "United Kingdom", "subcountry": "England"}, "Woking": {"country": "United Kingdom", "subcountry": "England"}, "Witney": {"country": "United Kingdom", "subcountry": "England"}, "Witham": {"country": "United Kingdom", "subcountry": "England"}, "Wishaw": {"country": "United Kingdom", "subcountry": "Scotland"}, "Wisbech": {"country": "United Kingdom", "subcountry": "England"}, "Winsford": {"country": "United Kingdom", "subcountry": "England"}, "Winchester": {"country": "United States", "subcountry": "Nevada"}, "Wilmslow": {"country": "United Kingdom", "subcountry": "England"}, "Willenhall": {"country": "United Kingdom", "subcountry": "England"}, "Wigston Magna": {"country": "United Kingdom", "subcountry": "England"}, "Wigan": {"country": "United Kingdom", "subcountry": "England"}, "Widnes": {"country": "United Kingdom", "subcountry": "England"}, "Wickford": {"country": "United Kingdom", "subcountry": "England"}, "Whitstable": {"country": "United Kingdom", "subcountry": "England"}, "Whitley Bay": {"country": "United Kingdom", "subcountry": "England"}, "Whitehaven": {"country": "United Kingdom", "subcountry": "England"}, "Whitefield": {"country": "United Kingdom", "subcountry": "England"}, "Whickham": {"country": "United Kingdom", "subcountry": "England"}, "Weymouth": {"country": "United States", "subcountry": "Massachusetts"}, "Weybridge": {"country": "United Kingdom", "subcountry": "England"}, "Weston-Super-Mare": {"country": "United Kingdom", "subcountry": "England"}, "West Molesey": {"country": "United Kingdom", "subcountry": "England"}, "Westhoughton": {"country": "United Kingdom", "subcountry": "England"}, "West Bromwich": {"country": "United Kingdom", "subcountry": "England"}, "West Bridgford": {"country": "United Kingdom", "subcountry": "England"}, "Welwyn Garden City": {"country": "United Kingdom", "subcountry": "England"}, "Wellington": {"country": "United States", "subcountry": "Florida"}, "Wellingborough": {"country": "United Kingdom", "subcountry": "England"}, "Welling": {"country": "United Kingdom", "subcountry": "England"}, "Wednesfield": {"country": "United Kingdom", "subcountry": "England"}, "Wednesbury": {"country": "United Kingdom", "subcountry": "England"}, "Wath Upon Dearne": {"country": "United Kingdom", "subcountry": "England"}, "Watford": {"country": "United Kingdom", "subcountry": "England"}, "Waterlooville": {"country": "United Kingdom", "subcountry": "England"}, "Washington": {"country": "United States", "subcountry": "Utah"}, "Warwick": {"country": "United States", "subcountry": "Rhode Island"}, "Warrington": {"country": "United Kingdom", "subcountry": "England"}, "Warminster": {"country": "United Kingdom", "subcountry": "England"}, "Ware": {"country": "United Kingdom", "subcountry": "England"}, "Walton-On-Thames": {"country": "United Kingdom", "subcountry": "England"}, "Waltham Abbey": {"country": "United Kingdom", "subcountry": "England"}, "Walsall": {"country": "United Kingdom", "subcountry": "England"}, "Wallsend": {"country": "United Kingdom", "subcountry": "England"}, "Wallasey": {"country": "United Kingdom", "subcountry": "England"}, "Walkden": {"country": "United Kingdom", "subcountry": "England"}, "Wakefield": {"country": "United States", "subcountry": "Massachusetts"}, "Urmston": {"country": "United Kingdom", "subcountry": "England"}, "Uckfield": {"country": "United Kingdom", "subcountry": "England"}, "Stowmarket": {"country": "United Kingdom", "subcountry": "England"}, "Stourport-On-Severn": {"country": "United Kingdom", "subcountry": "England"}, "Stourbridge": {"country": "United Kingdom", "subcountry": "England"}, "Stoke-On-Trent": {"country": "United Kingdom", "subcountry": "England"}, "Stockton-On-Tees": {"country": "United Kingdom", "subcountry": "England"}, "Stockport": {"country": "United Kingdom", "subcountry": "England"}, "Stirling": {"country": "United Kingdom", "subcountry": "Scotland"}, "Stevenage": {"country": "United Kingdom", "subcountry": "England"}, "Staveley": {"country": "United Kingdom", "subcountry": "England"}, "Stamford": {"country": "United Kingdom", "subcountry": "England"}, "Stalybridge": {"country": "United Kingdom", "subcountry": "England"}, "Staines": {"country": "United Kingdom", "subcountry": "England"}, "Stafford": {"country": "United Kingdom", "subcountry": "England"}, "Spennymoor": {"country": "United Kingdom", "subcountry": "England"}, "Spalding": {"country": "United Kingdom", "subcountry": "England"}, "South Shields": {"country": "United Kingdom", "subcountry": "England"}, "Southsea": {"country": "United Kingdom", "subcountry": "England"}, "South Ockendon": {"country": "United Kingdom", "subcountry": "England"}, "Southend-On-Sea": {"country": "United Kingdom", "subcountry": "England"}, "South Elmsall": {"country": "United Kingdom", "subcountry": "England"}, "South Benfleet": {"country": "United Kingdom", "subcountry": "England"}, "Southampton": {"country": "United Kingdom", "subcountry": "England"}, "Southall": {"country": "United Kingdom", "subcountry": "England"}, "Solihull": {"country": "United Kingdom", "subcountry": "England"}, "Slough": {"country": "United Kingdom", "subcountry": "England"}, "Sleaford": {"country": "United Kingdom", "subcountry": "England"}, "Skelmersdale": {"country": "United Kingdom", "subcountry": "England"}, "Skegness": {"country": "United Kingdom", "subcountry": "England"}, "Sittingbourne": {"country": "United Kingdom", "subcountry": "England"}, "Shrewsbury": {"country": "United States", "subcountry": "Massachusetts"}, "Shoreham-By-Sea": {"country": "United Kingdom", "subcountry": "England"}, "Shoreham": {"country": "United Kingdom", "subcountry": "England"}, "Shipley": {"country": "United Kingdom", "subcountry": "England"}, "Sheffield": {"country": "United Kingdom", "subcountry": "England"}, "Sevenoaks": {"country": "United Kingdom", "subcountry": "England"}, "Selby": {"country": "United Kingdom", "subcountry": "England"}, "Seaham": {"country": "United Kingdom", "subcountry": "England"}, "Scunthorpe": {"country": "United Kingdom", "subcountry": "England"}, "Sandown": {"country": "United Kingdom", "subcountry": "England"}, "Sandbach": {"country": "United Kingdom", "subcountry": "England"}, "Salisbury": {"country": "United States", "subcountry": "North Carolina"}, "Salford": {"country": "United Kingdom", "subcountry": "England"}, "Sale": {"country": "Morocco", "subcountry": "Rabat-Sal\u00e9-Zemmour-Za\u00ebr"}, "Saint Neots": {"country": "United Kingdom", "subcountry": "England"}, "St Helens": {"country": "United Kingdom", "subcountry": "England"}, "St Austell": {"country": "United Kingdom", "subcountry": "England"}, "Saint Andrews": {"country": "United States", "subcountry": "South Carolina"}, "Ryton": {"country": "United Kingdom", "subcountry": "England"}, "Ryde": {"country": "United Kingdom", "subcountry": "England"}, "Rutherglen": {"country": "United Kingdom", "subcountry": "Scotland"}, "Rushden": {"country": "United Kingdom", "subcountry": "England"}, "Runcorn": {"country": "United Kingdom", "subcountry": "England"}, "Ruislip": {"country": "United Kingdom", "subcountry": "England"}, "Rugeley": {"country": "United Kingdom", "subcountry": "England"}, "Rugby": {"country": "United Kingdom", "subcountry": "England"}, "Royton": {"country": "United Kingdom", "subcountry": "England"}, "Royal Tunbridge Wells": {"country": "United Kingdom", "subcountry": "England"}, "Rottingdean": {"country": "United Kingdom", "subcountry": "England"}, "Rotherham": {"country": "United Kingdom", "subcountry": "England"}, "Romsey": {"country": "United Kingdom", "subcountry": "England"}, "Rochford": {"country": "United Kingdom", "subcountry": "England"}, "Rochester": {"country": "United States", "subcountry": "New York"}, "Rochdale": {"country": "United Kingdom", "subcountry": "England"}, "Risca": {"country": "United Kingdom", "subcountry": "Wales"}, "Ripon": {"country": "United Kingdom", "subcountry": "England"}, "Ripley": {"country": "United Kingdom", "subcountry": "England"}, "Rhyl": {"country": "United Kingdom", "subcountry": "Wales"}, "Rhondda": {"country": "United Kingdom", "subcountry": "Wales"}, "Renfrew": {"country": "United Kingdom", "subcountry": "Scotland"}, "Reigate": {"country": "United Kingdom", "subcountry": "England"}, "Redhill": {"country": "United Kingdom", "subcountry": "England"}, "Redditch": {"country": "United Kingdom", "subcountry": "England"}, "Redcar": {"country": "United Kingdom", "subcountry": "England"}, "Reading": {"country": "United States", "subcountry": "Pennsylvania"}, "Rayleigh": {"country": "United Kingdom", "subcountry": "England"}, "Rawtenstall": {"country": "United Kingdom", "subcountry": "England"}, "Rawmarsh": {"country": "United Kingdom", "subcountry": "England"}, "Ramsgate": {"country": "United Kingdom", "subcountry": "England"}, "Ramsbottom": {"country": "United Kingdom", "subcountry": "England"}, "Purley": {"country": "United Kingdom", "subcountry": "England"}, "Pudsey": {"country": "United Kingdom", "subcountry": "England"}, "Prestwick": {"country": "United Kingdom", "subcountry": "Scotland"}, "Prestwich": {"country": "United Kingdom", "subcountry": "England"}, "Prestatyn": {"country": "United Kingdom", "subcountry": "Wales"}, "Prescot": {"country": "United Kingdom", "subcountry": "England"}, "Poulton Le Fylde": {"country": "United Kingdom", "subcountry": "England"}, "Potters Bar": {"country": "United Kingdom", "subcountry": "England"}, "Portsmouth": {"country": "United States", "subcountry": "Rhode Island"}, "Portslade": {"country": "United Kingdom", "subcountry": "England"}, "Portishead": {"country": "United Kingdom", "subcountry": "England"}, "Porthcawl": {"country": "United Kingdom", "subcountry": "Wales"}, "Port Glasgow": {"country": "United Kingdom", "subcountry": "Scotland"}, "Portadown": {"country": "United Kingdom", "subcountry": "Northern Ireland"}, "Poole": {"country": "United Kingdom", "subcountry": "England"}, "Pontypridd": {"country": "United Kingdom", "subcountry": "Wales"}, "Pontypool": {"country": "United Kingdom", "subcountry": "Wales"}, "Pontefract": {"country": "United Kingdom", "subcountry": "England"}, "Polmont": {"country": "United Kingdom", "subcountry": "Scotland"}, "Plymstock": {"country": "United Kingdom", "subcountry": "England"}, "Plymouth": {"country": "United States", "subcountry": "Minnesota"}, "Pitsea": {"country": "United Kingdom", "subcountry": "England"}, "Pinner": {"country": "United Kingdom", "subcountry": "England"}, "Peterlee": {"country": "United Kingdom", "subcountry": "England"}, "Peterhead": {"country": "United Kingdom", "subcountry": "Scotland"}, "Penzance": {"country": "United Kingdom", "subcountry": "England"}, "Penicuik": {"country": "United Kingdom", "subcountry": "Scotland"}, "Penarth": {"country": "United Kingdom", "subcountry": "Wales"}, "Paisley": {"country": "United Kingdom", "subcountry": "Scotland"}, "Paignton": {"country": "United Kingdom", "subcountry": "England"}, "Oxford": {"country": "United States", "subcountry": "Ohio"}, "Oswestry": {"country": "United Kingdom", "subcountry": "England"}, "Ossett": {"country": "United Kingdom", "subcountry": "England"}, "Orpington": {"country": "United Kingdom", "subcountry": "England"}, "Ormskirk": {"country": "United Kingdom", "subcountry": "England"}, "Omagh": {"country": "United Kingdom", "subcountry": "Northern Ireland"}, "Oldham": {"country": "United Kingdom", "subcountry": "England"}, "Oadby": {"country": "United Kingdom", "subcountry": "England"}, "Nuneaton": {"country": "United Kingdom", "subcountry": "England"}, "Nottingham": {"country": "United Kingdom", "subcountry": "England"}, "Norwich": {"country": "United Kingdom", "subcountry": "England"}, "Northwich": {"country": "United Kingdom", "subcountry": "England"}, "North Shields": {"country": "United Kingdom", "subcountry": "England"}, "Northolt": {"country": "United Kingdom", "subcountry": "England"}, "Lancing": {"country": "United Kingdom", "subcountry": "England"}, "Northampton": {"country": "United States", "subcountry": "Massachusetts"}, "Northallerton": {"country": "United Kingdom", "subcountry": "England"}, "Newtownards": {"country": "United Kingdom", "subcountry": "Northern Ireland"}, "Newtownabbey": {"country": "United Kingdom", "subcountry": "Northern Ireland"}, "Newton Mearns": {"country": "United Kingdom", "subcountry": "Scotland"}, "Newton-Le-Willows": {"country": "United Kingdom", "subcountry": "England"}, "Newton Aycliffe": {"country": "United Kingdom", "subcountry": "England"}, "Newton Abbot": {"country": "United Kingdom", "subcountry": "England"}, "Newry": {"country": "United Kingdom", "subcountry": "Northern Ireland"}, "Newquay": {"country": "United Kingdom", "subcountry": "England"}, "Newport Pagnell": {"country": "United Kingdom", "subcountry": "England"}, "Newport": {"country": "United States", "subcountry": "Rhode Island"}, "New Milton": {"country": "United Kingdom", "subcountry": "England"}, "New Malden": {"country": "United Kingdom", "subcountry": "England"}, "Newcastle Upon Tyne": {"country": "United Kingdom", "subcountry": "England"}, "Newcastle Under Lyme": {"country": "United Kingdom", "subcountry": "England"}, "Newbury": {"country": "United Kingdom", "subcountry": "England"}, "Newburn": {"country": "United Kingdom", "subcountry": "England"}, "Newark On Trent": {"country": "United Kingdom", "subcountry": "England"}, "Nelson": {"country": "New Zealand", "subcountry": "Nelson"}, "Neath": {"country": "United Kingdom", "subcountry": "Wales"}, "Nailsea": {"country": "United Kingdom", "subcountry": "England"}, "Musselburgh": {"country": "United Kingdom", "subcountry": "Scotland"}, "Motherwell": {"country": "United Kingdom", "subcountry": "Scotland"}, "Morley": {"country": "United Kingdom", "subcountry": "England"}, "Moreton": {"country": "United Kingdom", "subcountry": "England"}, "Morecambe": {"country": "United Kingdom", "subcountry": "England"}, "Mitcham": {"country": "United Kingdom", "subcountry": "England"}, "Mirfield": {"country": "United Kingdom", "subcountry": "England"}, "Milton Keynes": {"country": "United Kingdom", "subcountry": "England"}, "Middleton": {"country": "United States", "subcountry": "Wisconsin"}, "Middlesbrough": {"country": "United Kingdom", "subcountry": "England"}, "Mexborough": {"country": "United Kingdom", "subcountry": "England"}, "Merthyr Tydfil": {"country": "United Kingdom", "subcountry": "Wales"}, "Melton Mowbray": {"country": "United Kingdom", "subcountry": "England"}, "Marple": {"country": "United Kingdom", "subcountry": "England"}, "Marlow": {"country": "United Kingdom", "subcountry": "England"}, "Market Harborough": {"country": "United Kingdom", "subcountry": "England"}, "Margate": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "March": {"country": "United Kingdom", "subcountry": "England"}, "Mansfield Woodhouse": {"country": "United Kingdom", "subcountry": "England"}, "Mansfield": {"country": "United States", "subcountry": "Ohio"}, "Mangotsfield": {"country": "United Kingdom", "subcountry": "England"}, "Manchester": {"country": "United States", "subcountry": "New Hampshire"}, "Maltby": {"country": "United Kingdom", "subcountry": "England"}, "Maldon": {"country": "United Kingdom", "subcountry": "England"}, "Maidstone": {"country": "United Kingdom", "subcountry": "England"}, "Maidenhead": {"country": "United Kingdom", "subcountry": "England"}, "Maghull": {"country": "United Kingdom", "subcountry": "England"}, "Maesteg": {"country": "United Kingdom", "subcountry": "Wales"}, "Macclesfield": {"country": "United Kingdom", "subcountry": "England"}, "Luton": {"country": "United Kingdom", "subcountry": "England"}, "Lowestoft": {"country": "United Kingdom", "subcountry": "England"}, "Louth": {"country": "United Kingdom", "subcountry": "England"}, "Loughborough": {"country": "United Kingdom", "subcountry": "England"}, "Longfield": {"country": "United Kingdom", "subcountry": "England"}, "Long Eaton": {"country": "United Kingdom", "subcountry": "England"}, "Londonderry County Borough": {"country": "United Kingdom", "subcountry": "Northern Ireland"}, "Derry": {"country": "United States", "subcountry": "New Hampshire"}, "City Of London": {"country": "United Kingdom", "subcountry": "England"}, "Lofthouse": {"country": "United Kingdom", "subcountry": "England"}, "Llanelli": {"country": "United Kingdom", "subcountry": "Wales"}, "Llandudno": {"country": "United Kingdom", "subcountry": "Wales"}, "Livingston": {"country": "United States", "subcountry": "New Jersey"}, "Littlehampton": {"country": "United Kingdom", "subcountry": "England"}, "Litherland": {"country": "United Kingdom", "subcountry": "England"}, "Lisburn": {"country": "United Kingdom", "subcountry": "Northern Ireland"}, "Lichfield": {"country": "United Kingdom", "subcountry": "England"}, "Leyland": {"country": "United Kingdom", "subcountry": "England"}, "Lewes": {"country": "United Kingdom", "subcountry": "England"}, "Letchworth": {"country": "United Kingdom", "subcountry": "England"}, "Leighton Buzzard": {"country": "United Kingdom", "subcountry": "England"}, "Leigh": {"country": "United Kingdom", "subcountry": "England"}, "Leicester": {"country": "United Kingdom", "subcountry": "England"}, "Leek": {"country": "Netherlands", "subcountry": "Groningen"}, "Leeds": {"country": "United Kingdom", "subcountry": "England"}, "Leatherhead": {"country": "United Kingdom", "subcountry": "England"}, "Royal Leamington Spa": {"country": "United Kingdom", "subcountry": "England"}, "Larne": {"country": "United Kingdom", "subcountry": "Northern Ireland"}, "Larkhall": {"country": "United Kingdom", "subcountry": "Scotland"}, "Lancaster": {"country": "United States", "subcountry": "Pennsylvania"}, "Kirkintilloch": {"country": "United Kingdom", "subcountry": "Scotland"}, "Kirkcaldy": {"country": "United Kingdom", "subcountry": "Scotland"}, "Kirkby In Ashfield": {"country": "United Kingdom", "subcountry": "England"}, "Kirkby": {"country": "United Kingdom", "subcountry": "England"}, "Kingswood": {"country": "United Kingdom", "subcountry": "England"}, "Kingswinford": {"country": "United Kingdom", "subcountry": "England"}, "Hull": {"country": "United Kingdom", "subcountry": "England"}, "King'S Lynn": {"country": "United Kingdom", "subcountry": "England"}, "Kilwinning": {"country": "United Kingdom", "subcountry": "Scotland"}, "Kilmarnock": {"country": "United Kingdom", "subcountry": "Scotland"}, "Kidsgrove": {"country": "United Kingdom", "subcountry": "England"}, "Kidlington": {"country": "United Kingdom", "subcountry": "England"}, "Kidderminster": {"country": "United Kingdom", "subcountry": "England"}, "Keynsham": {"country": "United Kingdom", "subcountry": "England"}, "Kettering": {"country": "United States", "subcountry": "Ohio"}, "Kenilworth": {"country": "United Kingdom", "subcountry": "England"}, "Kendal": {"country": "United Kingdom", "subcountry": "England"}, "Kempston": {"country": "United Kingdom", "subcountry": "England"}, "Keighley": {"country": "United Kingdom", "subcountry": "England"}, "Johnstone": {"country": "United Kingdom", "subcountry": "Scotland"}, "Jarrow": {"country": "United Kingdom", "subcountry": "England"}, "Islington": {"country": "United Kingdom", "subcountry": "England"}, "Isleworth": {"country": "United Kingdom", "subcountry": "England"}, "Irvine": {"country": "United States", "subcountry": "California"}, "Coity": {"country": "United Kingdom", "subcountry": "Wales"}, "Cobham": {"country": "United Kingdom", "subcountry": "England"}, "Coatbridge": {"country": "United Kingdom", "subcountry": "Scotland"}, "Coalville": {"country": "United Kingdom", "subcountry": "England"}, "Clydebank": {"country": "United Kingdom", "subcountry": "Scotland"}, "Clydach": {"country": "United Kingdom", "subcountry": "Wales"}, "Clitheroe": {"country": "United Kingdom", "subcountry": "England"}, "Clevedon": {"country": "United Kingdom", "subcountry": "England"}, "Cleethorpes": {"country": "United Kingdom", "subcountry": "England"}, "Cleckheaton": {"country": "United Kingdom", "subcountry": "England"}, "Clacton-On-Sea": {"country": "United Kingdom", "subcountry": "England"}, "Cirencester": {"country": "United Kingdom", "subcountry": "England"}, "Christchurch": {"country": "New Zealand", "subcountry": "Canterbury"}, "Chorley": {"country": "United Kingdom", "subcountry": "England"}, "Chislehurst": {"country": "United Kingdom", "subcountry": "England"}, "Chipping Sodbury": {"country": "United Kingdom", "subcountry": "England"}, "Chippenham": {"country": "United Kingdom", "subcountry": "England"}, "Chichester": {"country": "United Kingdom", "subcountry": "England"}, "Chester-Le-Street": {"country": "United Kingdom", "subcountry": "England"}, "Chesterfield": {"country": "United States", "subcountry": "Missouri"}, "Chester": {"country": "United States", "subcountry": "Pennsylvania"}, "Chessington": {"country": "United Kingdom", "subcountry": "England"}, "Cheshunt": {"country": "United Kingdom", "subcountry": "England"}, "Chesham": {"country": "United Kingdom", "subcountry": "England"}, "Chelsea": {"country": "United States", "subcountry": "Massachusetts"}, "Chelmsford": {"country": "United States", "subcountry": "Massachusetts"}, "Cheadle Hulme": {"country": "United Kingdom", "subcountry": "England"}, "Chatham": {"country": "United Kingdom", "subcountry": "England"}, "Chapletown": {"country": "United Kingdom", "subcountry": "England"}, "Chalfont Saint Peter": {"country": "United Kingdom", "subcountry": "England"}, "Caterham": {"country": "United Kingdom", "subcountry": "England"}, "Castlereagh": {"country": "United Kingdom", "subcountry": "Northern Ireland"}, "Castleford": {"country": "United Kingdom", "subcountry": "England"}, "Carshalton": {"country": "United Kingdom", "subcountry": "England"}, "Carrickfergus": {"country": "United Kingdom", "subcountry": "Northern Ireland"}, "Carmarthen": {"country": "United Kingdom", "subcountry": "Wales"}, "Carlisle": {"country": "United States", "subcountry": "Pennsylvania"}, "Cardiff": {"country": "United Kingdom", "subcountry": "Wales"}, "Canterbury": {"country": "United Kingdom", "subcountry": "England"}, "Cannock": {"country": "United Kingdom", "subcountry": "England"}, "Camborne": {"country": "United Kingdom", "subcountry": "England"}, "Camberley": {"country": "United Kingdom", "subcountry": "England"}, "Caerphilly": {"country": "United Kingdom", "subcountry": "Wales"}, "Buxton": {"country": "United Kingdom", "subcountry": "England"}, "Bushey": {"country": "United Kingdom", "subcountry": "England"}, "Bury St Edmunds": {"country": "United Kingdom", "subcountry": "England"}, "Bury": {"country": "United Kingdom", "subcountry": "England"}, "Burton Upon Trent": {"country": "United Kingdom", "subcountry": "England"}, "Burntwood": {"country": "United Kingdom", "subcountry": "England"}, "Burnley": {"country": "United Kingdom", "subcountry": "England"}, "Burnham-On-Sea": {"country": "United Kingdom", "subcountry": "England"}, "Burgess Hill": {"country": "United Kingdom", "subcountry": "England"}, "Buckley": {"country": "United Kingdom", "subcountry": "Wales"}, "Buckhaven": {"country": "United Kingdom", "subcountry": "Scotland"}, "Brymbo": {"country": "United Kingdom", "subcountry": "Wales"}, "Brownhills": {"country": "United Kingdom", "subcountry": "England"}, "Bromsgrove": {"country": "United Kingdom", "subcountry": "England"}, "Broadstairs": {"country": "United Kingdom", "subcountry": "England"}, "Brixham": {"country": "United Kingdom", "subcountry": "England"}, "Briton Ferry": {"country": "United Kingdom", "subcountry": "Wales"}, "Bristol": {"country": "United States", "subcountry": "Connecticut"}, "Brighton": {"country": "United States", "subcountry": "Colorado"}, "Brighouse": {"country": "United Kingdom", "subcountry": "England"}, "Brierley Hill": {"country": "United Kingdom", "subcountry": "England"}, "Bridlington": {"country": "United Kingdom", "subcountry": "England"}, "Bridgwater": {"country": "United Kingdom", "subcountry": "England"}, "Bridgend": {"country": "United Kingdom", "subcountry": "Wales"}, "Brentwood": {"country": "United States", "subcountry": "California"}, "Bredbury": {"country": "United Kingdom", "subcountry": "England"}, "Bramhall": {"country": "United Kingdom", "subcountry": "England"}, "Braintree": {"country": "United States", "subcountry": "Massachusetts"}, "Bradford": {"country": "United Kingdom", "subcountry": "England"}, "Bracknell": {"country": "United Kingdom", "subcountry": "England"}, "Bournemouth": {"country": "United Kingdom", "subcountry": "England"}, "Boston": {"country": "United States", "subcountry": "Massachusetts"}, "Borehamwood": {"country": "United Kingdom", "subcountry": "England"}, "Bootle": {"country": "United Kingdom", "subcountry": "England"}, "Bolton": {"country": "United Kingdom", "subcountry": "England"}, "Bognor Regis": {"country": "United Kingdom", "subcountry": "England"}, "Blyth": {"country": "United Kingdom", "subcountry": "England"}, "Bloxwich": {"country": "United Kingdom", "subcountry": "England"}, "Bletchley": {"country": "United Kingdom", "subcountry": "England"}, "Blackpool": {"country": "United Kingdom", "subcountry": "England"}, "Blackburn": {"country": "United Kingdom", "subcountry": "England"}, "Bishopstoke": {"country": "United Kingdom", "subcountry": "England"}, "Bishops Stortford": {"country": "United Kingdom", "subcountry": "England"}, "Bishopbriggs": {"country": "United Kingdom", "subcountry": "Scotland"}, "Bishop Auckland": {"country": "United Kingdom", "subcountry": "England"}, "Birmingham": {"country": "United States", "subcountry": "Michigan"}, "Birkenhead": {"country": "United Kingdom", "subcountry": "England"}, "Bingley": {"country": "United Kingdom", "subcountry": "England"}, "Billingham": {"country": "United Kingdom", "subcountry": "England"}, "Billericay": {"country": "United Kingdom", "subcountry": "England"}, "Biggleswade": {"country": "United Kingdom", "subcountry": "England"}, "Bideford": {"country": "United Kingdom", "subcountry": "England"}, "Biddulph": {"country": "United Kingdom", "subcountry": "England"}, "Bicester": {"country": "United Kingdom", "subcountry": "England"}, "Bexley": {"country": "United Kingdom", "subcountry": "England"}, "Bexhill-On-Sea": {"country": "United Kingdom", "subcountry": "England"}, "Beverley": {"country": "United Kingdom", "subcountry": "England"}, "Berwick-Upon-Tweed": {"country": "United Kingdom", "subcountry": "England"}, "Berkhamsted": {"country": "United Kingdom", "subcountry": "England"}, "Bentley": {"country": "United Kingdom", "subcountry": "England"}, "Belper": {"country": "United Kingdom", "subcountry": "England"}, "Bellshill": {"country": "United Kingdom", "subcountry": "Scotland"}, "Belfast": {"country": "United Kingdom", "subcountry": "Northern Ireland"}, "Bedworth": {"country": "United Kingdom", "subcountry": "England"}, "Bedlington": {"country": "United Kingdom", "subcountry": "England"}, "Bedford": {"country": "United States", "subcountry": "New Hampshire"}, "Beckenham": {"country": "United Kingdom", "subcountry": "England"}, "Bebington": {"country": "United Kingdom", "subcountry": "England"}, "Bearsden": {"country": "United Kingdom", "subcountry": "Scotland"}, "Batley": {"country": "United Kingdom", "subcountry": "England"}, "Bathgate": {"country": "United Kingdom", "subcountry": "Scotland"}, "Bath": {"country": "United Kingdom", "subcountry": "England"}, "Basingstoke": {"country": "United Kingdom", "subcountry": "England"}, "Basildon": {"country": "United Kingdom", "subcountry": "England"}, "Barry": {"country": "United Kingdom", "subcountry": "Wales"}, "Barrow In Furness": {"country": "United Kingdom", "subcountry": "England"}, "Barrhead": {"country": "United Kingdom", "subcountry": "Scotland"}, "Barnstaple": {"country": "United Kingdom", "subcountry": "England"}, "Barnsley": {"country": "United Kingdom", "subcountry": "England"}, "Barnet": {"country": "United Kingdom", "subcountry": "England"}, "Barking": {"country": "United Kingdom", "subcountry": "England"}, "Banstead": {"country": "United Kingdom", "subcountry": "England"}, "Bangor": {"country": "United States", "subcountry": "Maine"}, "Banbury": {"country": "United Kingdom", "subcountry": "England"}, "Banbridge": {"country": "United Kingdom", "subcountry": "Northern Ireland"}, "Ballymena": {"country": "United Kingdom", "subcountry": "Northern Ireland"}, "Baildon": {"country": "United Kingdom", "subcountry": "England"}, "Ayr": {"country": "United Kingdom", "subcountry": "Scotland"}, "Aylesbury": {"country": "United Kingdom", "subcountry": "England"}, "Atherton": {"country": "United Kingdom", "subcountry": "England"}, "Ashton-Under-Lyne": {"country": "United Kingdom", "subcountry": "England"}, "Ashton In Makerfield": {"country": "United Kingdom", "subcountry": "England"}, "Ashford": {"country": "United Kingdom", "subcountry": "England"}, "Ascot": {"country": "United Kingdom", "subcountry": "England"}, "Arnold": {"country": "United States", "subcountry": "Missouri"}, "Arbroath": {"country": "United Kingdom", "subcountry": "Scotland"}, "Antrim": {"country": "United Kingdom", "subcountry": "Northern Ireland"}, "Andover": {"country": "United States", "subcountry": "Minnesota"}, "Amersham": {"country": "United Kingdom", "subcountry": "England"}, "Altrincham": {"country": "United Kingdom", "subcountry": "England"}, "Alton": {"country": "United States", "subcountry": "Illinois"}, "Alloa": {"country": "United Kingdom", "subcountry": "Scotland"}, "Alfreton": {"country": "United Kingdom", "subcountry": "England"}, "Aldridge": {"country": "United Kingdom", "subcountry": "England"}, "Aldershot": {"country": "United Kingdom", "subcountry": "England"}, "Acton": {"country": "United States", "subcountry": "Massachusetts"}, "Acocks Green": {"country": "United Kingdom", "subcountry": "England"}, "Accrington": {"country": "United Kingdom", "subcountry": "England"}, "Abingdon": {"country": "United Kingdom", "subcountry": "England"}, "Aberystwyth": {"country": "United Kingdom", "subcountry": "Wales"}, "Abergele": {"country": "United Kingdom", "subcountry": "Wales"}, "Aberdeen": {"country": "United States", "subcountry": "Washington"}, "Aberdare": {"country": "United Kingdom", "subcountry": "Wales"}, "Crosby": {"country": "United Kingdom", "subcountry": "England"}, "Blackwood": {"country": "United Kingdom", "subcountry": "Wales"}, "Neston": {"country": "United Kingdom", "subcountry": "England"}, "Camden Town": {"country": "United Kingdom", "subcountry": "England"}, "Telford": {"country": "United Kingdom", "subcountry": "England"}, "Craigavon": {"country": "United Kingdom", "subcountry": "Northern Ireland"}, "Bayswater": {"country": "United Kingdom", "subcountry": "England"}, "Yateley": {"country": "United Kingdom", "subcountry": "England"}, "Bowthorpe": {"country": "United Kingdom", "subcountry": "England"}, "Hedge End": {"country": "United Kingdom", "subcountry": "England"}, "Erskine": {"country": "United Kingdom", "subcountry": "Scotland"}, "Hale": {"country": "United Kingdom", "subcountry": "England"}, "Amersham On The Hill": {"country": "United Kingdom", "subcountry": "England"}, "Battersea": {"country": "United Kingdom", "subcountry": "England"}, "South Croydon": {"country": "United Kingdom", "subcountry": "England"}, "Hornchurch": {"country": "United Kingdom", "subcountry": "England"}, "Surbiton": {"country": "United Kingdom", "subcountry": "England"}, "Ewell": {"country": "United Kingdom", "subcountry": "England"}, "Becontree": {"country": "United Kingdom", "subcountry": "England"}, "Brixton": {"country": "United Kingdom", "subcountry": "England"}, "Bethnal Green": {"country": "United Kingdom", "subcountry": "England"}, "Failsworth": {"country": "United Kingdom", "subcountry": "England"}, "Radcliffe": {"country": "United Kingdom", "subcountry": "England"}, "Heywood": {"country": "United Kingdom", "subcountry": "England"}, "Longsight": {"country": "United Kingdom", "subcountry": "England"}, "Heavitree": {"country": "United Kingdom", "subcountry": "England"}, "Ferndown": {"country": "United Kingdom", "subcountry": "England"}, "Canary Wharf": {"country": "United Kingdom", "subcountry": "England"}, "Lytham St Annes": {"country": "United Kingdom", "subcountry": "England"}, "Hadley Wood": {"country": "United Kingdom", "subcountry": "England"}, "Chapel Allerton": {"country": "United Kingdom", "subcountry": "England"}, "Blackheath": {"country": "United Kingdom", "subcountry": "England"}, "Kempston Hardwick": {"country": "United Kingdom", "subcountry": "England"}, "Mendip": {"country": "United Kingdom", "subcountry": "England"}, "Lower Earley": {"country": "United Kingdom", "subcountry": "England"}, "Bartley Green": {"country": "United Kingdom", "subcountry": "England"}, "Earlsfield": {"country": "United Kingdom", "subcountry": "England"}, "Letchworth Garden City": {"country": "United Kingdom", "subcountry": "England"}, "Shirley": {"country": "United States", "subcountry": "New York"}, "Rossendale": {"country": "United Kingdom", "subcountry": "England"}, "Thornton-Cleveleys": {"country": "United Kingdom", "subcountry": "England"}, "Deeside": {"country": "United Kingdom", "subcountry": "Wales"}, "High Peak": {"country": "United Kingdom", "subcountry": "England"}, "Hayling Island": {"country": "United Kingdom", "subcountry": "England"}, "Isle Of Lewis": {"country": "United Kingdom", "subcountry": "Scotland"}, "Shetland": {"country": "United Kingdom", "subcountry": "Scotland"}, "Orkney": {"country": "South Africa", "subcountry": "North-West"}, "Holloway": {"country": "United Kingdom", "subcountry": "England"}, "Harringay": {"country": "United Kingdom", "subcountry": "England"}, "Saint George'S": {"country": "Grenada", "subcountry": "Saint George"}, "Zugdidi": {"country": "Georgia", "subcountry": "Samegrelo and Zemo Svaneti"}, "Zestap\u2019Oni": {"country": "Georgia", "subcountry": "Imereti"}, "Ts\u2019Khinvali": {"country": "Georgia", "subcountry": "Shida Kartli"}, "Tqvarch'Eli": {"country": "Georgia", "subcountry": "Abkhazia"}, "Telavi": {"country": "Georgia", "subcountry": "Kakheti"}, "Tbilisi": {"country": "Georgia", "subcountry": "T'bilisi"}, "Sokhumi": {"country": "Georgia", "subcountry": "Abkhazia"}, "Senak\u2019I": {"country": "Georgia", "subcountry": "Samegrelo and Zemo Svaneti"}, "Samtredia": {"country": "Georgia", "subcountry": "Imereti"}, "Rust\u2019Avi": {"country": "Georgia", "subcountry": "Kvemo Kartli"}, "P\u2019Ot\u2019I": {"country": "Georgia", "subcountry": "Samegrelo and Zemo Svaneti"}, "Ozurgeti": {"country": "Georgia", "subcountry": "Guria"}, "Och\u2019Amch\u2019Ire": {"country": "Georgia", "subcountry": "Abkhazia"}, "Marneuli": {"country": "Georgia", "subcountry": "Kvemo Kartli"}, "Kutaisi": {"country": "Georgia", "subcountry": "Imereti"}, "Kobuleti": {"country": "Georgia", "subcountry": "Ajaria"}, "Khashuri": {"country": "Georgia", "subcountry": "Shida Kartli"}, "Gori": {"country": "Georgia", "subcountry": "Shida Kartli"}, "Batumi": {"country": "Georgia", "subcountry": "Ajaria"}, "Akhaltsikhe": {"country": "Georgia", "subcountry": "Samtskhe-Javakheti"}, "Stantsiya Novyy Afon": {"country": "Georgia", "subcountry": "Abkhazia"}, "Tsqaltubo": {"country": "Georgia", "subcountry": "Imereti"}, "Saint-Laurent-Du-Maroni": {"country": "French Guiana", "subcountry": "Guyane"}, "R\u00e9mire-Montjoly": {"country": "French Guiana", "subcountry": "Guyane"}, "Matoury": {"country": "French Guiana", "subcountry": "Guyane"}, "Kourou": {"country": "French Guiana", "subcountry": "Guyane"}, "Cayenne": {"country": "French Guiana", "subcountry": "Guyane"}, "Saint Peter Port": {"country": "Guernsey", "subcountry": "St Peter Port"}, "Yendi": {"country": "Ghana", "subcountry": "Northern"}, "Winneba": {"country": "Ghana", "subcountry": "Central"}, "Wenchi": {"country": "Ghana", "subcountry": "Brong-Ahafo"}, "Wa": {"country": "Ghana", "subcountry": "Upper West"}, "Teshi Old Town": {"country": "Ghana", "subcountry": "Greater Accra"}, "Tema": {"country": "Ghana", "subcountry": "Greater Accra"}, "Techiman": {"country": "Ghana", "subcountry": "Brong-Ahafo"}, "Tarkwa": {"country": "Ghana", "subcountry": "Western"}, "Tamale": {"country": "Ghana", "subcountry": "Northern"}, "Takoradi": {"country": "Ghana", "subcountry": "Western"}, "Tafo": {"country": "Ghana", "subcountry": "Ashanti"}, "Swedru": {"country": "Ghana", "subcountry": "Central"}, "Sunyani": {"country": "Ghana", "subcountry": "Brong-Ahafo"}, "Suhum": {"country": "Ghana", "subcountry": "Eastern"}, "Shama Junction": {"country": "Ghana", "subcountry": "Western"}, "Sekondi-Takoradi": {"country": "Ghana", "subcountry": "Western"}, "Savelugu": {"country": "Ghana", "subcountry": "Northern"}, "Saltpond": {"country": "Ghana", "subcountry": "Central"}, "Salaga": {"country": "Ghana", "subcountry": "Northern"}, "Prestea": {"country": "Ghana", "subcountry": "Western"}, "Kasoa": {"country": "Ghana", "subcountry": "Central"}, "Akim Oda": {"country": "Ghana", "subcountry": "Eastern"}, "Obuasi": {"country": "Ghana", "subcountry": "Ashanti"}, "Nungua": {"country": "Ghana", "subcountry": "Greater Accra"}, "Nsawam": {"country": "Ghana", "subcountry": "Eastern"}, "Nkawkaw": {"country": "Ghana", "subcountry": "Eastern"}, "Navrongo": {"country": "Ghana", "subcountry": "Upper East"}, "Mampong": {"country": "Ghana", "subcountry": "Ashanti"}, "Medina Estates": {"country": "Ghana", "subcountry": "Greater Accra"}, "Kumasi": {"country": "Ghana", "subcountry": "Ashanti"}, "Kpandu": {"country": "Ghana", "subcountry": "Volta"}, "Konongo": {"country": "Ghana", "subcountry": "Ashanti"}, "Koforidua": {"country": "Ghana", "subcountry": "Eastern"}, "Kintampo": {"country": "Ghana", "subcountry": "Brong-Ahafo"}, "Keta": {"country": "Ghana", "subcountry": "Volta"}, "Hohoe": {"country": "Ghana", "subcountry": "Volta"}, "Ho": {"country": "Ghana", "subcountry": "Volta"}, "Gbawe": {"country": "Ghana", "subcountry": "Greater Accra"}, "Foso": {"country": "Ghana", "subcountry": "Central"}, "Elmina": {"country": "Ghana", "subcountry": "Central"}, "Ejura": {"country": "Ghana", "subcountry": "Ashanti"}, "Dunkwa": {"country": "Ghana", "subcountry": "Central"}, "Dome": {"country": "Ghana", "subcountry": "Greater Accra"}, "Cape Coast": {"country": "Ghana", "subcountry": "Central"}, "Bolgatanga": {"country": "Ghana", "subcountry": "Upper East"}, "Bibiani": {"country": "Ghana", "subcountry": "Western"}, "Berekum": {"country": "Ghana", "subcountry": "Brong-Ahafo"}, "Begoro": {"country": "Ghana", "subcountry": "Eastern"}, "Bawku": {"country": "Ghana", "subcountry": "Upper East"}, "Axim": {"country": "Ghana", "subcountry": "Western"}, "Asamankese": {"country": "Ghana", "subcountry": "Eastern"}, "Apam": {"country": "Ghana", "subcountry": "Central"}, "Anloga": {"country": "Ghana", "subcountry": "Volta"}, "Akwatia": {"country": "Ghana", "subcountry": "Eastern"}, "Agogo": {"country": "Ghana", "subcountry": "Ashanti"}, "Achiaman": {"country": "Ghana", "subcountry": "Greater Accra"}, "Accra": {"country": "Ghana", "subcountry": "Greater Accra"}, "Aburi": {"country": "Ghana", "subcountry": "Eastern"}, "Gibraltar": {"country": "Gibraltar", "subcountry": "N/A"}, "Nuuk": {"country": "Greenland", "subcountry": "Sermersooq"}, "Sukuta": {"country": "Gambia", "subcountry": "Western"}, "Lamin": {"country": "Gambia", "subcountry": "North Bank"}, "Farafenni": {"country": "Gambia", "subcountry": "North Bank"}, "Brikama": {"country": "Gambia", "subcountry": "Western"}, "Banjul": {"country": "Gambia", "subcountry": "Banjul"}, "Bakau": {"country": "Gambia", "subcountry": "Banjul"}, "Tougu\u00e9": {"country": "Guinea", "subcountry": "Labe"}, "T\u00e9lim\u00e9l\u00e9": {"country": "Guinea", "subcountry": "Kindia"}, "Siguiri": {"country": "Guinea", "subcountry": "Kankan"}, "Pita": {"country": "Guinea", "subcountry": "Mamou"}, "Nz\u00e9r\u00e9kor\u00e9": {"country": "Guinea", "subcountry": "Nzerekore"}, "Mamou": {"country": "Guinea", "subcountry": "Mamou"}, "Macenta": {"country": "Guinea", "subcountry": "Nzerekore"}, "Lab\u00e9": {"country": "Guinea", "subcountry": "Labe"}, "Kissidougou": {"country": "Guinea", "subcountry": "Faranah"}, "Kindia": {"country": "Guinea", "subcountry": "Kindia"}, "Kankan": {"country": "Guinea", "subcountry": "Kankan"}, "Kamsar": {"country": "Guinea", "subcountry": "Boke"}, "Gueckedou": {"country": "Guinea", "subcountry": "Nzerekore"}, "Fria": {"country": "Guinea", "subcountry": "Boke"}, "Coyah": {"country": "Guinea", "subcountry": "Kindia"}, "Conakry": {"country": "Guinea", "subcountry": "Conakry"}, "Camayenne": {"country": "Guinea", "subcountry": "Conakry"}, "Bok\u00e9": {"country": "Guinea", "subcountry": "Boke"}, "Sainte-Rose": {"country": "Guadeloupe", "subcountry": "Guadeloupe"}, "Sainte-Anne": {"country": "Guadeloupe", "subcountry": "Guadeloupe"}, "Pointe-\u00c0-Pitre": {"country": "Guadeloupe", "subcountry": "Guadeloupe"}, "Petit-Bourg": {"country": "Guadeloupe", "subcountry": "Guadeloupe"}, "Les Abymes": {"country": "Guadeloupe", "subcountry": "Guadeloupe"}, "Le Moule": {"country": "Guadeloupe", "subcountry": "Guadeloupe"}, "Le Gosier": {"country": "Guadeloupe", "subcountry": "Guadeloupe"}, "Capesterre-Belle-Eau": {"country": "Guadeloupe", "subcountry": "Guadeloupe"}, "Basse-Terre": {"country": "Guadeloupe", "subcountry": "Guadeloupe"}, "Baie-Mahault": {"country": "Guadeloupe", "subcountry": "Guadeloupe"}, "Ebebiyin": {"country": "Equatorial Guinea", "subcountry": "Ki\u00e9-Ntem"}, "Malabo": {"country": "Equatorial Guinea", "subcountry": "Bioko Norte"}, "Bata": {"country": "Equatorial Guinea", "subcountry": "Litoral"}, "Vo\u00fala": {"country": "Greece", "subcountry": "Attica"}, "V\u00f3los": {"country": "Greece", "subcountry": "Thessaly"}, "V\u00fdronas": {"country": "Greece", "subcountry": "Attica"}, "V\u00e1ri": {"country": "Greece", "subcountry": "Attica"}, "Tr\u00edpoli": {"country": "Greece", "subcountry": "Peloponnese"}, "Tr\u00edkala": {"country": "Greece", "subcountry": "Thessaly"}, "Th\u00edvai": {"country": "Greece", "subcountry": "Central Greece"}, "Sp\u00e1rti": {"country": "Greece", "subcountry": "Peloponnese"}, "Salam\u00edna": {"country": "Greece", "subcountry": "Attica"}, "Rethymno": {"country": "Greece", "subcountry": "Crete"}, "Pr\u00e9veza": {"country": "Greece", "subcountry": "Epirus"}, "P\u00fdrgos": {"country": "Greece", "subcountry": "West Greece"}, "Piraeus": {"country": "Greece", "subcountry": "Attica"}, "Petro\u00fapolis": {"country": "Greece", "subcountry": "Attica"}, "Perist\u00e9ri": {"country": "Greece", "subcountry": "Attica"}, "P\u00e9rama": {"country": "Greece", "subcountry": "Attica"}, "P\u00e1tra": {"country": "Greece", "subcountry": "West Greece"}, "Palai\u00f3 F\u00e1liro": {"country": "Greece", "subcountry": "Attica"}, "N\u00edkaia": {"country": "Greece", "subcountry": "Attica"}, "N\u00e9a Sm\u00fdrni": {"country": "Greece", "subcountry": "Attica"}, "N\u00e9a M\u00e1kri": {"country": "Greece", "subcountry": "Attica"}, "\u00cdlion": {"country": "Greece", "subcountry": "Attica"}, "N\u00e9a Ion\u00eda": {"country": "Greece", "subcountry": "Thessaly"}, "N\u00e9a Filad\u00e9lfeia": {"country": "Greece", "subcountry": "Attica"}, "N\u00e9a Erythra\u00eda": {"country": "Greece", "subcountry": "Attica"}, "Moskh\u00e1ton": {"country": "Greece", "subcountry": "Attica"}, "Mytil\u00edni": {"country": "Greece", "subcountry": "North Aegean"}, "Mel\u00edssia": {"country": "Greece", "subcountry": "Attica"}, "M\u00e9gara": {"country": "Greece", "subcountry": "Attica"}, "Art\u00e9mida": {"country": "Greece", "subcountry": "Attica"}, "Livadei\u00e1": {"country": "Greece", "subcountry": "Central Greece"}, "L\u00e1risa": {"country": "Greece", "subcountry": "Thessaly"}, "Lam\u00eda": {"country": "Greece", "subcountry": "Central Greece"}, "Metam\u00f3rfosi": {"country": "Greece", "subcountry": "Attica"}, "Kos": {"country": "Greece", "subcountry": "South Aegean"}, "Korop\u00ed": {"country": "Greece", "subcountry": "Attica"}, "K\u00f3rinthos": {"country": "Greece", "subcountry": "Peloponnese"}, "Kifisi\u00e1": {"country": "Greece", "subcountry": "Attica"}, "Cholarg\u00f3s": {"country": "Greece", "subcountry": "Attica"}, "Chios": {"country": "Greece", "subcountry": "North Aegean"}, "Chani\u00e1": {"country": "Greece", "subcountry": "Crete"}, "Chalk\u00edda": {"country": "Greece", "subcountry": "Central Greece"}, "Khal\u00e1ndrion": {"country": "Greece", "subcountry": "Attica"}, "Cha\u00efd\u00e1ri": {"country": "Greece", "subcountry": "Attica"}, "Kerats\u00edni": {"country": "Greece", "subcountry": "Attica"}, "Kard\u00edtsa": {"country": "Greece", "subcountry": "Thessaly"}, "Kamater\u00f3n": {"country": "Greece", "subcountry": "Attica"}, "Kallith\u00e9a": {"country": "Greece", "subcountry": "Attica"}, "Kalam\u00e1ta": {"country": "Greece", "subcountry": "Peloponnese"}, "\u00c1limos": {"country": "Greece", "subcountry": "Attica"}, "Kaisarian\u00ed": {"country": "Greece", "subcountry": "Attica"}, "Ir\u00e1kleio": {"country": "Greece", "subcountry": "Attica"}, "Ir\u00e1kleion": {"country": "Greece", "subcountry": "Crete"}, "Io\u00e1nnina": {"country": "Greece", "subcountry": "Epirus"}, "Glyf\u00e1da": {"country": "Greece", "subcountry": "Attica"}, "Gal\u00e1tsi": {"country": "Greece", "subcountry": "Attica"}, "Ellinik\u00f3": {"country": "Greece", "subcountry": "Attica"}, "Elefs\u00edna": {"country": "Greece", "subcountry": "Attica"}, "Dhafn\u00ed": {"country": "Greece", "subcountry": "Attica"}, "Agios Dimitrios": {"country": "Greece", "subcountry": "Attica"}, "Ag\u00eda Varv\u00e1ra": {"country": "Greece", "subcountry": "Attica"}, "Ag\u00eda Paraskev\u00ed": {"country": "Greece", "subcountry": "Attica"}, "Athens": {"country": "United States", "subcountry": "Ohio"}, "Aspr\u00f3pyrgos": {"country": "Greece", "subcountry": "Attica"}, "Argyro\u00fapoli": {"country": "Greece", "subcountry": "Attica"}, "\u00c1rta": {"country": "Greece", "subcountry": "Epirus"}, "\u00c1rgos": {"country": "Greece", "subcountry": "Peloponnese"}, "\u00c1no Li\u00f3sia": {"country": "Greece", "subcountry": "Attica"}, "Maro\u00fasi": {"country": "Greece", "subcountry": "Attica"}, "Amali\u00e1da": {"country": "Greece", "subcountry": "West Greece"}, "Acharn\u00e9s": {"country": "Greece", "subcountry": "Attica"}, "A\u00edgio": {"country": "Greece", "subcountry": "West Greece"}, "Aig\u00e1leo": {"country": "Greece", "subcountry": "Attica"}, "Agr\u00ednio": {"country": "Greece", "subcountry": "West Greece"}, "R\u00f3dos": {"country": "Greece", "subcountry": "South Aegean"}, "Giannits\u00e1": {"country": "Greece", "subcountry": "Central Macedonia"}, "X\u00e1nthi": {"country": "Greece", "subcountry": "East Macedonia and Thrace"}, "V\u00e9roia": {"country": "Greece", "subcountry": "Central Macedonia"}, "Thessalon\u00edki": {"country": "Greece", "subcountry": "Central Macedonia"}, "Syki\u00e9s": {"country": "Greece", "subcountry": "Central Macedonia"}, "S\u00e9rres": {"country": "Greece", "subcountry": "Central Macedonia"}, "Ptolema\u1e2fda": {"country": "Greece", "subcountry": "West Macedonia"}, "Pol\u00edchni": {"country": "Greece", "subcountry": "Central Macedonia"}, "Pyla\u00eda": {"country": "Greece", "subcountry": "Central Macedonia"}, "Pera\u00eda": {"country": "Greece", "subcountry": "Central Macedonia"}, "Pan\u00f3rama": {"country": "Greece", "subcountry": "Central Macedonia"}, "Oresti\u00e1da": {"country": "Greece", "subcountry": "East Macedonia and Thrace"}, "Orai\u00f3kastro": {"country": "Greece", "subcountry": "Central Macedonia"}, "N\u00e1ousa": {"country": "Greece", "subcountry": "Central Macedonia"}, "Menem\u00e9ni": {"country": "Greece", "subcountry": "Central Macedonia"}, "Koz\u00e1ni": {"country": "Greece", "subcountry": "West Macedonia"}, "Komotin\u00ed": {"country": "Greece", "subcountry": "East Macedonia and Thrace"}, "Kilk\u00eds": {"country": "Greece", "subcountry": "Central Macedonia"}, "Kav\u00e1la": {"country": "Greece", "subcountry": "East Macedonia and Thrace"}, "Kater\u00edni": {"country": "Greece", "subcountry": "Central Macedonia"}, "Kalamari\u00e1": {"country": "Greece", "subcountry": "Central Macedonia"}, "Fl\u00f3rina": {"country": "Greece", "subcountry": "West Macedonia"}, "\u00c9dessa": {"country": "Greece", "subcountry": "Central Macedonia"}, "Dr\u00e1ma": {"country": "Greece", "subcountry": "East Macedonia and Thrace"}, "Alexandro\u00fapoli": {"country": "Greece", "subcountry": "East Macedonia and Thrace"}, "Corfu": {"country": "Greece", "subcountry": "Ionian Islands"}, "Vrilissia": {"country": "Greece", "subcountry": "Attica"}, "G\u00e9rakas": {"country": "Greece", "subcountry": "Attica"}, "Ilio\u00fapoli": {"country": "Greece", "subcountry": "Attica"}, "Korydall\u00f3s": {"country": "Greece", "subcountry": "Attica"}, "Zogr\u00e1fos": {"country": "Greece", "subcountry": "Attica"}, "P\u00e9fki": {"country": "Greece", "subcountry": "Attica"}, "\u00c1gioi An\u00e1rgyroi": {"country": "Greece", "subcountry": "Attica"}, "Agios Ioannis Rentis": {"country": "Greece", "subcountry": "Attica"}, "Grytviken": {"country": "South Georgia and the South Sandwich Islands", "subcountry": "N/A"}, "Zacapa": {"country": "Guatemala", "subcountry": "Zacapa"}, "Villa Canales": {"country": "Guatemala", "subcountry": "Guatemala"}, "Totonicap\u00e1n": {"country": "Guatemala", "subcountry": "Totonicap\u00e1n"}, "Tecp\u00e1n Guatemala": {"country": "Guatemala", "subcountry": "Chimaltenango"}, "Sumpango": {"country": "Guatemala", "subcountry": "Sacatep\u00e9quez"}, "Solol\u00e1": {"country": "Guatemala", "subcountry": "Solol\u00e1"}, "Santiago Sacatep\u00e9quez": {"country": "Guatemala", "subcountry": "Sacatep\u00e9quez"}, "Santiago Atitl\u00e1n": {"country": "Guatemala", "subcountry": "Solol\u00e1"}, "Santa Mar\u00eda De Jes\u00fas": {"country": "Guatemala", "subcountry": "Sacatep\u00e9quez"}, "Santa Luc\u00eda Cotzumalguapa": {"country": "Guatemala", "subcountry": "Escuintla"}, "Santa Cruz Del Quich\u00e9": {"country": "Guatemala", "subcountry": "Quich\u00e9"}, "Santa Catarina Pinula": {"country": "Guatemala", "subcountry": "Guatemala"}, "San Pedro Sacatep\u00e9quez": {"country": "Guatemala", "subcountry": "San Marcos"}, "San Pedro Ayampuc": {"country": "Guatemala", "subcountry": "Guatemala"}, "San Pablo Jocopilas": {"country": "Guatemala", "subcountry": "Suchitepeque"}, "San Lucas Sacatep\u00e9quez": {"country": "Guatemala", "subcountry": "Sacatep\u00e9quez"}, "San Juan Sacatep\u00e9quez": {"country": "Guatemala", "subcountry": "Guatemala"}, "San Jos\u00e9 Pinula": {"country": "Guatemala", "subcountry": "Guatemala"}, "San Francisco El Alto": {"country": "Guatemala", "subcountry": "Totonicap\u00e1n"}, "San Crist\u00f3bal Verapaz": {"country": "Guatemala", "subcountry": "Alta Verapaz"}, "San Benito": {"country": "Guatemala", "subcountry": "Pet\u00e9n"}, "Sanarate": {"country": "Guatemala", "subcountry": "El Progreso"}, "San Andr\u00e9s Itzapa": {"country": "Guatemala", "subcountry": "Chimaltenango"}, "Salam\u00e1": {"country": "Guatemala", "subcountry": "Baja Verapaz"}, "Retalhuleu": {"country": "Guatemala", "subcountry": "Retalhuleu"}, "Quetzaltenango": {"country": "Guatemala", "subcountry": "Quetzaltenango"}, "Puerto San Jos\u00e9": {"country": "Guatemala", "subcountry": "Escuintla"}, "Puerto Barrios": {"country": "Guatemala", "subcountry": "Izabal"}, "Tiquisate": {"country": "Guatemala", "subcountry": "Escuintla"}, "Popt\u00fan": {"country": "Guatemala", "subcountry": "Pet\u00e9n"}, "Petapa": {"country": "Guatemala", "subcountry": "Guatemala"}, "Patz\u00fan": {"country": "Guatemala", "subcountry": "Chimaltenango"}, "Patzic\u00eda": {"country": "Guatemala", "subcountry": "Chimaltenango"}, "Panz\u00f3s": {"country": "Guatemala", "subcountry": "Alta Verapaz"}, "Pal\u00edn": {"country": "Guatemala", "subcountry": "Escuintla"}, "Ostuncalco": {"country": "Guatemala", "subcountry": "Quetzaltenango"}, "Nuevo San Carlos": {"country": "Guatemala", "subcountry": "Retalhuleu"}, "Nebaj": {"country": "Guatemala", "subcountry": "Quich\u00e9"}, "Nahual\u00e1": {"country": "Guatemala", "subcountry": "Solol\u00e1"}, "Momostenango": {"country": "Guatemala", "subcountry": "Totonicap\u00e1n"}, "Mixco": {"country": "Guatemala", "subcountry": "Guatemala"}, "Mazatenango": {"country": "Guatemala", "subcountry": "Suchitepeque"}, "La Gomera": {"country": "Guatemala", "subcountry": "Escuintla"}, "La Esperanza": {"country": "Guatemala", "subcountry": "Quetzaltenango"}, "Jutiapa": {"country": "Guatemala", "subcountry": "Jutiapa"}, "Jocotenango": {"country": "Guatemala", "subcountry": "Sacatep\u00e9quez"}, "Jalapa": {"country": "Nicaragua", "subcountry": "Nueva Segovia"}, "Jacaltenango": {"country": "Guatemala", "subcountry": "Huehuetenango"}, "Huehuetenango": {"country": "Guatemala", "subcountry": "Huehuetenango"}, "Gual\u00e1n": {"country": "Guatemala", "subcountry": "Zacapa"}, "Fraijanes": {"country": "Guatemala", "subcountry": "Guatemala"}, "Flores": {"country": "Guatemala", "subcountry": "Pet\u00e9n"}, "Esquipulas": {"country": "Guatemala", "subcountry": "Chiquimula"}, "Escuintla": {"country": "Guatemala", "subcountry": "Escuintla"}, "El Tejar": {"country": "Guatemala", "subcountry": "Chimaltenango"}, "El Palmar": {"country": "Guatemala", "subcountry": "Quetzaltenango"}, "El Estor": {"country": "Guatemala", "subcountry": "Izabal"}, "Cuilapa": {"country": "Guatemala", "subcountry": "Santa Rosa"}, "Comitancillo": {"country": "Guatemala", "subcountry": "San Marcos"}, "Comalapa": {"country": "Guatemala", "subcountry": "Chimaltenango"}, "Colomba": {"country": "Guatemala", "subcountry": "Quetzaltenango"}, "Cob\u00e1n": {"country": "Guatemala", "subcountry": "Alta Verapaz"}, "Coatepeque": {"country": "Guatemala", "subcountry": "Quetzaltenango"}, "Ciudad Vieja": {"country": "Guatemala", "subcountry": "Sacatep\u00e9quez"}, "Guatemala City": {"country": "Guatemala", "subcountry": "Guatemala"}, "Chisec": {"country": "Guatemala", "subcountry": "Alta Verapaz"}, "Chiquimula": {"country": "Guatemala", "subcountry": "Chiquimula"}, "Chinautla": {"country": "Guatemala", "subcountry": "Guatemala"}, "Chimaltenango": {"country": "Guatemala", "subcountry": "Chimaltenango"}, "Chichicastenango": {"country": "Guatemala", "subcountry": "Quich\u00e9"}, "Chicacao": {"country": "Guatemala", "subcountry": "Suchitepeque"}, "Cantel": {"country": "Guatemala", "subcountry": "Quetzaltenango"}, "Barberena": {"country": "Guatemala", "subcountry": "Santa Rosa"}, "Asunci\u00f3n Mita": {"country": "Guatemala", "subcountry": "Jutiapa"}, "Antigua Guatemala": {"country": "Guatemala", "subcountry": "Sacatep\u00e9quez"}, "Amatitl\u00e1n": {"country": "Guatemala", "subcountry": "Guatemala"}, "Alotenango": {"country": "Guatemala", "subcountry": "Sacatep\u00e9quez"}, "Tamuning-Tumon-Harmon Village": {"country": "Guam", "subcountry": "Tamuning"}, "Yigo Village": {"country": "Guam", "subcountry": "Yigo"}, "Guam Government House": {"country": "Guam", "subcountry": "Hagatna"}, "Dededo Village": {"country": "Guam", "subcountry": "Dededo"}, "Hag\u00e5t\u00f1a": {"country": "Guam", "subcountry": "Hagatna"}, "Mangilao Village": {"country": "Guam", "subcountry": "Mangilao"}, "Bissau": {"country": "Guinea-Bissau", "subcountry": "Bissau"}, "Bafat\u00e1": {"country": "Guinea-Bissau", "subcountry": "Bafat\u00e1"}, "New Amsterdam": {"country": "Guyana", "subcountry": "East Berbice-Corentyne"}, "Linden": {"country": "United States", "subcountry": "New Jersey"}, "Georgetown": {"country": "United States", "subcountry": "Texas"}, "Tsuen Wan": {"country": "Hong Kong", "subcountry": "Tsuen Wan"}, "Yuen Long Kau Hui": {"country": "Hong Kong", "subcountry": "Yuen Long"}, "Tuen Mun": {"country": "Hong Kong", "subcountry": "Tuen Mun"}, "Tai Po": {"country": "Hong Kong", "subcountry": "Tai Po"}, "Sha Tin": {"country": "Hong Kong", "subcountry": "Sha Tin"}, "Kowloon": {"country": "Hong Kong", "subcountry": "Kowloon City"}, "Hong Kong": {"country": "Hong Kong", "subcountry": "Central and Western"}, "Puerto Cortez": {"country": "Honduras", "subcountry": "Cort\u00e9s"}, "Yoro": {"country": "Honduras", "subcountry": "Yoro"}, "Tocoa": {"country": "Honduras", "subcountry": "Col\u00f3n"}, "Tela": {"country": "Honduras", "subcountry": "Atl\u00e1ntida"}, "Tegucigalpa": {"country": "Honduras", "subcountry": "Francisco Moraz\u00e1n"}, "Siguatepeque": {"country": "Honduras", "subcountry": "Comayagua"}, "Santa Rosa De Cop\u00e1n": {"country": "Honduras", "subcountry": "Cop\u00e1n"}, "Santa B\u00e1rbara": {"country": "Honduras", "subcountry": "Santa B\u00e1rbara"}, "San Pedro Sula": {"country": "Honduras", "subcountry": "Cort\u00e9s"}, "Potrerillos": {"country": "Honduras", "subcountry": "Cort\u00e9s"}, "Olanchito": {"country": "Honduras", "subcountry": "Yoro"}, "La Lima": {"country": "Honduras", "subcountry": "Cort\u00e9s"}, "La Ceiba": {"country": "Honduras", "subcountry": "Atl\u00e1ntida"}, "Juticalpa": {"country": "Honduras", "subcountry": "Olancho"}, "El Progreso": {"country": "Honduras", "subcountry": "Yoro"}, "El Para\u00edso": {"country": "Honduras", "subcountry": "El Para\u00edso"}, "Danl\u00ed": {"country": "Honduras", "subcountry": "El Para\u00edso"}, "Comayagua": {"country": "Honduras", "subcountry": "Comayagua"}, "Cofrad\u00eda": {"country": "Honduras", "subcountry": "Cort\u00e9s"}, "Ciudad Choluteca": {"country": "Honduras", "subcountry": "Choluteca"}, "Choloma": {"country": "Honduras", "subcountry": "Cort\u00e9s"}, "Zapre\u0161i\u0107": {"country": "Croatia", "subcountry": "Zagreba\u010dka"}, "Zagreb": {"country": "Croatia", "subcountry": "Grad Zagreb"}, "Zadar": {"country": "Croatia", "subcountry": "Zadarska"}, "Vukovar": {"country": "Croatia", "subcountry": "Vukovarsko-Srijemska"}, "Virovitica": {"country": "Croatia", "subcountry": "Viroviti\u010dk-Podravska"}, "Vinkovci": {"country": "Croatia", "subcountry": "Vukovarsko-Srijemska"}, "Velika Gorica": {"country": "Croatia", "subcountry": "Zagreba\u010dka"}, "Vara\u017edin": {"country": "Croatia", "subcountry": "Vara\u017edinska"}, "Split": {"country": "Croatia", "subcountry": "Splitsko-Dalmatinska"}, "Solin": {"country": "Croatia", "subcountry": "Splitsko-Dalmatinska"}, "Slavonski Brod": {"country": "Croatia", "subcountry": "Brodsko-Posavska"}, "Po\u017eega": {"country": "Croatia", "subcountry": "Po\u017ee\u0161ko-Slavonska"}, "Sisak": {"country": "Croatia", "subcountry": "Sisa\u010dko-Moslava\u010dka"}, "\u0160ibenik": {"country": "Croatia", "subcountry": "\u0160ibensko-Kniniska"}, "Sesvete": {"country": "Croatia", "subcountry": "Grad Zagreb"}, "Samobor": {"country": "Croatia", "subcountry": "Zagreba\u010dka"}, "Rijeka": {"country": "Croatia", "subcountry": "Primorsko-Goranska"}, "Pula": {"country": "Croatia", "subcountry": "Istarska"}, "Osijek": {"country": "Croatia", "subcountry": "Osje\u010dko-Baranjska"}, "Koprivnica": {"country": "Croatia", "subcountry": "Koprivni\u010dko-Kri\u017eeva\u010dka"}, "Karlovac": {"country": "Croatia", "subcountry": "Karlova\u010dka"}, "Dubrovnik": {"country": "Croatia", "subcountry": "Dubrova\u010dko-Neretvanska"}, "\u010cakovec": {"country": "Croatia", "subcountry": "Me\u0111imurska"}, "Bjelovar": {"country": "Croatia", "subcountry": "Bjelovarsko-Bilogorska"}, "Zagreb- Stenjevec": {"country": "Croatia", "subcountry": "Grad Zagreb"}, "Zagreb - Centar": {"country": "Croatia", "subcountry": "Grad Zagreb"}, "Verrettes": {"country": "Haiti", "subcountry": "Artibonite"}, "Thomazeau": {"country": "Haiti", "subcountry": "Ouest"}, "Saint-Marc": {"country": "Haiti", "subcountry": "Artibonite"}, "Port-De-Paix": {"country": "Haiti", "subcountry": "Nord-Ouest"}, "Port-Au-Prince": {"country": "Haiti", "subcountry": "Ouest"}, "Tigwav": {"country": "Haiti", "subcountry": "Ouest"}, "P\u00e9tionville": {"country": "Haiti", "subcountry": "Ouest"}, "Mirago\u00e2ne": {"country": "Haiti", "subcountry": "Nippes"}, "Lenbe": {"country": "Haiti", "subcountry": "Nord"}, "L\u00e9og\u00e2ne": {"country": "Haiti", "subcountry": "Ouest"}, "Kenscoff": {"country": "Haiti", "subcountry": "Ouest"}, "J\u00e9r\u00e9mie": {"country": "Haiti", "subcountry": "Grand\u02bcAnse"}, "Jacmel": {"country": "Haiti", "subcountry": "Sud-Est"}, "Hinche": {"country": "Haiti", "subcountry": "Centre"}, "Gressier": {"country": "Haiti", "subcountry": "Ouest"}, "Grangwav": {"country": "Haiti", "subcountry": "Ouest"}, "Gonayiv": {"country": "Haiti", "subcountry": "Artibonite"}, "Fond Parisien": {"country": "Haiti", "subcountry": "Ouest"}, "D\u00e9sarmes": {"country": "Haiti", "subcountry": "Artibonite"}, "Delmas 73": {"country": "Haiti", "subcountry": "Ouest"}, "Croix Des Bouquets": {"country": "Haiti", "subcountry": "Ouest"}, "Les Cayes": {"country": "Haiti", "subcountry": "Sud"}, "Carrefour": {"country": "Haiti", "subcountry": "Ouest"}, "Okap": {"country": "Haiti", "subcountry": "Nord"}, "Ti Port-De-Paix": {"country": "Haiti", "subcountry": "Nord-Ouest"}, "T\u00f6r\u00f6kszentmikl\u00f3s": {"country": "Hungary", "subcountry": "J\u00e1sz-Nagykun-Szolnok"}, "Tisza\u00fajv\u00e1ros": {"country": "Hungary", "subcountry": "Borsod-Aba\u00faj-Zempl\u00e9n"}, "Szolnok": {"country": "Hungary", "subcountry": "J\u00e1sz-Nagykun-Szolnok"}, "Szentes": {"country": "Hungary", "subcountry": "Csongr\u00e1d"}, "Szeged": {"country": "Hungary", "subcountry": "Csongr\u00e1d"}, "Szarvas": {"country": "Hungary", "subcountry": "Bekes"}, "S\u00e1toralja\u00fajhely": {"country": "Hungary", "subcountry": "Borsod-Aba\u00faj-Zempl\u00e9n"}, "P\u00fcsp\u00f6klad\u00e1ny": {"country": "Hungary", "subcountry": "Hajd\u00fa-Bihar"}, "\u00d3zd": {"country": "Hungary", "subcountry": "Borsod-Aba\u00faj-Zempl\u00e9n"}, "Orosh\u00e1za": {"country": "Hungary", "subcountry": "Bekes"}, "Ny\u00edregyh\u00e1za": {"country": "Hungary", "subcountry": "Szabolcs-Szatm\u00e1r-Bereg"}, "Miskolc": {"country": "Hungary", "subcountry": "Borsod-Aba\u00faj-Zempl\u00e9n"}, "Mez\u0151t\u00far": {"country": "Hungary", "subcountry": "J\u00e1sz-Nagykun-Szolnok"}, "Mez\u0151k\u00f6vesd": {"country": "Hungary", "subcountry": "Borsod-Aba\u00faj-Zempl\u00e9n"}, "M\u00e1t\u00e9szalka": {"country": "Hungary", "subcountry": "Szabolcs-Szatm\u00e1r-Bereg"}, "Mak\u00f3": {"country": "Hungary", "subcountry": "Csongr\u00e1d"}, "Kisv\u00e1rda": {"country": "Hungary", "subcountry": "Szabolcs-Szatm\u00e1r-Bereg"}, "Kazincbarcika": {"country": "Hungary", "subcountry": "Borsod-Aba\u00faj-Zempl\u00e9n"}, "Karcag": {"country": "Hungary", "subcountry": "J\u00e1sz-Nagykun-Szolnok"}, "H\u00f3dmez\u0151v\u00e1s\u00e1rhely": {"country": "Hungary", "subcountry": "Csongr\u00e1d"}, "Hajd\u00faszoboszl\u00f3": {"country": "Hungary", "subcountry": "Hajd\u00fa-Bihar"}, "Hajd\u00fan\u00e1n\u00e1s": {"country": "Hungary", "subcountry": "Hajd\u00fa-Bihar"}, "Hajd\u00fab\u00f6sz\u00f6rm\u00e9ny": {"country": "Hungary", "subcountry": "Hajd\u00fa-Bihar"}, "Gyula": {"country": "Hungary", "subcountry": "Bekes"}, "Gyomaendr\u0151d": {"country": "Hungary", "subcountry": "Bekes"}, "Eger": {"country": "Hungary", "subcountry": "Heves"}, "Debrecen": {"country": "Hungary", "subcountry": "Hajd\u00fa-Bihar"}, "Csongr\u00e1d": {"country": "Hungary", "subcountry": "Csongr\u00e1d"}, "Beretty\u00f3\u00fajfalu": {"country": "Hungary", "subcountry": "Hajd\u00fa-Bihar"}, "B\u00e9k\u00e9scsaba": {"country": "Hungary", "subcountry": "Bekes"}, "B\u00e9k\u00e9s": {"country": "Hungary", "subcountry": "Bekes"}, "Balmaz\u00fajv\u00e1ros": {"country": "Hungary", "subcountry": "Hajd\u00fa-Bihar"}, "Abony": {"country": "Hungary", "subcountry": "Pest"}, "Zalaegerszeg": {"country": "Hungary", "subcountry": "Zala"}, "Veszpr\u00e9m": {"country": "Hungary", "subcountry": "Veszpr\u00e9m"}, "Vecs\u00e9s": {"country": "Hungary", "subcountry": "Pest"}, "V\u00e1rpalota": {"country": "Hungary", "subcountry": "Veszpr\u00e9m"}, "V\u00e1c": {"country": "Hungary", "subcountry": "Pest"}, "Tatab\u00e1nya": {"country": "Hungary", "subcountry": "Kom\u00e1rom-Esztergom"}, "Tata": {"country": "Hungary", "subcountry": "Kom\u00e1rom-Esztergom"}, "Tapolca": {"country": "Hungary", "subcountry": "Veszpr\u00e9m"}, "Szombathely": {"country": "Hungary", "subcountry": "Vas"}, "Szigetszentmikl\u00f3s": {"country": "Hungary", "subcountry": "Pest"}, "Szentendre": {"country": "Hungary", "subcountry": "Pest"}, "Szeksz\u00e1rd": {"country": "Hungary", "subcountry": "Tolna"}, "Sz\u00e9kesfeh\u00e9rv\u00e1r": {"country": "Hungary", "subcountry": "Fej\u00e9r"}, "Sz\u00e1zhalombatta": {"country": "Hungary", "subcountry": "Pest"}, "Sopron": {"country": "Hungary", "subcountry": "Gy\u0151r-Moson-Sopron"}, "Si\u00f3fok": {"country": "Hungary", "subcountry": "Somogy"}, "S\u00e1rv\u00e1r": {"country": "Hungary", "subcountry": "Vas"}, "Salg\u00f3tarj\u00e1n": {"country": "Hungary", "subcountry": "N\u00f3gr\u00e1d"}, "P\u00e9cs": {"country": "Hungary", "subcountry": "Baranya"}, "Par\u00e1dsasv\u00e1r": {"country": "Hungary", "subcountry": "Heves"}, "P\u00e1pa": {"country": "Hungary", "subcountry": "Veszpr\u00e9m"}, "Paks": {"country": "Hungary", "subcountry": "Tolna"}, "Oroszl\u00e1ny": {"country": "Hungary", "subcountry": "Kom\u00e1rom-Esztergom"}, "Nagyk\u0151r\u00f6s": {"country": "Hungary", "subcountry": "Pest"}, "Nagykanizsa": {"country": "Hungary", "subcountry": "Zala"}, "Mosonmagyar\u00f3v\u00e1r": {"country": "Hungary", "subcountry": "Gy\u0151r-Moson-Sopron"}, "Monor": {"country": "Hungary", "subcountry": "Pest"}, "Moh\u00e1cs": {"country": "Hungary", "subcountry": "Baranya"}, "Koml\u00f3": {"country": "Hungary", "subcountry": "Baranya"}, "Kom\u00e1rom": {"country": "Hungary", "subcountry": "Kom\u00e1rom-Esztergom"}, "Kiskunhalas": {"country": "Hungary", "subcountry": "B\u00e1cs-Kiskun"}, "Kiskunf\u00e9legyh\u00e1za": {"country": "Hungary", "subcountry": "B\u00e1cs-Kiskun"}, "Kisk\u0151r\u00f6s": {"country": "Hungary", "subcountry": "B\u00e1cs-Kiskun"}, "Keszthely": {"country": "Hungary", "subcountry": "Zala"}, "Kecskem\u00e9t": {"country": "Hungary", "subcountry": "B\u00e1cs-Kiskun"}, "Kaposv\u00e1r": {"country": "Hungary", "subcountry": "Somogy"}, "Kalocsa": {"country": "Hungary", "subcountry": "B\u00e1cs-Kiskun"}, "J\u00e1szber\u00e9ny": {"country": "Hungary", "subcountry": "J\u00e1sz-Nagykun-Szolnok"}, "Hatvan": {"country": "Hungary", "subcountry": "Heves"}, "Gy\u0151r": {"country": "Hungary", "subcountry": "Gy\u0151r-Moson-Sopron"}, "Gy\u00f6ngy\u00f6s": {"country": "Hungary", "subcountry": "Heves"}, "Gy\u00e1l": {"country": "Hungary", "subcountry": "Pest"}, "G\u00f6d\u00f6ll\u0151": {"country": "Hungary", "subcountry": "Pest"}, "G\u00f6d": {"country": "Hungary", "subcountry": "Pest"}, "F\u00f3t": {"country": "Hungary", "subcountry": "Pest"}, "Esztergom": {"country": "Hungary", "subcountry": "Kom\u00e1rom-Esztergom"}, "\u00c9rd": {"country": "Hungary", "subcountry": "Pest"}, "Duna\u00fajv\u00e1ros": {"country": "Hungary", "subcountry": "Fej\u00e9r"}, "Dunakeszi": {"country": "Hungary", "subcountry": "Pest"}, "Dunaharaszti": {"country": "Hungary", "subcountry": "Pest"}, "Domb\u00f3v\u00e1r": {"country": "Hungary", "subcountry": "Tolna"}, "Dabas": {"country": "Hungary", "subcountry": "Pest"}, "Cegl\u00e9d": {"country": "Hungary", "subcountry": "Pest"}, "Budapest": {"country": "Hungary", "subcountry": "Budapest"}, "Buda\u00f6rs": {"country": "Hungary", "subcountry": "Pest"}, "Balassagyarmat": {"country": "Hungary", "subcountry": "N\u00f3gr\u00e1d"}, "Baja": {"country": "Hungary", "subcountry": "B\u00e1cs-Kiskun"}, "Ajka": {"country": "Hungary", "subcountry": "Veszpr\u00e9m"}, "Budapest Xii. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Xi. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Ix. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Viii. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Vii. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Vi. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Xiv. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Xiii. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Iv. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Xv. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Xvi. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest X. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Xix. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Xviii. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Xxiii. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Xxii. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Xxi. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Xx. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Xvii. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Iii. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest Ii. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Budapest I. Ker\u00fclet": {"country": "Hungary", "subcountry": "Budapest"}, "Tongging": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Teluk Nibung": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Tebingtinggi": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Tanjungtiram": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Tanjungbalai": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Sunggal": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Stabat": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Singkil": {"country": "Indonesia", "subcountry": "Aceh"}, "Sigli": {"country": "Indonesia", "subcountry": "Aceh"}, "Sibolga": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Sabang": {"country": "Indonesia", "subcountry": "Aceh"}, "Reuleuet": {"country": "Indonesia", "subcountry": "Aceh"}, "Rantauprapat": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Percut": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Perbaungan": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Pematangsiantar": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Pangkalan Brandan": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Padangsidempuan": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Meulaboh": {"country": "Indonesia", "subcountry": "Aceh"}, "Medan": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Lhokseumawe": {"country": "Indonesia", "subcountry": "Aceh"}, "Langsa": {"country": "Indonesia", "subcountry": "Aceh"}, "Labuhan Deli": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Kisaran": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Kabanjahe": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Deli Tua": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Bireun": {"country": "Indonesia", "subcountry": "Aceh"}, "Binjai": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Berastagi": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Belawan": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Bandar": {"country": "Indonesia", "subcountry": "North Sumatra"}, "Banda Aceh": {"country": "Indonesia", "subcountry": "Aceh"}, "Yogyakarta": {"country": "Indonesia", "subcountry": "Daerah Istimewa Yogyakarta"}, "Wonosobo": {"country": "Indonesia", "subcountry": "Central Java"}, "Wonopringgo": {"country": "Indonesia", "subcountry": "Central Java"}, "Wongsorejo": {"country": "Indonesia", "subcountry": "East Java"}, "Wiradesa": {"country": "Indonesia", "subcountry": "Central Java"}, "Weru": {"country": "Indonesia", "subcountry": "West Java"}, "Weleri": {"country": "Indonesia", "subcountry": "Central Java"}, "Welahan": {"country": "Indonesia", "subcountry": "Central Java"}, "Wedi": {"country": "Indonesia", "subcountry": "Central Java"}, "Watampone": {"country": "Indonesia", "subcountry": "South Sulawesi"}, "Wangon": {"country": "Indonesia", "subcountry": "Central Java"}, "Wanaraja": {"country": "Indonesia", "subcountry": "West Java"}, "Waingapu": {"country": "Indonesia", "subcountry": "East Nusa Tenggara"}, "Ungaran": {"country": "Indonesia", "subcountry": "Central Java"}, "Makassar": {"country": "Indonesia", "subcountry": "South Sulawesi"}, "Ubud": {"country": "Indonesia", "subcountry": "Bali"}, "Tulungagung": {"country": "Indonesia", "subcountry": "East Java"}, "Tulangan Utara": {"country": "Indonesia", "subcountry": "East Java"}, "Tuban": {"country": "Indonesia", "subcountry": "East Java"}, "Tual": {"country": "Indonesia", "subcountry": "Maluku"}, "Trucuk": {"country": "Indonesia", "subcountry": "Central Java"}, "Trenggalek": {"country": "Indonesia", "subcountry": "East Java"}, "Tondano": {"country": "Indonesia", "subcountry": "North Sulawesi"}, "Tomohon": {"country": "Indonesia", "subcountry": "North Sulawesi"}, "Ternate": {"country": "Philippines", "subcountry": "Calabarzon"}, "Terbanggi Besar": {"country": "Indonesia", "subcountry": "Lampung"}, "Tegal": {"country": "Indonesia", "subcountry": "Central Java"}, "Tayu": {"country": "Indonesia", "subcountry": "Central Java"}, "Tasikmalaya": {"country": "Indonesia", "subcountry": "West Java"}, "Tarub": {"country": "Indonesia", "subcountry": "Central Java"}, "Tarakan": {"country": "Indonesia", "subcountry": "North Kalimantan"}, "Tanjungpinang": {"country": "Indonesia", "subcountry": "Riau Islands"}, "Tanjung Pandan": {"country": "Indonesia", "subcountry": "Bangka\u2013Belitung Islands"}, "Bandar Lampung": {"country": "Indonesia", "subcountry": "Lampung"}, "Tanjungagung": {"country": "Indonesia", "subcountry": "South Sumatra"}, "Tanggulangin": {"country": "Indonesia", "subcountry": "East Java"}, "Tangerang": {"country": "Indonesia", "subcountry": "Banten"}, "Tabanan": {"country": "Indonesia", "subcountry": "Bali"}, "Surakarta": {"country": "Indonesia", "subcountry": "Central Java"}, "Surabaya": {"country": "Indonesia", "subcountry": "East Java"}, "Sungai Raya": {"country": "Indonesia", "subcountry": "West Kalimantan"}, "Sungai Penuh": {"country": "Indonesia", "subcountry": "Jambi"}, "Sungailiat": {"country": "Indonesia", "subcountry": "Bangka\u2013Belitung Islands"}, "Sumenep": {"country": "Indonesia", "subcountry": "East Java"}, "Sumedang Utara": {"country": "Indonesia", "subcountry": "N/A"}, "Sumberpucung": {"country": "Indonesia", "subcountry": "East Java"}, "Sumber": {"country": "Indonesia", "subcountry": "West Java"}, "Sumbawa Besar": {"country": "Indonesia", "subcountry": "West Nusa Tenggara"}, "Sokaraja": {"country": "Indonesia", "subcountry": "Central Java"}, "Sukabumi": {"country": "Indonesia", "subcountry": "West Java"}, "Srono": {"country": "Indonesia", "subcountry": "East Java"}, "Srandakan": {"country": "Indonesia", "subcountry": "Daerah Istimewa Yogyakarta"}, "Sragen": {"country": "Indonesia", "subcountry": "Central Java"}, "Sorong": {"country": "Indonesia", "subcountry": "West Papua"}, "Soreang": {"country": "Indonesia", "subcountry": "West Java"}, "Solok": {"country": "Indonesia", "subcountry": "West Sumatra"}, "Soko": {"country": "Indonesia", "subcountry": "East Java"}, "Sofifi": {"country": "Indonesia", "subcountry": "Maluku Utara"}, "Soe": {"country": "Indonesia", "subcountry": "East Nusa Tenggara"}, "Sleman": {"country": "Indonesia", "subcountry": "Daerah Istimewa Yogyakarta"}, "Slawi": {"country": "Indonesia", "subcountry": "Central Java"}, "Situbondo": {"country": "Indonesia", "subcountry": "East Java"}, "Sinjai": {"country": "Indonesia", "subcountry": "South Sulawesi"}, "Singosari": {"country": "Indonesia", "subcountry": "East Java"}, "Singojuruh": {"country": "Indonesia", "subcountry": "East Java"}, "Singkawang": {"country": "Indonesia", "subcountry": "West Kalimantan"}, "Sengkang": {"country": "Indonesia", "subcountry": "South Sulawesi"}, "Singaraja": {"country": "Indonesia", "subcountry": "Bali"}, "Singaparna": {"country": "Indonesia", "subcountry": "West Java"}, "Simpang": {"country": "Indonesia", "subcountry": "Jambi"}, "Sijunjung": {"country": "Indonesia", "subcountry": "West Sumatra"}, "Sidoarjo": {"country": "Indonesia", "subcountry": "East Java"}, "Sidareja": {"country": "Indonesia", "subcountry": "Central Java"}, "Sewon": {"country": "Indonesia", "subcountry": "Daerah Istimewa Yogyakarta"}, "Serpong": {"country": "Indonesia", "subcountry": "West Java"}, "Serang": {"country": "Indonesia", "subcountry": "Banten"}, "Sepatan": {"country": "Indonesia", "subcountry": "West Java"}, "Semarang": {"country": "Indonesia", "subcountry": "Central Java"}, "Selogiri": {"country": "Indonesia", "subcountry": "Central Java"}, "Sawangan": {"country": "Indonesia", "subcountry": "West Java"}, "Sampit": {"country": "Indonesia", "subcountry": "Central Kalimantan"}, "Sampang": {"country": "Indonesia", "subcountry": "East Java"}, "Samarinda": {"country": "Indonesia", "subcountry": "East Kalimantan"}, "Salatiga": {"country": "Indonesia", "subcountry": "Central Java"}, "Ruteng": {"country": "Indonesia", "subcountry": "East Nusa Tenggara"}, "Rengasdengklok": {"country": "Indonesia", "subcountry": "West Java"}, "Rembangan": {"country": "Indonesia", "subcountry": "Central Java"}, "Rantepao": {"country": "Indonesia", "subcountry": "South Sulawesi"}, "Rangkasbitung": {"country": "Indonesia", "subcountry": "Banten"}, "Randudongkal": {"country": "Indonesia", "subcountry": "Central Java"}, "Rajapolah": {"country": "Indonesia", "subcountry": "West Java"}, "Purwokerto": {"country": "Indonesia", "subcountry": "Central Java"}, "Purwodadi": {"country": "Indonesia", "subcountry": "Central Java"}, "Purwakarta": {"country": "Indonesia", "subcountry": "West Java"}, "Purbalingga": {"country": "Indonesia", "subcountry": "Central Java"}, "Pundong": {"country": "Indonesia", "subcountry": "Daerah Istimewa Yogyakarta"}, "Probolinggo": {"country": "Indonesia", "subcountry": "East Java"}, "Prigen": {"country": "Indonesia", "subcountry": "East Java"}, "Praya": {"country": "Indonesia", "subcountry": "West Nusa Tenggara"}, "Candi Prambanan": {"country": "Indonesia", "subcountry": "Central Java"}, "Poso": {"country": "Indonesia", "subcountry": "Central Sulawesi"}, "Pontianak": {"country": "Indonesia", "subcountry": "West Kalimantan"}, "Ponorogo": {"country": "Indonesia", "subcountry": "East Java"}, "Polewali": {"country": "Indonesia", "subcountry": "Sulawesi Barat"}, "Plumbon": {"country": "Indonesia", "subcountry": "West Java"}, "Petarukan": {"country": "Indonesia", "subcountry": "Central Java"}, "Prabumulih": {"country": "Indonesia", "subcountry": "South Sumatra"}, "Pemangkat": {"country": "Indonesia", "subcountry": "West Kalimantan"}, "Pemalang": {"country": "Indonesia", "subcountry": "Central Java"}, "Pelabuhanratu": {"country": "Indonesia", "subcountry": "West Java"}, "Pekanbaru": {"country": "Indonesia", "subcountry": "Riau"}, "Pekalongan": {"country": "Indonesia", "subcountry": "Central Java"}, "Pecangaan": {"country": "Indonesia", "subcountry": "Central Java"}, "Payakumbuh": {"country": "Indonesia", "subcountry": "West Sumatra"}, "Pati": {"country": "Indonesia", "subcountry": "Central Java"}, "Pasuruan": {"country": "Indonesia", "subcountry": "East Java"}, "Paseh": {"country": "Indonesia", "subcountry": "West Java"}, "Pasarkemis": {"country": "Indonesia", "subcountry": "West Java"}, "Parung": {"country": "Indonesia", "subcountry": "West Java"}, "Pariaman": {"country": "Indonesia", "subcountry": "West Sumatra"}, "Parepare": {"country": "Indonesia", "subcountry": "South Sulawesi"}, "Pare": {"country": "Indonesia", "subcountry": "East Java"}, "Panji": {"country": "Indonesia", "subcountry": "East Java"}, "Pangkalpinang": {"country": "Indonesia", "subcountry": "Bangka\u2013Belitung Islands"}, "Pangkalanbuun": {"country": "Indonesia", "subcountry": "Central Kalimantan"}, "Pandeglang": {"country": "Indonesia", "subcountry": "Banten"}, "Pandaan": {"country": "Indonesia", "subcountry": "East Java"}, "Pandak": {"country": "Indonesia", "subcountry": "Daerah Istimewa Yogyakarta"}, "Panarukan": {"country": "Indonesia", "subcountry": "East Java"}, "Pamulang": {"country": "Indonesia", "subcountry": "West Java"}, "Pameungpeuk": {"country": "Indonesia", "subcountry": "West Java"}, "Pamekasan": {"country": "Indonesia", "subcountry": "East Java"}, "Pamanukan": {"country": "Indonesia", "subcountry": "West Java"}, "Palu": {"country": "Indonesia", "subcountry": "Central Sulawesi"}, "Palopo": {"country": "Indonesia", "subcountry": "South Sulawesi"}, "Palimanan": {"country": "Indonesia", "subcountry": "West Java"}, "Palembang": {"country": "Indonesia", "subcountry": "South Sumatra"}, "Palangkaraya": {"country": "Indonesia", "subcountry": "Central Kalimantan"}, "Pakisaji": {"country": "Indonesia", "subcountry": "East Java"}, "Pageralam": {"country": "Indonesia", "subcountry": "South Sumatra"}, "Padang": {"country": "Indonesia", "subcountry": "West Sumatra"}, "Paciran": {"country": "Indonesia", "subcountry": "East Java"}, "Ngunut": {"country": "Indonesia", "subcountry": "East Java"}, "Ngoro": {"country": "Indonesia", "subcountry": "East Java"}, "Ngawi": {"country": "Indonesia", "subcountry": "West Java"}, "Nganjuk": {"country": "Indonesia", "subcountry": "East Java"}, "Negara": {"country": "Indonesia", "subcountry": "Bali"}, "Nabire": {"country": "Indonesia", "subcountry": "Papua"}, "Muntok": {"country": "Indonesia", "subcountry": "Bangka\u2013Belitung Islands"}, "Muntilan": {"country": "Indonesia", "subcountry": "Central Java"}, "Muncar": {"country": "Indonesia", "subcountry": "East Java"}, "Mranggen": {"country": "Indonesia", "subcountry": "Central Java"}, "Mojokerto": {"country": "Indonesia", "subcountry": "East Java"}, "Mojoagung": {"country": "Indonesia", "subcountry": "East Java"}, "Mlonggo": {"country": "Indonesia", "subcountry": "Central Java"}, "Metro": {"country": "Indonesia", "subcountry": "Lampung"}, "Mertoyudan": {"country": "Indonesia", "subcountry": "Central Java"}, "Melati": {"country": "Indonesia", "subcountry": "Daerah Istimewa Yogyakarta"}, "Maumere": {"country": "Indonesia", "subcountry": "East Nusa Tenggara"}, "Mataram": {"country": "Indonesia", "subcountry": "West Nusa Tenggara"}, "Martapura": {"country": "Indonesia", "subcountry": "South Kalimantan"}, "Margasari": {"country": "Indonesia", "subcountry": "Central Java"}, "Margahayukencana": {"country": "Indonesia", "subcountry": "West Java"}, "Manokwari": {"country": "Indonesia", "subcountry": "West Papua"}, "Manismata": {"country": "Indonesia", "subcountry": "West Kalimantan"}, "Manggar": {"country": "Indonesia", "subcountry": "Bangka\u2013Belitung Islands"}, "Mendaha": {"country": "Indonesia", "subcountry": "Jambi"}, "Manado": {"country": "Indonesia", "subcountry": "North Sulawesi"}, "Malang": {"country": "Indonesia", "subcountry": "East Java"}, "Majene": {"country": "Indonesia", "subcountry": "Sulawesi Barat"}, "Majenang": {"country": "Indonesia", "subcountry": "Central Java"}, "Majalengka": {"country": "Indonesia", "subcountry": "West Java"}, "Magelang": {"country": "Indonesia", "subcountry": "Central Java"}, "Madiun": {"country": "Indonesia", "subcountry": "East Java"}, "Luwuk": {"country": "Indonesia", "subcountry": "Central Sulawesi"}, "Lumajang": {"country": "Indonesia", "subcountry": "East Java"}, "Lubuklinggau": {"country": "Indonesia", "subcountry": "South Sumatra"}, "Loa Janan": {"country": "Indonesia", "subcountry": "East Kalimantan"}, "Lembang": {"country": "Indonesia", "subcountry": "West Java"}, "Lebaksiu": {"country": "Indonesia", "subcountry": "Central Java"}, "Lawang": {"country": "Indonesia", "subcountry": "East Java"}, "Lasem": {"country": "Indonesia", "subcountry": "Central Java"}, "Lamongan": {"country": "Indonesia", "subcountry": "East Java"}, "Lahat": {"country": "Indonesia", "subcountry": "South Sumatra"}, "Labuan Bajo": {"country": "Indonesia", "subcountry": "East Nusa Tenggara"}, "Labuan": {"country": "Indonesia", "subcountry": "Banten"}, "Kutoarjo": {"country": "Indonesia", "subcountry": "Central Java"}, "Kuta": {"country": "Indonesia", "subcountry": "Bali"}, "Kuningan": {"country": "Indonesia", "subcountry": "West Java"}, "Kudus": {"country": "Indonesia", "subcountry": "Central Java"}, "Kuala Tungkal": {"country": "Indonesia", "subcountry": "Jambi"}, "Kualakapuas": {"country": "Indonesia", "subcountry": "Central Kalimantan"}, "Kroya": {"country": "Indonesia", "subcountry": "Central Java"}, "Krian": {"country": "Indonesia", "subcountry": "East Java"}, "Kresek": {"country": "Indonesia", "subcountry": "West Java"}, "Kraksaan": {"country": "Indonesia", "subcountry": "East Java"}, "Kotabumi": {"country": "Indonesia", "subcountry": "Lampung"}, "Klungkung": {"country": "Indonesia", "subcountry": "Bali"}, "Klaten": {"country": "Indonesia", "subcountry": "Central Java"}, "Klangenan": {"country": "Indonesia", "subcountry": "West Java"}, "Kijang": {"country": "Indonesia", "subcountry": "Riau Islands"}, "Ketanggungan": {"country": "Indonesia", "subcountry": "Central Java"}, "Kertosono": {"country": "Indonesia", "subcountry": "East Java"}, "Kepanjen": {"country": "Indonesia", "subcountry": "East Java"}, "Kendari": {"country": "Indonesia", "subcountry": "Sulawesi Tenggara"}, "Kencong": {"country": "Indonesia", "subcountry": "East Java"}, "Kefamenanu": {"country": "Indonesia", "subcountry": "East Nusa Tenggara"}, "Kedungwuni": {"country": "Indonesia", "subcountry": "Central Java"}, "Kedungwaru": {"country": "Indonesia", "subcountry": "East Java"}, "Kediri": {"country": "Indonesia", "subcountry": "East Java"}, "Kebonarun": {"country": "Indonesia", "subcountry": "Central Java"}, "Kebomas": {"country": "Indonesia", "subcountry": "East Java"}, "Kawalu": {"country": "Indonesia", "subcountry": "West Java"}, "Katabu": {"country": "Indonesia", "subcountry": "Sulawesi Tenggara"}, "Karangsembung": {"country": "Indonesia", "subcountry": "West Java"}, "Karangasem": {"country": "Indonesia", "subcountry": "Bali"}, "Karanganom": {"country": "Indonesia", "subcountry": "Central Java"}, "Karangampel": {"country": "Indonesia", "subcountry": "West Java"}, "Kamal": {"country": "Indonesia", "subcountry": "East Java"}, "Kalianget": {"country": "Indonesia", "subcountry": "East Java"}, "Juwana": {"country": "Indonesia", "subcountry": "Central Java"}, "Jombang": {"country": "Indonesia", "subcountry": "East Java"}, "Jogonalan": {"country": "Indonesia", "subcountry": "Central Java"}, "Jember": {"country": "Indonesia", "subcountry": "East Java"}, "Jekulo": {"country": "Indonesia", "subcountry": "Central Java"}, "Jatiwangi": {"country": "Indonesia", "subcountry": "West Java"}, "Jatiroto": {"country": "Indonesia", "subcountry": "Central Java"}, "Jatibarang": {"country": "Indonesia", "subcountry": "West Java"}, "Jaten": {"country": "Indonesia", "subcountry": "Central Java"}, "Jambi City": {"country": "Indonesia", "subcountry": "Jambi"}, "Jakarta": {"country": "Indonesia", "subcountry": "Jakarta Raya"}, "Indramayu": {"country": "Indonesia", "subcountry": "West Java"}, "Grogol": {"country": "Indonesia", "subcountry": "Central Java"}, "Gresik": {"country": "Indonesia", "subcountry": "East Java"}, "Gorontalo": {"country": "Indonesia", "subcountry": "Gorontalo"}, "Gongdanglegi Kulon": {"country": "Indonesia", "subcountry": "East Java"}, "Gombong": {"country": "Indonesia", "subcountry": "Central Java"}, "Godean": {"country": "Indonesia", "subcountry": "Daerah Istimewa Yogyakarta"}, "Genteng": {"country": "Indonesia", "subcountry": "East Java"}, "Gedangan": {"country": "Indonesia", "subcountry": "East Java"}, "Gebog": {"country": "Indonesia", "subcountry": "Central Java"}, "Gampengrejo": {"country": "Indonesia", "subcountry": "East Java"}, "Gambiran Satu": {"country": "Indonesia", "subcountry": "East Java"}, "Galesong": {"country": "Indonesia", "subcountry": "South Sulawesi"}, "Ende": {"country": "Indonesia", "subcountry": "East Nusa Tenggara"}, "Dumai": {"country": "Indonesia", "subcountry": "Riau"}, "Dukuhturi": {"country": "Indonesia", "subcountry": "Central Java"}, "Driyorejo": {"country": "Indonesia", "subcountry": "East Java"}, "Dompu": {"country": "Indonesia", "subcountry": "West Nusa Tenggara"}, "Diwek": {"country": "Indonesia", "subcountry": "East Java"}, "Depok": {"country": "Indonesia", "subcountry": "West Java"}, "Denpasar": {"country": "Indonesia", "subcountry": "Bali"}, "Demak": {"country": "Indonesia", "subcountry": "Central Java"}, "Delanggu": {"country": "Indonesia", "subcountry": "Central Java"}, "Dampit": {"country": "Indonesia", "subcountry": "East Java"}, "Curup": {"country": "Indonesia", "subcountry": "Bengkulu"}, "Curug": {"country": "Indonesia", "subcountry": "Banten"}, "Comal": {"country": "Indonesia", "subcountry": "Central Java"}, "Colomadu": {"country": "Indonesia", "subcountry": "Central Java"}, "Citeureup": {"country": "Indonesia", "subcountry": "West Java"}, "Cirebon": {"country": "Indonesia", "subcountry": "West Java"}, "Ciputat": {"country": "Indonesia", "subcountry": "West Java"}, "Cimahi": {"country": "Indonesia", "subcountry": "West Java"}, "Cileunyi": {"country": "Indonesia", "subcountry": "West Java"}, "Cileungsir": {"country": "Indonesia", "subcountry": "West Java"}, "Cikarang": {"country": "Indonesia", "subcountry": "West Java"}, "Cikampek": {"country": "Indonesia", "subcountry": "West Java"}, "Cicurug": {"country": "Indonesia", "subcountry": "West Java"}, "Cibinong": {"country": "Indonesia", "subcountry": "West Java"}, "Ciamis": {"country": "Indonesia", "subcountry": "West Java"}, "Cepu": {"country": "Indonesia", "subcountry": "Central Java"}, "Ceper": {"country": "Indonesia", "subcountry": "Central Java"}, "Caringin": {"country": "Indonesia", "subcountry": "West Java"}, "Ciampea": {"country": "Indonesia", "subcountry": "West Java"}, "Bulakamba": {"country": "Indonesia", "subcountry": "Central Java"}, "Bukittinggi": {"country": "Indonesia", "subcountry": "West Sumatra"}, "Buduran": {"country": "Indonesia", "subcountry": "East Java"}, "Buaran": {"country": "Indonesia", "subcountry": "Central Java"}, "Boyolangu": {"country": "Indonesia", "subcountry": "East Java"}, "Boyolali": {"country": "Indonesia", "subcountry": "Central Java"}, "Bontang": {"country": "Indonesia", "subcountry": "East Kalimantan"}, "Bondowoso": {"country": "Indonesia", "subcountry": "East Java"}, "Bojonegoro": {"country": "Indonesia", "subcountry": "East Java"}, "Bogor": {"country": "Indonesia", "subcountry": "West Java"}, "Blora": {"country": "Indonesia", "subcountry": "Central Java"}, "Blitar": {"country": "Indonesia", "subcountry": "East Java"}, "Bitung": {"country": "Indonesia", "subcountry": "North Sulawesi"}, "Bima": {"country": "Indonesia", "subcountry": "West Nusa Tenggara"}, "Besuki": {"country": "Indonesia", "subcountry": "East Java"}, "Bengkulu": {"country": "Indonesia", "subcountry": "Bengkulu"}, "Bekasi": {"country": "Indonesia", "subcountry": "West Java"}, "Baturaja": {"country": "Indonesia", "subcountry": "South Sumatra"}, "Baturaden": {"country": "Indonesia", "subcountry": "Central Java"}, "Batu": {"country": "Indonesia", "subcountry": "East Java"}, "Batang": {"country": "Indonesia", "subcountry": "Central Java"}, "Barabai": {"country": "Indonesia", "subcountry": "South Kalimantan"}, "Banyuwangi": {"country": "Indonesia", "subcountry": "East Java"}, "Banyumas": {"country": "Indonesia", "subcountry": "Central Java"}, "Bantul": {"country": "Indonesia", "subcountry": "Daerah Istimewa Yogyakarta"}, "Banjarmasin": {"country": "Indonesia", "subcountry": "South Kalimantan"}, "Banjaran": {"country": "Indonesia", "subcountry": "West Java"}, "Banjar": {"country": "Indonesia", "subcountry": "West Java"}, "Bangkalan": {"country": "Indonesia", "subcountry": "East Java"}, "Bangil": {"country": "Indonesia", "subcountry": "East Java"}, "Bandung": {"country": "Indonesia", "subcountry": "West Java"}, "Bambanglipuro": {"country": "Indonesia", "subcountry": "Daerah Istimewa Yogyakarta"}, "Balung": {"country": "Indonesia", "subcountry": "East Java"}, "Balikpapan": {"country": "Indonesia", "subcountry": "East Kalimantan"}, "Balapulang": {"country": "Indonesia", "subcountry": "Central Java"}, "Balaipungut": {"country": "Indonesia", "subcountry": "Riau"}, "Baki": {"country": "Somalia", "subcountry": "Awdal"}, "Baekrajan": {"country": "Indonesia", "subcountry": "Central Java"}, "Babat": {"country": "Indonesia", "subcountry": "East Java"}, "Atambua": {"country": "Indonesia", "subcountry": "East Nusa Tenggara"}, "Astanajapura": {"country": "Indonesia", "subcountry": "West Java"}, "Arjawinangun": {"country": "Indonesia", "subcountry": "West Java"}, "Amuntai": {"country": "Indonesia", "subcountry": "South Kalimantan"}, "Ambon": {"country": "Indonesia", "subcountry": "Maluku"}, "Ambarawa": {"country": "Indonesia", "subcountry": "Central Java"}, "Amahai": {"country": "Indonesia", "subcountry": "Maluku"}, "Adiwerna": {"country": "Indonesia", "subcountry": "Central Java"}, "Padalarang": {"country": "Indonesia", "subcountry": "West Java"}, "Ciranjang-Hilir": {"country": "Indonesia", "subcountry": "West Java"}, "Cikupa": {"country": "Indonesia", "subcountry": "West Java"}, "Teluknaga": {"country": "Indonesia", "subcountry": "West Java"}, "Wonosari": {"country": "Indonesia", "subcountry": "Daerah Istimewa Yogyakarta"}, "Gamping Lor": {"country": "Indonesia", "subcountry": "Daerah Istimewa Yogyakarta"}, "Kasihan": {"country": "Indonesia", "subcountry": "Daerah Istimewa Yogyakarta"}, "Ngemplak": {"country": "Indonesia", "subcountry": "Central Java"}, "Kartasura": {"country": "Indonesia", "subcountry": "Central Java"}, "Gatak": {"country": "Indonesia", "subcountry": "Central Java"}, "Kupang": {"country": "Indonesia", "subcountry": "East Nusa Tenggara"}, "Jayapura": {"country": "Indonesia", "subcountry": "Papua"}, "Abepura": {"country": "Indonesia", "subcountry": "Papua"}, "Seririt": {"country": "Indonesia", "subcountry": "Bali"}, "City Of Balikpapan": {"country": "Indonesia", "subcountry": "East Kalimantan"}, "Pekan Bahapal": {"country": "Indonesia", "subcountry": "North Sumatra"}, "South Tangerang": {"country": "Indonesia", "subcountry": "Banten"}, "Loch Garman": {"country": "Ireland", "subcountry": "Leinster"}, "Waterford": {"country": "United States", "subcountry": "Michigan"}, "Tralee": {"country": "Ireland", "subcountry": "Munster"}, "Tallaght": {"country": "Ireland", "subcountry": "Leinster"}, "Swords": {"country": "Ireland", "subcountry": "Leinster"}, "Sligo": {"country": "Ireland", "subcountry": "Connaught"}, "Droichead Nua": {"country": "Ireland", "subcountry": "Leinster"}, "Navan": {"country": "Ireland", "subcountry": "Leinster"}, "Naas": {"country": "Ireland", "subcountry": "Leinster"}, "An Muileann Gcearr": {"country": "Ireland", "subcountry": "Leinster"}, "Malahide": {"country": "Ireland", "subcountry": "Leinster"}, "Lucan": {"country": "Ireland", "subcountry": "Leinster"}, "Luimneach": {"country": "Ireland", "subcountry": "Munster"}, "Letterkenny": {"country": "Ireland", "subcountry": "Ulster"}, "Leixlip": {"country": "Ireland", "subcountry": "Leinster"}, "Kilkenny": {"country": "Ireland", "subcountry": "Leinster"}, "Gaillimh": {"country": "Ireland", "subcountry": "Connaught"}, "Finglas": {"country": "Ireland", "subcountry": "Leinster"}, "Ennis": {"country": "United States", "subcountry": "Texas"}, "D\u00fan Laoghaire": {"country": "Ireland", "subcountry": "Leinster"}, "Dundalk": {"country": "United States", "subcountry": "Maryland"}, "Dublin": {"country": "United States", "subcountry": "California"}, "Drogheda": {"country": "Ireland", "subcountry": "Leinster"}, "Cork": {"country": "Ireland", "subcountry": "Munster"}, "Cluain Meala": {"country": "Ireland", "subcountry": "Munster"}, "Celbridge": {"country": "Ireland", "subcountry": "Leinster"}, "Carlow": {"country": "Ireland", "subcountry": "Leinster"}, "Blanchardstown": {"country": "Ireland", "subcountry": "Leinster"}, "Balbriggan": {"country": "Ireland", "subcountry": "Leinster"}, "Athlone": {"country": "Ireland", "subcountry": "Leinster"}, "Sandyford": {"country": "Ireland", "subcountry": "Leinster"}, "Donaghmede": {"country": "Ireland", "subcountry": "Leinster"}, "Jerusalem": {"country": "Israel", "subcountry": "Jerusalem"}, "Safed": {"country": "Israel", "subcountry": "Northern District"}, "Yehud": {"country": "Israel", "subcountry": "Central District"}, "Yavn\u00e9": {"country": "Israel", "subcountry": "Central District"}, "Yafo": {"country": "Israel", "subcountry": "Tel Aviv"}, "Umm El Fa\u1e25m": {"country": "Israel", "subcountry": "Haifa"}, "Tirat Karmel": {"country": "Israel", "subcountry": "Haifa"}, "Tiberias": {"country": "Israel", "subcountry": "Northern District"}, "Tel Aviv": {"country": "Israel", "subcountry": "Tel Aviv"}, "Maalot Tarsh\u012bh\u0101": {"country": "Israel", "subcountry": "Northern District"}, "Tamra": {"country": "Israel", "subcountry": "Northern District"}, "Sederot": {"country": "Israel", "subcountry": "Southern District"}, "Sakhn\u012bn": {"country": "Israel", "subcountry": "Northern District"}, "Rosh Ha\u2018Ayin": {"country": "Israel", "subcountry": "Central District"}, "Rishon Le\u1e95iyyon": {"country": "Israel", "subcountry": "Central District"}, "Ramla": {"country": "Israel", "subcountry": "Central District"}, "Ramat Hasharon": {"country": "Israel", "subcountry": "Tel Aviv"}, "Ramat Gan": {"country": "Israel", "subcountry": "Tel Aviv"}, "Ra'Anana": {"country": "Israel", "subcountry": "Central District"}, "Qiryat Yam": {"country": "Israel", "subcountry": "Haifa"}, "Qiryat Shemona": {"country": "Israel", "subcountry": "Northern District"}, "Qiryat Mo\u1e95qin": {"country": "Israel", "subcountry": "Haifa"}, "Qiryat Gat": {"country": "Israel", "subcountry": "Southern District"}, "Qiryat Bialik": {"country": "Israel", "subcountry": "Haifa"}, "Qiryat Ata": {"country": "Israel", "subcountry": "Haifa"}, "Qalansuwa": {"country": "Israel", "subcountry": "Central District"}, "Peta\u1e96 Tiqwa": {"country": "Israel", "subcountry": "Central District"}, "Or Yehuda": {"country": "Israel", "subcountry": "Tel Aviv"}, "Ofaqim": {"country": "Israel", "subcountry": "Southern District"}, "Netivot": {"country": "Israel", "subcountry": "Southern District"}, "Netanya": {"country": "Israel", "subcountry": "Central District"}, "Ness Ziona": {"country": "Israel", "subcountry": "Central District"}, "Nesher": {"country": "Israel", "subcountry": "Haifa"}, "Nazareth": {"country": "Israel", "subcountry": "Northern District"}, "Nahariya": {"country": "Israel", "subcountry": "Northern District"}, "Migdal Ha\u2018Emeq": {"country": "Israel", "subcountry": "Northern District"}, "Mevo Betar": {"country": "Israel", "subcountry": "Jerusalem"}, "Magh\u0101r": {"country": "Israel", "subcountry": "Northern District"}, "Lod": {"country": "Israel", "subcountry": "Central District"}, "Kfar Saba": {"country": "Israel", "subcountry": "Central District"}, "Karmi\u2019El": {"country": "Israel", "subcountry": "Northern District"}, "Kafr Q\u0101sim": {"country": "Israel", "subcountry": "Central District"}, "Kafr Mand\u0101": {"country": "Israel", "subcountry": "Northern District"}, "Kafr Kann\u0101": {"country": "Israel", "subcountry": "Northern District"}, "Judeida Makr": {"country": "Israel", "subcountry": "Northern District"}, "H\u0331Olon": {"country": "Israel", "subcountry": "Tel Aviv"}, "Hod Hasharon": {"country": "Israel", "subcountry": "Central District"}, "Herzliyya": {"country": "Israel", "subcountry": "Tel Aviv"}, "Haifa": {"country": "Israel", "subcountry": "Haifa"}, "H\u0331Adera": {"country": "Israel", "subcountry": "Haifa"}, "Giv\u2018At Shemu\u2019\u00c9l": {"country": "Israel", "subcountry": "Tel Aviv"}, "Giv\u2018Atayim": {"country": "Israel", "subcountry": "Tel Aviv"}, "Tirah": {"country": "Israel", "subcountry": "Central District"}, "E\u1e6d \u1e6caiyiba": {"country": "Israel", "subcountry": "Central District"}, "Er Reina": {"country": "Israel", "subcountry": "Northern District"}, "Eilat": {"country": "Israel", "subcountry": "Southern District"}, "Dimona": {"country": "Israel", "subcountry": "Southern District"}, "D\u0101liyat El Karmil": {"country": "Israel", "subcountry": "Haifa"}, "Bet Shemesh": {"country": "Israel", "subcountry": "Jerusalem"}, "Bet She\u2019An": {"country": "Israel", "subcountry": "Northern District"}, "Ben\u00e9 Beraq": {"country": "Israel", "subcountry": "Tel Aviv"}, "Beersheba": {"country": "Israel", "subcountry": "Southern District"}, "Bat Yam": {"country": "Israel", "subcountry": "Tel Aviv"}, "Ashqelon": {"country": "Israel", "subcountry": "Southern District"}, "Ashdod": {"country": "Israel", "subcountry": "Southern District"}, "\u2018Arad": {"country": "Israel", "subcountry": "Southern District"}, "\u2018Akko": {"country": "Israel", "subcountry": "Northern District"}, "\u2018Afula \u2018Illit": {"country": "Israel", "subcountry": "Northern District"}, "Modiin": {"country": "Israel", "subcountry": "Central District"}, "West Jerusalem": {"country": "Israel", "subcountry": "Jerusalem"}, "Modiin Ilit": {"country": "Israel", "subcountry": "Jerusalem"}, "Ariel": {"country": "Israel", "subcountry": "Jerusalem"}, "Douglas": {"country": "United States", "subcountry": "Arizona"}, "P\u016bnch": {"country": "India", "subcountry": "Kashmir"}, "Keelakarai": {"country": "India", "subcountry": "Tamil Nadu"}, "Zunheboto": {"country": "India", "subcountry": "Nagaland"}, "Zam\u0101nia": {"country": "India", "subcountry": "Uttar Pradesh"}, "Zaidpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Zahir\u0101b\u0101d": {"country": "India", "subcountry": "Telangana"}, "Yeola": {"country": "India", "subcountry": "Maharashtra"}, "Yell\u0101pur": {"country": "India", "subcountry": "Karnataka"}, "Yellandu": {"country": "India", "subcountry": "Telangana"}, "Yelahanka": {"country": "India", "subcountry": "Karnataka"}, "Yavatm\u0101l": {"country": "India", "subcountry": "Maharashtra"}, "Y\u0101val": {"country": "India", "subcountry": "Maharashtra"}, "Yanam": {"country": "India", "subcountry": "Andhra Pradesh"}, "Yamun\u0101nagar": {"country": "India", "subcountry": "Haryana"}, "Y\u0101dg\u012br": {"country": "India", "subcountry": "Karnataka"}, "Wokha": {"country": "India", "subcountry": "Nagaland"}, "Wer": {"country": "India", "subcountry": "Rajasthan"}, "Waz\u012brganj": {"country": "India", "subcountry": "Uttar Pradesh"}, "W\u0101sh\u012bm": {"country": "India", "subcountry": "Maharashtra"}, "Warud": {"country": "India", "subcountry": "Maharashtra"}, "Warora": {"country": "India", "subcountry": "Maharashtra"}, "W\u0101ris Al\u012bganj": {"country": "India", "subcountry": "Bihar"}, "Wardha": {"country": "India", "subcountry": "Maharashtra"}, "W\u0101r\u0101seon\u012b": {"country": "India", "subcountry": "Madhya Pradesh"}, "Warangal": {"country": "India", "subcountry": "Telangana"}, "Wanparti": {"country": "India", "subcountry": "Telangana"}, "W\u0101nk\u0101ner": {"country": "India", "subcountry": "Gujarat"}, "Wani": {"country": "India", "subcountry": "Maharashtra"}, "Walajapet": {"country": "India", "subcountry": "Tamil Nadu"}, "Wai": {"country": "India", "subcountry": "Maharashtra"}, "W\u0101di": {"country": "India", "subcountry": "Karnataka"}, "Vy\u0101ra": {"country": "India", "subcountry": "Gujarat"}, "Vuyy\u016bru": {"country": "India", "subcountry": "Andhra Pradesh"}, "Vrind\u0101van": {"country": "India", "subcountry": "Uttar Pradesh"}, "Vriddh\u0101chalam": {"country": "India", "subcountry": "Tamil Nadu"}, "Vizianagaram": {"country": "India", "subcountry": "Andhra Pradesh"}, "Vite": {"country": "India", "subcountry": "Maharashtra"}, "Visnagar": {"country": "India", "subcountry": "Gujarat"}, "Visakhapatnam": {"country": "India", "subcountry": "Andhra Pradesh"}, "V\u012bs\u0101vadar": {"country": "India", "subcountry": "Gujarat"}, "Virudunagar": {"country": "India", "subcountry": "Tamil Nadu"}, "Viravanall\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "V\u012brar\u0101jendrapet": {"country": "India", "subcountry": "Karnataka"}, "Vir\u0101r": {"country": "India", "subcountry": "Maharashtra"}, "Vinukonda": {"country": "India", "subcountry": "Andhra Pradesh"}, "Villupuram": {"country": "India", "subcountry": "Tamil Nadu"}, "Vik\u0101r\u0101b\u0101d": {"country": "India", "subcountry": "Telangana"}, "Vijayawada": {"country": "India", "subcountry": "Andhra Pradesh"}, "Vij\u0101pur": {"country": "India", "subcountry": "Gujarat"}, "Vidisha": {"country": "India", "subcountry": "Madhya Pradesh"}, "Vett\u016br": {"country": "India", "subcountry": "Kerala"}, "Vettaikkaranpudur": {"country": "India", "subcountry": "Tamil Nadu"}, "Vetap\u0101lem": {"country": "India", "subcountry": "Andhra Pradesh"}, "Ver\u0101val": {"country": "India", "subcountry": "Gujarat"}, "Vepagunta": {"country": "India", "subcountry": "Andhra Pradesh"}, "Venkatagiri": {"country": "India", "subcountry": "Andhra Pradesh"}, "Vemalw\u0101da": {"country": "India", "subcountry": "Telangana"}, "Velur": {"country": "India", "subcountry": "Tamil Nadu"}, "Vellore": {"country": "India", "subcountry": "Tamil Nadu"}, "Vejalpur": {"country": "India", "subcountry": "Gujarat"}, "Vedaraniyam": {"country": "India", "subcountry": "Tamil Nadu"}, "Vayal\u0101r": {"country": "India", "subcountry": "Kerala"}, "Vattalkundu": {"country": "India", "subcountry": "Tamil Nadu"}, "V\u0101sudevanall\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Vasind": {"country": "India", "subcountry": "Maharashtra"}, "V\u0101sco Da G\u0101ma": {"country": "India", "subcountry": "Goa"}, "Vasa": {"country": "India", "subcountry": "Gujarat"}, "Varkala": {"country": "India", "subcountry": "Kerala"}, "Varangaon": {"country": "India", "subcountry": "Maharashtra"}, "Varanasi": {"country": "India", "subcountry": "Uttar Pradesh"}, "Vaniyambadi": {"country": "India", "subcountry": "Tamil Nadu"}, "Vandav\u0101si": {"country": "India", "subcountry": "Tamil Nadu"}, "Vals\u0101d": {"country": "India", "subcountry": "Gujarat"}, "Valparai": {"country": "India", "subcountry": "Tamil Nadu"}, "Vallabh Vidyanagar": {"country": "India", "subcountry": "Gujarat"}, "Valabh\u012bpur": {"country": "India", "subcountry": "Gujarat"}, "Vaikam": {"country": "India", "subcountry": "Kerala"}, "Vaij\u0101pur": {"country": "India", "subcountry": "Maharashtra"}, "Vadodara": {"country": "India", "subcountry": "Gujarat"}, "Vadnagar": {"country": "India", "subcountry": "Gujarat"}, "Vadlap\u016bdi": {"country": "India", "subcountry": "Andhra Pradesh"}, "V\u0101dippatti": {"country": "India", "subcountry": "Tamil Nadu"}, "Vadamadurai": {"country": "India", "subcountry": "Tamil Nadu"}, "Vadakku Valliy\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "V\u0101da": {"country": "India", "subcountry": "Maharashtra"}, "Uttiramer\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Uttark\u0101shi": {"country": "India", "subcountry": "Uttarakhand"}, "Uttamap\u0101laiyam": {"country": "India", "subcountry": "Tamil Nadu"}, "Utraula": {"country": "India", "subcountry": "Uttar Pradesh"}, "Usilampatti": {"country": "India", "subcountry": "Tamil Nadu"}, "Usehat": {"country": "India", "subcountry": "Uttar Pradesh"}, "Uravakonda": {"country": "India", "subcountry": "Andhra Pradesh"}, "Uran": {"country": "India", "subcountry": "Maharashtra"}, "Upleta": {"country": "India", "subcountry": "Gujarat"}, "Uppal Kalan": {"country": "India", "subcountry": "Telangana"}, "Unn\u0101o": {"country": "India", "subcountry": "Uttar Pradesh"}, "Unjha": {"country": "India", "subcountry": "Gujarat"}, "Unhel": {"country": "India", "subcountry": "Madhya Pradesh"}, "\u016an": {"country": "India", "subcountry": "Uttar Pradesh"}, "Un": {"country": "India", "subcountry": "Gujarat"}, "Umreth": {"country": "India", "subcountry": "Gujarat"}, "Umred": {"country": "India", "subcountry": "Maharashtra"}, "Umarkot": {"country": "Pakistan", "subcountry": "Sindh"}, "Umarkhed": {"country": "India", "subcountry": "Maharashtra"}, "Umaria": {"country": "India", "subcountry": "Madhya Pradesh"}, "Umarga": {"country": "India", "subcountry": "Maharashtra"}, "Ullal": {"country": "India", "subcountry": "Karnataka"}, "Ulhasnagar": {"country": "India", "subcountry": "Maharashtra"}, "Ujjain": {"country": "India", "subcountry": "Madhya Pradesh"}, "Ujh\u0101ni": {"country": "India", "subcountry": "Uttar Pradesh"}, "Udumalaippettai": {"country": "India", "subcountry": "Tamil Nadu"}, "Udipi": {"country": "India", "subcountry": "Karnataka"}, "Udhampur": {"country": "India", "subcountry": "Kashmir"}, "Udg\u012br": {"country": "India", "subcountry": "Maharashtra"}, "Udankudi": {"country": "India", "subcountry": "Tamil Nadu"}, "Udalguri": {"country": "India", "subcountry": "Assam"}, "Udaipura": {"country": "India", "subcountry": "Madhya Pradesh"}, "Udaipur": {"country": "India", "subcountry": "Tripura"}, "Ooty": {"country": "India", "subcountry": "Tamil Nadu"}, "Bara Uch\u0101na": {"country": "India", "subcountry": "Haryana"}, "Turaiy\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Tura": {"country": "India", "subcountry": "Meghalaya"}, "Tuni": {"country": "India", "subcountry": "Andhra Pradesh"}, "T\u016bndla": {"country": "India", "subcountry": "Uttar Pradesh"}, "Tumsar": {"country": "India", "subcountry": "Maharashtra"}, "Tumk\u016br": {"country": "India", "subcountry": "Karnataka"}, "Tuls\u012bpur": {"country": "Nepal", "subcountry": "Mid Western"}, "Tulj\u0101pur": {"country": "India", "subcountry": "Maharashtra"}, "Tuf\u0101nganj": {"country": "India", "subcountry": "West Bengal"}, "Tuensang": {"country": "India", "subcountry": "Nagaland"}, "Thiruvananthapuram": {"country": "India", "subcountry": "Kerala"}, "Trich\u016br": {"country": "India", "subcountry": "Kerala"}, "Tonk": {"country": "India", "subcountry": "Rajasthan"}, "Tondi": {"country": "India", "subcountry": "Tamil Nadu"}, "Toh\u0101na": {"country": "India", "subcountry": "Haryana"}, "Todaraisingh": {"country": "India", "subcountry": "Rajasthan"}, "Todabhim": {"country": "India", "subcountry": "Rajasthan"}, "Titl\u0101garh": {"country": "India", "subcountry": "Odisha"}, "Tit\u0101garh": {"country": "India", "subcountry": "West Bengal"}, "Tisaiyanvilai": {"country": "India", "subcountry": "Tamil Nadu"}, "Tiruvottiy\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Cheyyar": {"country": "India", "subcountry": "Tamil Nadu"}, "Tiruvann\u0101malai": {"country": "India", "subcountry": "Tamil Nadu"}, "Tiruvallur": {"country": "India", "subcountry": "Tamil Nadu"}, "Tiruvalla": {"country": "India", "subcountry": "Kerala"}, "Thiruthani": {"country": "India", "subcountry": "Tamil Nadu"}, "Tiruttangal": {"country": "India", "subcountry": "Tamil Nadu"}, "Tirur": {"country": "India", "subcountry": "Kerala"}, "Tiruppuvanam": {"country": "India", "subcountry": "Tamil Nadu"}, "Tiruppur": {"country": "India", "subcountry": "Tamil Nadu"}, "Tirupparangunram": {"country": "India", "subcountry": "Tamil Nadu"}, "Tirupati": {"country": "India", "subcountry": "Andhra Pradesh"}, "Tirunelveli": {"country": "India", "subcountry": "Tamil Nadu"}, "Tirumala": {"country": "India", "subcountry": "Andhra Pradesh"}, "Tirukkoyilur": {"country": "India", "subcountry": "Tamil Nadu"}, "Tiruchengode": {"country": "India", "subcountry": "Tamil Nadu"}, "Tiruchirappalli": {"country": "India", "subcountry": "Tamil Nadu"}, "Tiruchchendur": {"country": "India", "subcountry": "Tamil Nadu"}, "T\u012brthahalli": {"country": "India", "subcountry": "Karnataka"}, "Tipt\u016br": {"country": "India", "subcountry": "Karnataka"}, "Tinsukia": {"country": "India", "subcountry": "Assam"}, "Tinnan\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Tindivanam": {"country": "India", "subcountry": "Tamil Nadu"}, "Tilhar": {"country": "India", "subcountry": "Uttar Pradesh"}, "T\u012bkamgarh": {"country": "India", "subcountry": "Madhya Pradesh"}, "Tij\u0101ra": {"country": "India", "subcountry": "Rajasthan"}, "Thoub\u0101l": {"country": "India", "subcountry": "Manipur"}, "Thiruvarur": {"country": "India", "subcountry": "Tamil Nadu"}, "Th\u0101sra": {"country": "India", "subcountry": "Gujarat"}, "Thar\u0101d": {"country": "India", "subcountry": "Gujarat"}, "Thanj\u0101v\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Th\u0101nesar": {"country": "India", "subcountry": "Haryana"}, "Th\u0101ne": {"country": "India", "subcountry": "Maharashtra"}, "Th\u0101na Bhawan": {"country": "India", "subcountry": "Uttar Pradesh"}, "Th\u0101n": {"country": "India", "subcountry": "Gujarat"}, "Th\u0101kurganj": {"country": "India", "subcountry": "Bihar"}, "Thakurdwara": {"country": "India", "subcountry": "Uttar Pradesh"}, "Tezpur": {"country": "India", "subcountry": "Assam"}, "Terd\u0101l": {"country": "India", "subcountry": "Karnataka"}, "Teonthar": {"country": "India", "subcountry": "Madhya Pradesh"}, "Thenkasi": {"country": "India", "subcountry": "Tamil Nadu"}, "Teni": {"country": "India", "subcountry": "Tamil Nadu"}, "Tellicherry": {"country": "India", "subcountry": "Kerala"}, "Telh\u0101ra": {"country": "India", "subcountry": "Maharashtra"}, "Tekkali": {"country": "India", "subcountry": "Andhra Pradesh"}, "Tekkalakote": {"country": "India", "subcountry": "Karnataka"}, "Tek\u0101ri": {"country": "India", "subcountry": "Bihar"}, "Tehri": {"country": "India", "subcountry": "Uttarakhand"}, "Teghra": {"country": "India", "subcountry": "Bihar"}, "T\u0101sgaon": {"country": "India", "subcountry": "Maharashtra"}, "Tarn T\u0101ran": {"country": "India", "subcountry": "Punjab"}, "Tarikere": {"country": "India", "subcountry": "Karnataka"}, "Tharangambadi": {"country": "India", "subcountry": "Tamil Nadu"}, "T\u0101r\u0101nagar": {"country": "India", "subcountry": "Rajasthan"}, "Tar\u0101na": {"country": "India", "subcountry": "Madhya Pradesh"}, "T\u0101ramangalam": {"country": "India", "subcountry": "Tamil Nadu"}, "Tarakeswar": {"country": "India", "subcountry": "West Bengal"}, "T\u0101oru": {"country": "India", "subcountry": "Haryana"}, "Tanuku": {"country": "India", "subcountry": "Andhra Pradesh"}, "T\u0101nd\u016br": {"country": "India", "subcountry": "Telangana"}, "T\u0101nda": {"country": "India", "subcountry": "Uttar Pradesh"}, "T\u0101nd\u0101": {"country": "India", "subcountry": "Uttar Pradesh"}, "Tanakpur": {"country": "India", "subcountry": "Uttarakhand"}, "Taml\u016bk": {"country": "India", "subcountry": "West Bengal"}, "Talw\u0101ra": {"country": "India", "subcountry": "Punjab"}, "Talwandi Bhai": {"country": "India", "subcountry": "Punjab"}, "Taloda": {"country": "India", "subcountry": "Maharashtra"}, "Talipparamba": {"country": "India", "subcountry": "Kerala"}, "T\u0101l\u012bkota": {"country": "India", "subcountry": "Karnataka"}, "Taleigao": {"country": "India", "subcountry": "Goa"}, "Talegaon D\u0101bh\u0101de": {"country": "India", "subcountry": "Maharashtra"}, "T\u0101lcher": {"country": "India", "subcountry": "Odisha"}, "Tal\u0101ja": {"country": "India", "subcountry": "Gujarat"}, "T\u0101ki": {"country": "India", "subcountry": "West Bengal"}, "Takhatpur": {"country": "India", "subcountry": "Chhattisgarh"}, "Takhatgarh": {"country": "India", "subcountry": "Rajasthan"}, "T\u0101jpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "T\u0101dpatri": {"country": "India", "subcountry": "Andhra Pradesh"}, "T\u0101depalleg\u016bdem": {"country": "India", "subcountry": "Andhra Pradesh"}, "T\u0101depalle": {"country": "India", "subcountry": "Andhra Pradesh"}, "Suri\u0101pet": {"country": "India", "subcountry": "Telangana"}, "Suri\u0101nw\u0101n": {"country": "India", "subcountry": "Uttar Pradesh"}, "Surendranagar": {"country": "India", "subcountry": "Gujarat"}, "S\u016bratgarh": {"country": "India", "subcountry": "Rajasthan"}, "S\u016brat": {"country": "India", "subcountry": "Gujarat"}, "S\u016brandai": {"country": "India", "subcountry": "Tamil Nadu"}, "S\u016brajgarh": {"country": "India", "subcountry": "Rajasthan"}, "Supaul": {"country": "India", "subcountry": "Bihar"}, "Sunel": {"country": "India", "subcountry": "Rajasthan"}, "Sundarnagar": {"country": "India", "subcountry": "Himachal Pradesh"}, "Sundargarh": {"country": "India", "subcountry": "Odisha"}, "Sun\u0101m": {"country": "India", "subcountry": "Punjab"}, "Sulya": {"country": "India", "subcountry": "Karnataka"}, "S\u016bl\u016bru": {"country": "India", "subcountry": "Andhra Pradesh"}, "Sulur": {"country": "India", "subcountry": "Tamil Nadu"}, "Sultanpur": {"country": "India", "subcountry": "Punjab"}, "Sult\u0101npur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Suket": {"country": "India", "subcountry": "Rajasthan"}, "S\u016bj\u0101ngarh": {"country": "India", "subcountry": "Rajasthan"}, "Su\u0101r": {"country": "India", "subcountry": "Uttar Pradesh"}, "Srivilliputhur": {"country": "India", "subcountry": "Tamil Nadu"}, "Sr\u012bvardhan": {"country": "India", "subcountry": "Maharashtra"}, "Srivaikuntam": {"country": "India", "subcountry": "Tamil Nadu"}, "Sr\u012bsailain": {"country": "India", "subcountry": "Andhra Pradesh"}, "Sr\u012br\u0101mnagar": {"country": "India", "subcountry": "Telangana"}, "Sr\u012bperumb\u016bd\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Sr\u012bniv\u0101spur": {"country": "India", "subcountry": "Karnataka"}, "Srinagar": {"country": "India", "subcountry": "Kashmir"}, "Sr\u012bnagar": {"country": "India", "subcountry": "Uttarakhand"}, "Sri M\u0101dhopur": {"country": "India", "subcountry": "Rajasthan"}, "Karanpur": {"country": "India", "subcountry": "Rajasthan"}, "Chicacole": {"country": "India", "subcountry": "Andhra Pradesh"}, "Sri D\u016bngargarh": {"country": "India", "subcountry": "Rajasthan"}, "Soygaon": {"country": "India", "subcountry": "Maharashtra"}, "Soron": {"country": "India", "subcountry": "Uttar Pradesh"}, "Soro": {"country": "India", "subcountry": "Odisha"}, "Sorada": {"country": "India", "subcountry": "Odisha"}, "Sopur": {"country": "India", "subcountry": "Kashmir"}, "Son\u012bpat": {"country": "India", "subcountry": "Haryana"}, "Songadh": {"country": "India", "subcountry": "Gujarat"}, "Sonepur": {"country": "India", "subcountry": "Odisha"}, "Son\u0101ri": {"country": "India", "subcountry": "Assam"}, "Son\u0101mukhi": {"country": "India", "subcountry": "West Bengal"}, "Sompeta": {"country": "India", "subcountry": "Andhra Pradesh"}, "Someshwar": {"country": "India", "subcountry": "Karnataka"}, "Solan": {"country": "India", "subcountry": "Himachal Pradesh"}, "Soj\u012btra": {"country": "India", "subcountry": "Gujarat"}, "Sojat": {"country": "India", "subcountry": "Rajasthan"}, "Sohna": {"country": "India", "subcountry": "Haryana"}, "Soh\u0101gpur": {"country": "India", "subcountry": "Madhya Pradesh"}, "Siw\u0101na": {"country": "India", "subcountry": "Rajasthan"}, "Siw\u0101n": {"country": "India", "subcountry": "Bihar"}, "Sivakasi": {"country": "India", "subcountry": "Tamil Nadu"}, "Sivagiri": {"country": "India", "subcountry": "Tamil Nadu"}, "Sivaganga": {"country": "India", "subcountry": "Tamil Nadu"}, "Siuri": {"country": "India", "subcountry": "West Bengal"}, "Sit\u0101rganj": {"country": "India", "subcountry": "Uttarakhand"}, "S\u012bt\u0101pur": {"country": "India", "subcountry": "Uttar Pradesh"}, "S\u012bt\u0101marhi": {"country": "India", "subcountry": "Bihar"}, "Sisw\u0101 B\u0101z\u0101r": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sisauli": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sir\u016br": {"country": "India", "subcountry": "Maharashtra"}, "Sirumugai": {"country": "India", "subcountry": "Tamil Nadu"}, "Siruguppa": {"country": "India", "subcountry": "Karnataka"}, "Sirsilla": {"country": "India", "subcountry": "Telangana"}, "Sirsi": {"country": "India", "subcountry": "Karnataka"}, "Sirs\u0101ganj": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sirsa": {"country": "India", "subcountry": "Haryana"}, "Sironj": {"country": "India", "subcountry": "Madhya Pradesh"}, "Sirohi": {"country": "India", "subcountry": "Rajasthan"}, "S\u012brk\u0101zhi": {"country": "India", "subcountry": "Tamil Nadu"}, "Sirhind": {"country": "India", "subcountry": "Punjab"}, "S\u012bra": {"country": "India", "subcountry": "Karnataka"}, "Sinnar": {"country": "Sudan", "subcountry": "Sinn\u0101r"}, "Singur": {"country": "India", "subcountry": "West Bengal"}, "Singar\u0101yakonda": {"country": "India", "subcountry": "Andhra Pradesh"}, "Sing\u0101nall\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Sindhn\u016br": {"country": "India", "subcountry": "Karnataka"}, "Sindgi": {"country": "India", "subcountry": "Karnataka"}, "Shimla": {"country": "India", "subcountry": "Himachal Pradesh"}, "Simdega": {"country": "India", "subcountry": "Jharkhand"}, "Silvassa": {"country": "India", "subcountry": "Dadra and Nagar Haveli"}, "Sillod": {"country": "India", "subcountry": "Maharashtra"}, "Silchar": {"country": "India", "subcountry": "Assam"}, "Silao": {"country": "Mexico", "subcountry": "Guanajuato"}, "S\u012bkar": {"country": "India", "subcountry": "Rajasthan"}, "Sikandra Rao": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sikandarpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sikandar\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sikka": {"country": "India", "subcountry": "Gujarat"}, "Sijua": {"country": "India", "subcountry": "Jharkhand"}, "Sihor\u0101": {"country": "India", "subcountry": "Madhya Pradesh"}, "Sihor": {"country": "India", "subcountry": "Gujarat"}, "Sidlaghatta": {"country": "India", "subcountry": "Karnataka"}, "Sidhi": {"country": "India", "subcountry": "Madhya Pradesh"}, "Sidhaul\u012b": {"country": "India", "subcountry": "Uttar Pradesh"}, "Siddipet": {"country": "India", "subcountry": "Telangana"}, "Siddhapur": {"country": "India", "subcountry": "Gujarat"}, "Sibs\u0101gar": {"country": "India", "subcountry": "Assam"}, "Shyamnagar": {"country": "India", "subcountry": "West Bengal"}, "Shuj\u0101lpur": {"country": "India", "subcountry": "Madhya Pradesh"}, "Shr\u012brangapattana": {"country": "India", "subcountry": "Karnataka"}, "Shr\u012br\u0101mpur": {"country": "India", "subcountry": "West Bengal"}, "Shr\u012bgonda": {"country": "India", "subcountry": "Maharashtra"}, "Shor\u0101pur": {"country": "India", "subcountry": "Karnataka"}, "Shoran\u016br": {"country": "India", "subcountry": "Kerala"}, "Sholinghur": {"country": "India", "subcountry": "Tamil Nadu"}, "Sol\u0101pur": {"country": "India", "subcountry": "Maharashtra"}, "Shivpuri": {"country": "India", "subcountry": "Madhya Pradesh"}, "Sh\u012bshgarh": {"country": "India", "subcountry": "Uttar Pradesh"}, "Shirpur": {"country": "India", "subcountry": "Maharashtra"}, "Shirhatti": {"country": "India", "subcountry": "Karnataka"}, "Shirdi": {"country": "India", "subcountry": "Maharashtra"}, "Shimoga": {"country": "India", "subcountry": "Karnataka"}, "Shillong": {"country": "India", "subcountry": "Meghalaya"}, "Shiliguri": {"country": "India", "subcountry": "West Bengal"}, "Shikoh\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Shik\u0101rp\u016br": {"country": "India", "subcountry": "Uttar Pradesh"}, "Shik\u0101rpur": {"country": "Pakistan", "subcountry": "Sindh"}, "Shiggaon": {"country": "India", "subcountry": "Karnataka"}, "Shertallai": {"country": "India", "subcountry": "Kerala"}, "Sherkot": {"country": "India", "subcountry": "Uttar Pradesh"}, "Shergh\u0101ti": {"country": "India", "subcountry": "Bihar"}, "Sheopur": {"country": "India", "subcountry": "Madhya Pradesh"}, "Sheohar": {"country": "India", "subcountry": "Bihar"}, "Sheoganj": {"country": "India", "subcountry": "Rajasthan"}, "Shegaon": {"country": "India", "subcountry": "Maharashtra"}, "Sh\u0101ntipur": {"country": "India", "subcountry": "West Bengal"}, "Shams\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sh\u0101mli": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sh\u0101mgarh": {"country": "India", "subcountry": "Madhya Pradesh"}, "Sh\u0101j\u0101pur": {"country": "India", "subcountry": "Madhya Pradesh"}, "Sheikhpura": {"country": "India", "subcountry": "Bihar"}, "Sh\u0101hpura": {"country": "India", "subcountry": "Rajasthan"}, "Sh\u0101hpur": {"country": "India", "subcountry": "Karnataka"}, "Sh\u0101hj\u0101npur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sh\u0101hi": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sh\u0101hganj": {"country": "India", "subcountry": "Uttar Pradesh"}, "Shahdol": {"country": "India", "subcountry": "Madhya Pradesh"}, "Sh\u0101h\u0101da": {"country": "India", "subcountry": "Maharashtra"}, "Sh\u0101h\u0101b\u0101d": {"country": "India", "subcountry": "Karnataka"}, "Serchh\u012bp": {"country": "India", "subcountry": "Mizoram"}, "Seram": {"country": "India", "subcountry": "Karnataka"}, "Seoni M\u0101lwa": {"country": "India", "subcountry": "Madhya Pradesh"}, "Seoni": {"country": "India", "subcountry": "Madhya Pradesh"}, "Seondha": {"country": "India", "subcountry": "Madhya Pradesh"}, "Seoh\u0101ra": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sendhwa": {"country": "India", "subcountry": "Madhya Pradesh"}, "Sehore": {"country": "India", "subcountry": "Madhya Pradesh"}, "Secunderabad": {"country": "India", "subcountry": "Telangana"}, "S\u0101yla": {"country": "India", "subcountry": "Gujarat"}, "Saw\u0101i M\u0101dhopur": {"country": "India", "subcountry": "Rajasthan"}, "S\u0101vda": {"country": "India", "subcountry": "Maharashtra"}, "Savan\u016br": {"country": "India", "subcountry": "Karnataka"}, "S\u0101vantv\u0101di": {"country": "India", "subcountry": "Maharashtra"}, "Sausar": {"country": "India", "subcountry": "Madhya Pradesh"}, "Saundatti": {"country": "India", "subcountry": "Karnataka"}, "Sathyamangalam": {"country": "India", "subcountry": "Tamil Nadu"}, "Sattur": {"country": "India", "subcountry": "Tamil Nadu"}, "Sattenapalle": {"country": "India", "subcountry": "Andhra Pradesh"}, "Satna": {"country": "India", "subcountry": "Madhya Pradesh"}, "S\u0101t\u0101ra": {"country": "India", "subcountry": "Maharashtra"}, "Sat\u0101n\u0101": {"country": "India", "subcountry": "Maharashtra"}, "S\u0101svad": {"country": "India", "subcountry": "Maharashtra"}, "Sarw\u0101r": {"country": "India", "subcountry": "Rajasthan"}, "Sarkhej": {"country": "India", "subcountry": "Gujarat"}, "Sardulgarh": {"country": "India", "subcountry": "Punjab"}, "Sardhana": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sard\u0101rshahr": {"country": "India", "subcountry": "Rajasthan"}, "Sarauli": {"country": "India", "subcountry": "Uttar Pradesh"}, "S\u0101rangpur": {"country": "India", "subcountry": "Madhya Pradesh"}, "Saraipali": {"country": "India", "subcountry": "Chhattisgarh"}, "Sar\u0101i M\u012br": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sar\u0101i \u0100kil": {"country": "India", "subcountry": "Uttar Pradesh"}, "Saoner": {"country": "India", "subcountry": "Maharashtra"}, "S\u0101nkr\u0101il": {"country": "India", "subcountry": "West Bengal"}, "Sankeshwar": {"country": "India", "subcountry": "Karnataka"}, "Sangr\u016br": {"country": "India", "subcountry": "Punjab"}, "S\u0101ngola": {"country": "India", "subcountry": "Maharashtra"}, "Sangod": {"country": "India", "subcountry": "Rajasthan"}, "S\u0101ngli": {"country": "India", "subcountry": "Maharashtra"}, "Sangari\u0101": {"country": "India", "subcountry": "Rajasthan"}, "Sang\u0101reddi": {"country": "India", "subcountry": "Telangana"}, "Sangamner": {"country": "India", "subcountry": "Maharashtra"}, "Sand\u016br": {"country": "India", "subcountry": "Karnataka"}, "Sand\u012bla": {"country": "India", "subcountry": "Uttar Pradesh"}, "S\u0101ndi": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sancoale": {"country": "India", "subcountry": "Goa"}, "S\u0101nchor": {"country": "India", "subcountry": "Rajasthan"}, "San\u0101wad": {"country": "India", "subcountry": "Madhya Pradesh"}, "Sanaur": {"country": "India", "subcountry": "Punjab"}, "S\u0101nand": {"country": "India", "subcountry": "Gujarat"}, "Samthar": {"country": "India", "subcountry": "Uttar Pradesh"}, "Samr\u0101la": {"country": "India", "subcountry": "Punjab"}, "Samdari": {"country": "India", "subcountry": "Rajasthan"}, "S\u0101mbhar": {"country": "India", "subcountry": "Rajasthan"}, "Sambhal": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sambalpur": {"country": "India", "subcountry": "Odisha"}, "S\u0101mba": {"country": "India", "subcountry": "Kashmir"}, "Sam\u0101stipur": {"country": "India", "subcountry": "Bihar"}, "S\u0101malkot": {"country": "India", "subcountry": "Andhra Pradesh"}, "Sam\u0101lkha": {"country": "India", "subcountry": "Haryana"}, "S\u0101l\u016br": {"country": "India", "subcountry": "Andhra Pradesh"}, "S\u0101l\u016bmbar": {"country": "India", "subcountry": "Rajasthan"}, "Salem": {"country": "United States", "subcountry": "Oregon"}, "Sal\u0101ya": {"country": "India", "subcountry": "Gujarat"}, "Sakt\u012b": {"country": "India", "subcountry": "Chhattisgarh"}, "Sakleshpur": {"country": "India", "subcountry": "Karnataka"}, "Saint Thomas Mount": {"country": "India", "subcountry": "Tamil Nadu"}, "Sainthia": {"country": "India", "subcountry": "West Bengal"}, "Selu": {"country": "India", "subcountry": "Maharashtra"}, "Saiha": {"country": "India", "subcountry": "Mizoram"}, "S\u0101hibganj": {"country": "India", "subcountry": "Jharkhand"}, "Sah\u0101war": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sahasw\u0101n": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sahaspur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Saharsa": {"country": "India", "subcountry": "Bihar"}, "Sah\u0101ranpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sagauli": {"country": "India", "subcountry": "Bihar"}, "Saugor": {"country": "India", "subcountry": "Madhya Pradesh"}, "S\u0101gar": {"country": "India", "subcountry": "Karnataka"}, "Saf\u012bpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Safidon": {"country": "India", "subcountry": "Haryana"}, "S\u0101dri": {"country": "India", "subcountry": "Rajasthan"}, "Sad\u0101seopet": {"country": "India", "subcountry": "Telangana"}, "Sadalgi": {"country": "India", "subcountry": "Karnataka"}, "Sad\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Sabalgarh": {"country": "India", "subcountry": "Madhya Pradesh"}, "Rusera": {"country": "India", "subcountry": "Bihar"}, "Rura": {"country": "India", "subcountry": "Uttar Pradesh"}, "Ropar": {"country": "India", "subcountry": "Punjab"}, "R\u016bdarpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Roorkee": {"country": "India", "subcountry": "Uttarakhand"}, "Ron": {"country": "India", "subcountry": "Karnataka"}, "Rohtak": {"country": "India", "subcountry": "Haryana"}, "Roha": {"country": "India", "subcountry": "Maharashtra"}, "Robertsonpet": {"country": "India", "subcountry": "Karnataka"}, "Robertsganj": {"country": "India", "subcountry": "Uttar Pradesh"}, "Risod": {"country": "India", "subcountry": "Maharashtra"}, "Rishra": {"country": "India", "subcountry": "West Bengal"}, "Rish\u012bkesh": {"country": "India", "subcountry": "Uttarakhand"}, "R\u012bngas": {"country": "India", "subcountry": "Rajasthan"}, "Richha": {"country": "India", "subcountry": "Uttar Pradesh"}, "Rew\u0101ri": {"country": "India", "subcountry": "Haryana"}, "Rewa": {"country": "India", "subcountry": "Madhya Pradesh"}, "Revelganj": {"country": "India", "subcountry": "Bihar"}, "Repalle": {"country": "India", "subcountry": "Andhra Pradesh"}, "Reoti": {"country": "India", "subcountry": "Uttar Pradesh"}, "Renuk\u016bt": {"country": "India", "subcountry": "Uttar Pradesh"}, "Renigunta": {"country": "India", "subcountry": "Andhra Pradesh"}, "Remuna": {"country": "India", "subcountry": "Odisha"}, "Rehli": {"country": "India", "subcountry": "Madhya Pradesh"}, "R\u0101z\u0101m": {"country": "India", "subcountry": "Andhra Pradesh"}, "R\u0101yb\u0101g": {"country": "India", "subcountry": "Karnataka"}, "R\u0101yadrug": {"country": "India", "subcountry": "Andhra Pradesh"}, "R\u0101yachoti": {"country": "India", "subcountry": "Andhra Pradesh"}, "R\u0101ya": {"country": "India", "subcountry": "Uttar Pradesh"}, "Raxaul": {"country": "India", "subcountry": "Bihar"}, "R\u0101wats\u0101r": {"country": "India", "subcountry": "Rajasthan"}, "R\u0101watbh\u0101ta": {"country": "India", "subcountry": "Rajasthan"}, "R\u0101ver": {"country": "India", "subcountry": "Maharashtra"}, "Ratnagiri": {"country": "India", "subcountry": "Maharashtra"}, "Ratl\u0101m": {"country": "India", "subcountry": "Madhya Pradesh"}, "Ratia": {"country": "India", "subcountry": "Haryana"}, "R\u0101th": {"country": "India", "subcountry": "Uttar Pradesh"}, "Ratanpur": {"country": "India", "subcountry": "Chhattisgarh"}, "Ratangarh": {"country": "India", "subcountry": "Rajasthan"}, "Rasr\u0101": {"country": "India", "subcountry": "Uttar Pradesh"}, "Rasipuram": {"country": "India", "subcountry": "Tamil Nadu"}, "R\u0101par": {"country": "India", "subcountry": "Gujarat"}, "R\u0101n\u012bpur": {"country": "Pakistan", "subcountry": "Sindh"}, "R\u0101nikhet": {"country": "India", "subcountry": "Uttarakhand"}, "R\u0101n\u012bganj": {"country": "India", "subcountry": "West Bengal"}, "R\u0101n\u012bbennur": {"country": "India", "subcountry": "Karnataka"}, "R\u0101nia": {"country": "India", "subcountry": "Haryana"}, "Rangia": {"country": "India", "subcountry": "Assam"}, "Rang\u0101p\u0101ra": {"country": "India", "subcountry": "Assam"}, "Ranchi": {"country": "India", "subcountry": "Jharkhand"}, "R\u0101n\u0101v\u0101v": {"country": "India", "subcountry": "Gujarat"}, "R\u0101n\u0101gh\u0101t": {"country": "India", "subcountry": "West Bengal"}, "R\u0101mtek": {"country": "India", "subcountry": "Maharashtra"}, "Rampur Hat": {"country": "India", "subcountry": "West Bengal"}, "R\u0101mpura": {"country": "India", "subcountry": "Madhya Pradesh"}, "R\u0101mpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "R\u0101mnagar": {"country": "India", "subcountry": "Uttar Pradesh"}, "R\u0101mj\u012bbanpur": {"country": "India", "subcountry": "West Bengal"}, "R\u0101mgundam": {"country": "India", "subcountry": "Telangana"}, "R\u0101mgarh": {"country": "India", "subcountry": "Jharkhand"}, "R\u0101mganj Mandi": {"country": "India", "subcountry": "Rajasthan"}, "Rameswaram": {"country": "India", "subcountry": "Tamil Nadu"}, "R\u0101m\u0101puram": {"country": "India", "subcountry": "Andhra Pradesh"}, "Ramanathapuram": {"country": "India", "subcountry": "Tamil Nadu"}, "R\u0101managaram": {"country": "India", "subcountry": "Karnataka"}, "R\u0101machandrapuram": {"country": "India", "subcountry": "Andhra Pradesh"}, "R\u0101j\u016bra": {"country": "India", "subcountry": "Maharashtra"}, "R\u0101jula": {"country": "India", "subcountry": "Gujarat"}, "R\u0101jsamand": {"country": "India", "subcountry": "Rajasthan"}, "R\u0101jpura": {"country": "India", "subcountry": "Punjab"}, "Rajpur": {"country": "India", "subcountry": "Madhya Pradesh"}, "R\u0101jp\u012bpla": {"country": "India", "subcountry": "Gujarat"}, "R\u0101j-N\u0101ndgaon": {"country": "India", "subcountry": "Chhattisgarh"}, "R\u0101jmahal": {"country": "India", "subcountry": "West Bengal"}, "R\u0101jkot": {"country": "India", "subcountry": "Gujarat"}, "R\u0101jgurunagar": {"country": "India", "subcountry": "Maharashtra"}, "R\u0101jg\u012br": {"country": "India", "subcountry": "Bihar"}, "R\u0101jgarh": {"country": "India", "subcountry": "Madhya Pradesh"}, "Rajaori": {"country": "India", "subcountry": "Kashmir"}, "Rajapalaiyam": {"country": "India", "subcountry": "Tamil Nadu"}, "R\u0101jampet": {"country": "India", "subcountry": "Andhra Pradesh"}, "R\u0101jaldesar": {"country": "India", "subcountry": "Rajasthan"}, "R\u0101j\u0101khera": {"country": "India", "subcountry": "Rajasthan"}, "R\u0101jahmundry": {"country": "India", "subcountry": "Andhra Pradesh"}, "R\u0101isinghnagar": {"country": "India", "subcountry": "Rajasthan"}, "Raisen": {"country": "India", "subcountry": "Madhya Pradesh"}, "Raipur": {"country": "India", "subcountry": "Chhattisgarh"}, "R\u0101ikot": {"country": "India", "subcountry": "Punjab"}, "Raigarh": {"country": "India", "subcountry": "Chhattisgarh"}, "R\u0101iganj": {"country": "India", "subcountry": "West Bengal"}, "R\u0101ich\u016br": {"country": "India", "subcountry": "Karnataka"}, "R\u0101huri": {"country": "India", "subcountry": "Maharashtra"}, "Rahimatpur": {"country": "India", "subcountry": "Maharashtra"}, "R\u0101hatgarh": {"country": "India", "subcountry": "Madhya Pradesh"}, "Raghunathpur": {"country": "India", "subcountry": "West Bengal"}, "R\u0101ghogarh": {"country": "India", "subcountry": "Madhya Pradesh"}, "Rafiganj": {"country": "India", "subcountry": "Bihar"}, "Raebareli": {"country": "India", "subcountry": "Uttar Pradesh"}, "R\u0101dhanpur": {"country": "India", "subcountry": "Gujarat"}, "Rabkavi": {"country": "India", "subcountry": "Karnataka"}, "Kollam": {"country": "India", "subcountry": "Kerala"}, "Kasba": {"country": "India", "subcountry": "Bihar"}, "Q\u0101di\u0101n": {"country": "India", "subcountry": "Punjab"}, "Putt\u016br": {"country": "India", "subcountry": "Karnataka"}, "Pushkar": {"country": "India", "subcountry": "Rajasthan"}, "Pusad": {"country": "India", "subcountry": "Maharashtra"}, "Purw\u0101": {"country": "India", "subcountry": "Uttar Pradesh"}, "Puruliya": {"country": "India", "subcountry": "West Bengal"}, "Purnia": {"country": "India", "subcountry": "Bihar"}, "P\u016brna": {"country": "India", "subcountry": "Maharashtra"}, "Puri": {"country": "India", "subcountry": "Odisha"}, "P\u016branpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Pupri": {"country": "India", "subcountry": "Bihar"}, "Punjai Puliyampatti": {"country": "India", "subcountry": "Tamil Nadu"}, "Pungan\u016bru": {"country": "India", "subcountry": "Andhra Pradesh"}, "Pune": {"country": "India", "subcountry": "Maharashtra"}, "P\u016bndri": {"country": "India", "subcountry": "Haryana"}, "Pun\u0101sa": {"country": "India", "subcountry": "Madhya Pradesh"}, "Punal\u016br": {"country": "India", "subcountry": "Kerala"}, "P\u016bn\u0101h\u0101na": {"country": "India", "subcountry": "Haryana"}, "Pulwama": {"country": "India", "subcountry": "Kashmir"}, "Puliyangudi": {"country": "India", "subcountry": "Tamil Nadu"}, "Pulivendla": {"country": "India", "subcountry": "Andhra Pradesh"}, "Pulgaon": {"country": "India", "subcountry": "Maharashtra"}, "Pukhr\u0101y\u0101n": {"country": "India", "subcountry": "Uttar Pradesh"}, "Pudukkottai": {"country": "India", "subcountry": "Tamil Nadu"}, "Proddat\u016br": {"country": "India", "subcountry": "Andhra Pradesh"}, "Prat\u0101pgarh": {"country": "India", "subcountry": "Rajasthan"}, "Port Blair": {"country": "India", "subcountry": "Andaman and Nicobar Islands"}, "Porsa": {"country": "India", "subcountry": "Madhya Pradesh"}, "Porbandar": {"country": "India", "subcountry": "Gujarat"}, "Poonamalle": {"country": "India", "subcountry": "Tamil Nadu"}, "Ponn\u016bru": {"country": "India", "subcountry": "Andhra Pradesh"}, "Ponneri": {"country": "India", "subcountry": "Tamil Nadu"}, "Ponn\u0101ni": {"country": "India", "subcountry": "Kerala"}, "Puducherry": {"country": "India", "subcountry": "Pondicherry"}, "Ponda": {"country": "India", "subcountry": "Goa"}, "Pol\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Pollachi": {"country": "India", "subcountry": "Tamil Nadu"}, "Polavaram": {"country": "India", "subcountry": "Andhra Pradesh"}, "Polasara": {"country": "India", "subcountry": "Odisha"}, "Pokaran": {"country": "India", "subcountry": "Rajasthan"}, "Pithor\u0101garh": {"country": "India", "subcountry": "Uttarakhand"}, "Pith\u0101puram": {"country": "India", "subcountry": "Andhra Pradesh"}, "Piro": {"country": "India", "subcountry": "Bihar"}, "Piriy\u0101patna": {"country": "India", "subcountry": "Karnataka"}, "Piravam": {"country": "India", "subcountry": "Kerala"}, "P\u012bpri": {"country": "India", "subcountry": "Maharashtra"}, "Pipraich": {"country": "India", "subcountry": "Uttar Pradesh"}, "Pipili": {"country": "India", "subcountry": "Odisha"}, "P\u012bp\u0101r": {"country": "India", "subcountry": "Rajasthan"}, "Pinjaur": {"country": "India", "subcountry": "Haryana"}, "Pindw\u0101ra": {"country": "India", "subcountry": "Rajasthan"}, "Pin\u0101hat": {"country": "India", "subcountry": "Uttar Pradesh"}, "Pimpri": {"country": "India", "subcountry": "Maharashtra"}, "Pilkhua": {"country": "India", "subcountry": "Uttar Pradesh"}, "P\u012blibh\u012bt": {"country": "India", "subcountry": "Uttar Pradesh"}, "Pilibangan": {"country": "India", "subcountry": "Rajasthan"}, "Pil\u0101ni": {"country": "India", "subcountry": "Rajasthan"}, "Pih\u0101n\u012b": {"country": "India", "subcountry": "Uttar Pradesh"}, "Phulpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Phulera": {"country": "India", "subcountry": "Rajasthan"}, "Phulab\u0101ni": {"country": "India", "subcountry": "Odisha"}, "Phirangipuram": {"country": "India", "subcountry": "Andhra Pradesh"}, "Phillaur": {"country": "India", "subcountry": "Punjab"}, "Phek": {"country": "India", "subcountry": "Manipur"}, "Phaph\u016bnd": {"country": "India", "subcountry": "Uttar Pradesh"}, "Phaltan": {"country": "India", "subcountry": "Maharashtra"}, "Phalodi": {"country": "India", "subcountry": "Rajasthan"}, "Phalauda": {"country": "India", "subcountry": "Uttar Pradesh"}, "Phagw\u0101ra": {"country": "India", "subcountry": "Punjab"}, "Petl\u0101d": {"country": "India", "subcountry": "Gujarat"}, "Perundurai": {"country": "India", "subcountry": "Tamil Nadu"}, "Perump\u0101v\u016br": {"country": "India", "subcountry": "Kerala"}, "Periyanayakkanpalaiyam": {"country": "India", "subcountry": "Tamil Nadu"}, "Periyakulam": {"country": "India", "subcountry": "Tamil Nadu"}, "Peravurani": {"country": "India", "subcountry": "Tamil Nadu"}, "Peran\u0101mpattu": {"country": "India", "subcountry": "Tamil Nadu"}, "Perambalur": {"country": "India", "subcountry": "Tamil Nadu"}, "Penukonda": {"country": "India", "subcountry": "Andhra Pradesh"}, "Penugonda": {"country": "India", "subcountry": "Andhra Pradesh"}, "Penn\u0101garam": {"country": "India", "subcountry": "Tamil Nadu"}, "Penn\u0101dam": {"country": "India", "subcountry": "Tamil Nadu"}, "Pen": {"country": "India", "subcountry": "Maharashtra"}, "Pehowa": {"country": "India", "subcountry": "Haryana"}, "Pedd\u0101puram": {"country": "India", "subcountry": "Andhra Pradesh"}, "Peddapalli": {"country": "India", "subcountry": "Telangana"}, "Pedana": {"country": "India", "subcountry": "Andhra Pradesh"}, "Payyann\u016br": {"country": "India", "subcountry": "Kerala"}, "Paw\u0101yan": {"country": "India", "subcountry": "Uttar Pradesh"}, "P\u0101vugada": {"country": "India", "subcountry": "Karnataka"}, "Pauri": {"country": "India", "subcountry": "Uttarakhand"}, "Pawni": {"country": "India", "subcountry": "Maharashtra"}, "P\u0101t\u016br": {"country": "India", "subcountry": "Maharashtra"}, "Pattukkottai": {"country": "India", "subcountry": "Tamil Nadu"}, "Patti": {"country": "India", "subcountry": "Punjab"}, "Patn\u0101garh": {"country": "India", "subcountry": "Odisha"}, "Patna": {"country": "India", "subcountry": "Bihar"}, "Pati\u0101la": {"country": "India", "subcountry": "Punjab"}, "P\u0101thri": {"country": "India", "subcountry": "Maharashtra"}, "Patharia": {"country": "India", "subcountry": "Madhya Pradesh"}, "P\u0101thardih": {"country": "India", "subcountry": "Jharkhand"}, "P\u0101thardi": {"country": "India", "subcountry": "Maharashtra"}, "Path\u0101nkot": {"country": "India", "subcountry": "Punjab"}, "Pathan\u0101mthitta": {"country": "India", "subcountry": "Kerala"}, "Pathalgaon": {"country": "India", "subcountry": "Chhattisgarh"}, "Pataudi": {"country": "India", "subcountry": "Haryana"}, "Patancheru": {"country": "India", "subcountry": "Telangana"}, "P\u0101tan": {"country": "Nepal", "subcountry": "Central Region"}, "Pat\u0101mundai": {"country": "India", "subcountry": "Odisha"}, "P\u0101sigh\u0101t": {"country": "India", "subcountry": "Arunachal Pradesh"}, "Pas\u0101n": {"country": "India", "subcountry": "Chhattisgarh"}, "Parvatsar": {"country": "India", "subcountry": "Rajasthan"}, "P\u0101rvatipuram": {"country": "India", "subcountry": "Andhra Pradesh"}, "Part\u016br": {"country": "India", "subcountry": "Maharashtra"}, "Parola": {"country": "India", "subcountry": "Maharashtra"}, "Parli Vaijn\u0101th": {"country": "India", "subcountry": "Maharashtra"}, "Parl\u0101kimidi": {"country": "India", "subcountry": "Andhra Pradesh"}, "Pariy\u0101puram": {"country": "India", "subcountry": "Kerala"}, "Par\u012bchhatgarh": {"country": "India", "subcountry": "Uttar Pradesh"}, "P\u0101rdi": {"country": "India", "subcountry": "Gujarat"}, "Parbhani": {"country": "India", "subcountry": "Maharashtra"}, "Parav\u016br": {"country": "India", "subcountry": "Kerala"}, "Par\u0101sia": {"country": "India", "subcountry": "Madhya Pradesh"}, "Paramagudi": {"country": "India", "subcountry": "Tamil Nadu"}, "Par\u0101d\u012bp Garh": {"country": "India", "subcountry": "Odisha"}, "P\u0101ppinissh\u0113ri": {"country": "India", "subcountry": "Kerala"}, "Papanasam": {"country": "India", "subcountry": "Tamil Nadu"}, "P\u0101onta S\u0101hib": {"country": "India", "subcountry": "Himachal Pradesh"}, "Panvel": {"country": "India", "subcountry": "Maharashtra"}, "Panruti": {"country": "India", "subcountry": "Tamil Nadu"}, "Panna": {"country": "India", "subcountry": "Madhya Pradesh"}, "Panmana": {"country": "India", "subcountry": "Kerala"}, "P\u0101n\u012bpat": {"country": "India", "subcountry": "Haryana"}, "P\u0101nih\u0101ti": {"country": "India", "subcountry": "West Bengal"}, "Pandua": {"country": "India", "subcountry": "West Bengal"}, "P\u0101ndhurn\u0101": {"country": "India", "subcountry": "Madhya Pradesh"}, "Pandharpur": {"country": "India", "subcountry": "Maharashtra"}, "French Rocks": {"country": "India", "subcountry": "Karnataka"}, "Panaji": {"country": "India", "subcountry": "Goa"}, "Pan\u0101gar": {"country": "India", "subcountry": "Madhya Pradesh"}, "Palwal": {"country": "India", "subcountry": "Haryana"}, "P\u0101loncha": {"country": "India", "subcountry": "Telangana"}, "Palani": {"country": "India", "subcountry": "Tamil Nadu"}, "Palmaner": {"country": "India", "subcountry": "Andhra Pradesh"}, "Pallippatti": {"country": "India", "subcountry": "Tamil Nadu"}, "Pallikondai": {"country": "India", "subcountry": "Tamil Nadu"}, "Pall\u0101varam": {"country": "India", "subcountry": "Tamil Nadu"}, "Pallappatti": {"country": "India", "subcountry": "Tamil Nadu"}, "Palladam": {"country": "India", "subcountry": "Tamil Nadu"}, "P\u0101lkonda": {"country": "India", "subcountry": "Andhra Pradesh"}, "P\u0101lit\u0101na": {"country": "India", "subcountry": "Gujarat"}, "Pali\u0101 Kal\u0101n": {"country": "India", "subcountry": "Uttar Pradesh"}, "P\u0101li": {"country": "India", "subcountry": "Madhya Pradesh"}, "Palakkad": {"country": "India", "subcountry": "Kerala"}, "P\u0101lghar": {"country": "India", "subcountry": "Maharashtra"}, "Palera": {"country": "India", "subcountry": "Madhya Pradesh"}, "Pal\u0101sa": {"country": "India", "subcountry": "Andhra Pradesh"}, "P\u0101lanpur": {"country": "India", "subcountry": "Gujarat"}, "P\u0101lakollu": {"country": "India", "subcountry": "Andhra Pradesh"}, "P\u0101lakkodu": {"country": "India", "subcountry": "Tamil Nadu"}, "P\u0101kaur": {"country": "India", "subcountry": "Jharkhand"}, "P\u0101k\u0101la": {"country": "India", "subcountry": "Andhra Pradesh"}, "Paithan": {"country": "India", "subcountry": "Maharashtra"}, "Pah\u0101su": {"country": "India", "subcountry": "Uttar Pradesh"}, "Padrauna": {"country": "India", "subcountry": "Uttar Pradesh"}, "Padra": {"country": "India", "subcountry": "Gujarat"}, "Padman\u0101bhapuram": {"country": "India", "subcountry": "Tamil Nadu"}, "Padampur": {"country": "India", "subcountry": "Odisha"}, "Padam": {"country": "India", "subcountry": "Kashmir"}, "Pachperwa": {"country": "India", "subcountry": "Uttar Pradesh"}, "P\u0101chora": {"country": "India", "subcountry": "Maharashtra"}, "Ottapp\u0101lam": {"country": "India", "subcountry": "Kerala"}, "Osmanabad": {"country": "India", "subcountry": "Maharashtra"}, "Orai": {"country": "India", "subcountry": "Uttar Pradesh"}, "Ongole": {"country": "India", "subcountry": "Andhra Pradesh"}, "Okha": {"country": "Russia", "subcountry": "Sakhalin"}, "Ozar": {"country": "India", "subcountry": "Maharashtra"}, "Obra": {"country": "India", "subcountry": "Uttar Pradesh"}, "N\u016bzv\u012bd": {"country": "India", "subcountry": "Andhra Pradesh"}, "N\u016brpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Nowrangapur": {"country": "India", "subcountry": "Odisha"}, "North Lakhimpur": {"country": "India", "subcountry": "Assam"}, "North Guw\u0101h\u0101ti": {"country": "India", "subcountry": "Assam"}, "Nongstoin": {"country": "India", "subcountry": "Meghalaya"}, "Nokha": {"country": "India", "subcountry": "Rajasthan"}, "Nohar": {"country": "India", "subcountry": "Rajasthan"}, "No\u0101mundi": {"country": "India", "subcountry": "Jharkhand"}, "Niz\u0101m\u0101b\u0101d": {"country": "India", "subcountry": "Telangana"}, "Nirm\u0101li": {"country": "India", "subcountry": "Bihar"}, "Nirmal": {"country": "India", "subcountry": "Telangana"}, "Nip\u0101ni": {"country": "India", "subcountry": "Maharashtra"}, "Neem Ka Thana": {"country": "India", "subcountry": "Rajasthan"}, "N\u012bmb\u0101hera": {"country": "India", "subcountry": "Rajasthan"}, "Nim\u0101parha": {"country": "India", "subcountry": "Odisha"}, "N\u012bm\u0101j": {"country": "India", "subcountry": "Rajasthan"}, "N\u012blokheri": {"country": "India", "subcountry": "Haryana"}, "N\u012bl\u0113shwar": {"country": "India", "subcountry": "Kerala"}, "Nilanga": {"country": "India", "subcountry": "Maharashtra"}, "Nilakottai": {"country": "India", "subcountry": "Tamil Nadu"}, "N\u012blgiri": {"country": "India", "subcountry": "Odisha"}, "Nihtaur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Nidadavole": {"country": "India", "subcountry": "Andhra Pradesh"}, "Nichlaul": {"country": "India", "subcountry": "Uttar Pradesh"}, "Neyy\u0101ttinkara": {"country": "India", "subcountry": "Kerala"}, "New Delhi": {"country": "India", "subcountry": "NCT"}, "Neral": {"country": "India", "subcountry": "Maharashtra"}, "Nep\u0101nagar": {"country": "India", "subcountry": "Madhya Pradesh"}, "Nellore": {"country": "India", "subcountry": "Andhra Pradesh"}, "Nellikkuppam": {"country": "India", "subcountry": "Tamil Nadu"}, "Nelamangala": {"country": "India", "subcountry": "Karnataka"}, "Nedumang\u0101d": {"country": "India", "subcountry": "Kerala"}, "N\u0101yudupeta": {"country": "India", "subcountry": "Andhra Pradesh"}, "Nay\u0101garh": {"country": "India", "subcountry": "Odisha"}, "Naw\u0101shahr": {"country": "India", "subcountry": "Punjab"}, "Nawalgarh": {"country": "India", "subcountry": "Rajasthan"}, "Niwai": {"country": "India", "subcountry": "Rajasthan"}, "Naw\u0101da": {"country": "India", "subcountry": "Bihar"}, "N\u0101wa": {"country": "India", "subcountry": "Rajasthan"}, "Navalgund": {"country": "India", "subcountry": "Karnataka"}, "Navadw\u012bp": {"country": "India", "subcountry": "West Bengal"}, "Nautanwa": {"country": "India", "subcountry": "Uttar Pradesh"}, "Naugachhia": {"country": "India", "subcountry": "Bihar"}, "Nattam": {"country": "India", "subcountry": "Tamil Nadu"}, "N\u0101thdw\u0101ra": {"country": "India", "subcountry": "Rajasthan"}, "Nasrull\u0101hganj": {"country": "India", "subcountry": "Madhya Pradesh"}, "N\u0101sriganj": {"country": "India", "subcountry": "Bihar"}, "N\u0101spur": {"country": "India", "subcountry": "Telangana"}, "Nas\u012br\u0101b\u0101d": {"country": "Pakistan", "subcountry": "Sindh"}, "Nashik": {"country": "India", "subcountry": "Maharashtra"}, "Narwar": {"country": "India", "subcountry": "Madhya Pradesh"}, "Narw\u0101na": {"country": "India", "subcountry": "Haryana"}, "Nars\u012bpatnam": {"country": "India", "subcountry": "Andhra Pradesh"}, "Narsinghgarh": {"country": "India", "subcountry": "Madhya Pradesh"}, "Narsimhapur": {"country": "India", "subcountry": "Madhya Pradesh"}, "N\u0101rnaund": {"country": "India", "subcountry": "Haryana"}, "N\u0101rnaul": {"country": "India", "subcountry": "Haryana"}, "Nargund": {"country": "India", "subcountry": "Karnataka"}, "Naregal": {"country": "India", "subcountry": "Karnataka"}, "N\u0101r\u0101yanpet": {"country": "India", "subcountry": "Telangana"}, "Nar\u0101yangarh": {"country": "India", "subcountry": "Haryana"}, "N\u0101rav\u0101rikuppam": {"country": "India", "subcountry": "Tamil Nadu"}, "Naraura": {"country": "India", "subcountry": "Uttar Pradesh"}, "Narauli": {"country": "India", "subcountry": "Uttar Pradesh"}, "Narasaraopet": {"country": "India", "subcountry": "Andhra Pradesh"}, "Narasapur": {"country": "India", "subcountry": "Andhra Pradesh"}, "Narasannapeta": {"country": "India", "subcountry": "Andhra Pradesh"}, "Naraini": {"country": "India", "subcountry": "Madhya Pradesh"}, "Naraina": {"country": "India", "subcountry": "Rajasthan"}, "Nap\u0101sar": {"country": "India", "subcountry": "Rajasthan"}, "N\u0101np\u0101ra": {"country": "India", "subcountry": "Uttar Pradesh"}, "Nanjang\u016bd": {"country": "India", "subcountry": "Karnataka"}, "N\u0101ngloi J\u0101t": {"country": "India", "subcountry": "NCT"}, "N\u0101ngal Township": {"country": "India", "subcountry": "Punjab"}, "Nandy\u0101l": {"country": "India", "subcountry": "Andhra Pradesh"}, "Nandurbar": {"country": "India", "subcountry": "Maharashtra"}, "N\u0101nd\u016bra Buzurg": {"country": "India", "subcountry": "Maharashtra"}, "Nandikotk\u016br": {"country": "India", "subcountry": "Andhra Pradesh"}, "Nandig\u0101ma": {"country": "India", "subcountry": "Andhra Pradesh"}, "N\u0101ndgaon": {"country": "India", "subcountry": "Maharashtra"}, "Nanded": {"country": "India", "subcountry": "Maharashtra"}, "Nanauta": {"country": "India", "subcountry": "Uttar Pradesh"}, "N\u0101mrup": {"country": "India", "subcountry": "Assam"}, "Nambiy\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "N\u0101makkal": {"country": "India", "subcountry": "Tamil Nadu"}, "N\u0101magiripettai": {"country": "India", "subcountry": "Tamil Nadu"}, "Nalh\u0101ti": {"country": "India", "subcountry": "West Bengal"}, "Nalgonda": {"country": "India", "subcountry": "Telangana"}, "Naldurg": {"country": "India", "subcountry": "Maharashtra"}, "Nak\u016br": {"country": "India", "subcountry": "Uttar Pradesh"}, "Naksalb\u0101ri": {"country": "India", "subcountry": "West Bengal"}, "Nakodar": {"country": "India", "subcountry": "Punjab"}, "Naj\u012bb\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Nainwa": {"country": "India", "subcountry": "Rajasthan"}, "Nainpur": {"country": "India", "subcountry": "Madhya Pradesh"}, "Naini T\u0101l": {"country": "India", "subcountry": "Uttarakhand"}, "Naih\u0101ti": {"country": "India", "subcountry": "West Bengal"}, "Nahorkatiya": {"country": "India", "subcountry": "Assam"}, "N\u0101han": {"country": "India", "subcountry": "Himachal Pradesh"}, "Nagpur": {"country": "India", "subcountry": "Maharashtra"}, "N\u0101god": {"country": "India", "subcountry": "Madhya Pradesh"}, "Nag\u012bna": {"country": "India", "subcountry": "Uttar Pradesh"}, "N\u0101gercoil": {"country": "India", "subcountry": "Tamil Nadu"}, "Nagda": {"country": "India", "subcountry": "Madhya Pradesh"}, "N\u0101gaur": {"country": "India", "subcountry": "Rajasthan"}, "N\u0101gar Karn\u016bl": {"country": "India", "subcountry": "Telangana"}, "Nagari": {"country": "India", "subcountry": "Andhra Pradesh"}, "Nagar": {"country": "India", "subcountry": "Rajasthan"}, "N\u0101gappattinam": {"country": "India", "subcountry": "Tamil Nadu"}, "N\u0101gamangala": {"country": "India", "subcountry": "Karnataka"}, "Naduvann\u016br": {"country": "India", "subcountry": "Kerala"}, "Nadi\u0101d": {"country": "India", "subcountry": "Gujarat"}, "N\u0101dbai": {"country": "India", "subcountry": "Rajasthan"}, "N\u0101d\u0101puram": {"country": "India", "subcountry": "Kerala"}, "N\u0101bha": {"country": "India", "subcountry": "Punjab"}, "Mysore": {"country": "India", "subcountry": "Karnataka"}, "Muzaffarpur": {"country": "India", "subcountry": "Bihar"}, "Muzaffarnagar": {"country": "India", "subcountry": "Uttar Pradesh"}, "M\u016bvattupula": {"country": "India", "subcountry": "Kerala"}, "Muttupet": {"country": "India", "subcountry": "Tamil Nadu"}, "Mussoorie": {"country": "India", "subcountry": "Uttarakhand"}, "Musiri": {"country": "India", "subcountry": "Tamil Nadu"}, "Mush\u0101bani": {"country": "India", "subcountry": "Jharkhand"}, "Murw\u0101ra": {"country": "India", "subcountry": "Madhya Pradesh"}, "Murtaj\u0101pur": {"country": "India", "subcountry": "Maharashtra"}, "Murshid\u0101b\u0101d": {"country": "India", "subcountry": "West Bengal"}, "Murl\u012bganj": {"country": "India", "subcountry": "Bihar"}, "Morinda": {"country": "India", "subcountry": "Punjab"}, "Murb\u0101d": {"country": "India", "subcountry": "Maharashtra"}, "Mur\u0101dnagar": {"country": "India", "subcountry": "Uttar Pradesh"}, "Munnar": {"country": "India", "subcountry": "Kerala"}, "Monghyr": {"country": "India", "subcountry": "Bihar"}, "Mungeli": {"country": "India", "subcountry": "Chhattisgarh"}, "Mungaoli": {"country": "India", "subcountry": "Madhya Pradesh"}, "M\u016bndwa": {"country": "India", "subcountry": "Rajasthan"}, "Mundra": {"country": "India", "subcountry": "Gujarat"}, "Mundgod": {"country": "India", "subcountry": "Karnataka"}, "Mundargi": {"country": "India", "subcountry": "Karnataka"}, "Multai": {"country": "India", "subcountry": "Madhya Pradesh"}, "M\u016blki": {"country": "India", "subcountry": "Karnataka"}, "Mulgund": {"country": "India", "subcountry": "Karnataka"}, "Mulb\u0101gal": {"country": "India", "subcountry": "Karnataka"}, "Muluppilagadu": {"country": "India", "subcountry": "Kerala"}, "M\u016bl": {"country": "India", "subcountry": "Maharashtra"}, "Muktsar": {"country": "India", "subcountry": "Punjab"}, "Mukher": {"country": "India", "subcountry": "Maharashtra"}, "Mukeri\u0101n": {"country": "India", "subcountry": "Punjab"}, "Muhammad\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mughal Sar\u0101i": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mudkhed": {"country": "India", "subcountry": "Maharashtra"}, "Mudhol": {"country": "India", "subcountry": "Karnataka"}, "Mudgal": {"country": "India", "subcountry": "Karnataka"}, "Muddebih\u0101l": {"country": "India", "subcountry": "Karnataka"}, "M\u016bdbidri": {"country": "India", "subcountry": "Karnataka"}, "Mub\u0101rakpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Moth\u012bh\u0101ri": {"country": "India", "subcountry": "Bihar"}, "Morwa": {"country": "India", "subcountry": "Gujarat"}, "Morsi": {"country": "India", "subcountry": "Maharashtra"}, "Morena": {"country": "India", "subcountry": "Madhya Pradesh"}, "Morbi": {"country": "India", "subcountry": "Gujarat"}, "Mor\u0101r": {"country": "India", "subcountry": "Madhya Pradesh"}, "Moram": {"country": "India", "subcountry": "Maharashtra"}, "Mor\u0101d\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mon": {"country": "India", "subcountry": "Nagaland"}, "Mokokch\u016bng": {"country": "India", "subcountry": "Nagaland"}, "Mokameh": {"country": "India", "subcountry": "Bihar"}, "Moir\u0101ng": {"country": "India", "subcountry": "Manipur"}, "Moga": {"country": "India", "subcountry": "Punjab"}, "Mod\u0101sa": {"country": "India", "subcountry": "Gujarat"}, "Misrikh": {"country": "India", "subcountry": "Uttar Pradesh"}, "Miri\u0101lg\u016bda": {"country": "India", "subcountry": "Telangana"}, "M\u012brganj": {"country": "India", "subcountry": "Uttar Pradesh"}, "M\u012br\u0101npur Katra": {"country": "India", "subcountry": "Uttar Pradesh"}, "M\u012br\u0101npur": {"country": "India", "subcountry": "Uttar Pradesh"}, "M\u012bnj\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Milak": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mihona": {"country": "India", "subcountry": "Madhya Pradesh"}, "Mh\u0101sv\u0101d": {"country": "India", "subcountry": "Maharashtra"}, "Mettur": {"country": "India", "subcountry": "Tamil Nadu"}, "Mettupalayam": {"country": "India", "subcountry": "Tamil Nadu"}, "Merta": {"country": "India", "subcountry": "Rajasthan"}, "Mendarda": {"country": "India", "subcountry": "Gujarat"}, "Mem\u0101ri": {"country": "India", "subcountry": "West Bengal"}, "Melur": {"country": "India", "subcountry": "Tamil Nadu"}, "Mehnd\u0101wal": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mehekar": {"country": "India", "subcountry": "Maharashtra"}, "Meerut": {"country": "India", "subcountry": "Uttar Pradesh"}, "Medin\u012bpur": {"country": "India", "subcountry": "West Bengal"}, "Medak": {"country": "India", "subcountry": "Telangana"}, "Mayiladuthurai": {"country": "India", "subcountry": "Tamil Nadu"}, "May\u0101ng Imph\u0101l": {"country": "India", "subcountry": "Manipur"}, "Maw\u0101na": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mavoor": {"country": "India", "subcountry": "Kerala"}, "M\u0101velikara": {"country": "India", "subcountry": "Kerala"}, "Maur": {"country": "India", "subcountry": "Punjab"}, "Mauganj": {"country": "India", "subcountry": "Madhya Pradesh"}, "Maudaha": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mau Aimma": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mau": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mattan\u016br": {"country": "India", "subcountry": "Kerala"}, "Mathura": {"country": "India", "subcountry": "Uttar Pradesh"}, "M\u0101t\u0101bh\u0101nga": {"country": "India", "subcountry": "West Bengal"}, "Masaurhi Buzurg": {"country": "India", "subcountry": "Bihar"}, "Marmagao": {"country": "India", "subcountry": "Goa"}, "M\u0101rk\u0101pur": {"country": "India", "subcountry": "Andhra Pradesh"}, "Mari\u0101ni": {"country": "India", "subcountry": "Assam"}, "Mari\u0101hu": {"country": "India", "subcountry": "Uttar Pradesh"}, "Marhaura": {"country": "India", "subcountry": "Bihar"}, "Margherita": {"country": "India", "subcountry": "Arunachal Pradesh"}, "Marakkanam": {"country": "India", "subcountry": "Tamil Nadu"}, "M\u0101rahra": {"country": "India", "subcountry": "Uttar Pradesh"}, "M\u0101puca": {"country": "India", "subcountry": "Goa"}, "M\u0101nwat": {"country": "India", "subcountry": "Maharashtra"}, "M\u0101nvi": {"country": "India", "subcountry": "Karnataka"}, "Manthani": {"country": "India", "subcountry": "Telangana"}, "M\u0101nsa": {"country": "India", "subcountry": "Gujarat"}, "Manoharpur": {"country": "India", "subcountry": "Rajasthan"}, "Mannargudi": {"country": "India", "subcountry": "Tamil Nadu"}, "Mann\u0101rakk\u0101t": {"country": "India", "subcountry": "Kerala"}, "Manm\u0101d": {"country": "India", "subcountry": "Maharashtra"}, "Mank\u0101char": {"country": "India", "subcountry": "Meghalaya"}, "M\u0101jalgaon": {"country": "India", "subcountry": "Maharashtra"}, "Manjhanpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Manjeri": {"country": "India", "subcountry": "Kerala"}, "Manih\u0101ri": {"country": "India", "subcountry": "Bihar"}, "Maniar": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mangr\u016bl P\u012br": {"country": "India", "subcountry": "Maharashtra"}, "M\u0101ngrol": {"country": "India", "subcountry": "Gujarat"}, "Manglaur": {"country": "India", "subcountry": "Uttarakhand"}, "Mangalore": {"country": "India", "subcountry": "Karnataka"}, "Mangaldai": {"country": "India", "subcountry": "Assam"}, "Mangalagiri": {"country": "India", "subcountry": "Andhra Pradesh"}, "Maner": {"country": "India", "subcountry": "Bihar"}, "Mandya": {"country": "India", "subcountry": "Karnataka"}, "M\u0101ndvi": {"country": "India", "subcountry": "Gujarat"}, "M\u0101ndu": {"country": "India", "subcountry": "Madhya Pradesh"}, "Mandsaur": {"country": "India", "subcountry": "Madhya Pradesh"}, "Mandl\u0101": {"country": "India", "subcountry": "Madhya Pradesh"}, "Mandi": {"country": "India", "subcountry": "Himachal Pradesh"}, "Mand\u0101war": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mandapeta": {"country": "India", "subcountry": "Andhra Pradesh"}, "Mandapam": {"country": "India", "subcountry": "Tamil Nadu"}, "M\u0101ndalgarh": {"country": "India", "subcountry": "Rajasthan"}, "M\u0101ndal": {"country": "India", "subcountry": "Rajasthan"}, "Mancher\u0101l": {"country": "India", "subcountry": "Telangana"}, "Man\u0101war": {"country": "India", "subcountry": "Madhya Pradesh"}, "M\u0101n\u0101vadar": {"country": "India", "subcountry": "Gujarat"}, "Man\u0101sa": {"country": "India", "subcountry": "Madhya Pradesh"}, "Manapparai": {"country": "India", "subcountry": "Tamil Nadu"}, "Manamadurai": {"country": "India", "subcountry": "Tamil Nadu"}, "Manali": {"country": "India", "subcountry": "Tamil Nadu"}, "M\u0101lvan": {"country": "India", "subcountry": "Maharashtra"}, "M\u0101l\u016br": {"country": "India", "subcountry": "Karnataka"}, "M\u0101lpura": {"country": "India", "subcountry": "Rajasthan"}, "Malpe": {"country": "India", "subcountry": "Karnataka"}, "Mallasamudram": {"country": "India", "subcountry": "Tamil Nadu"}, "Malk\u0101pur": {"country": "India", "subcountry": "Maharashtra"}, "Malakanagiri": {"country": "India", "subcountry": "Odisha"}, "Mal\u012bh\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "M\u0101ler Kotla": {"country": "India", "subcountry": "Punjab"}, "M\u0101legaon": {"country": "India", "subcountry": "Maharashtra"}, "Malavalli": {"country": "India", "subcountry": "Karnataka"}, "Malaut": {"country": "India", "subcountry": "Punjab"}, "Malappuram": {"country": "India", "subcountry": "Kerala"}, "M\u0101kum": {"country": "India", "subcountry": "Assam"}, "Maksi": {"country": "India", "subcountry": "Madhya Pradesh"}, "Makr\u0101na": {"country": "India", "subcountry": "Rajasthan"}, "Mairwa": {"country": "India", "subcountry": "Bihar"}, "Mainpuri": {"country": "India", "subcountry": "Uttar Pradesh"}, "Main\u0101guri": {"country": "India", "subcountry": "West Bengal"}, "Maihar": {"country": "India", "subcountry": "Madhya Pradesh"}, "Mahwah": {"country": "United States", "subcountry": "New Jersey"}, "Mahudha": {"country": "India", "subcountry": "Gujarat"}, "Maholi": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mahob\u0101": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mahmud\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mah\u012bsh\u0101dal": {"country": "India", "subcountry": "West Bengal"}, "Mahgaw\u0101n": {"country": "India", "subcountry": "Madhya Pradesh"}, "Maheshwar": {"country": "India", "subcountry": "Madhya Pradesh"}, "Mahendragarh": {"country": "India", "subcountry": "Haryana"}, "Mahemd\u0101v\u0101d": {"country": "India", "subcountry": "Gujarat"}, "Mah\u0113": {"country": "India", "subcountry": "Kerala"}, "Mahb\u016bbnagar": {"country": "India", "subcountry": "Telangana"}, "Mahb\u016bb\u0101b\u0101d": {"country": "India", "subcountry": "Telangana"}, "Mah\u0101samund": {"country": "India", "subcountry": "Chhattisgarh"}, "Mah\u0101r\u0101ganj": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mah\u0101r\u0101jgani": {"country": "India", "subcountry": "Bihar"}, "Maham": {"country": "India", "subcountry": "Haryana"}, "Mah\u0101lingpur": {"country": "India", "subcountry": "Karnataka"}, "Mah\u0101d": {"country": "India", "subcountry": "Maharashtra"}, "Maghar": {"country": "India", "subcountry": "Uttar Pradesh"}, "M\u0101gadi": {"country": "India", "subcountry": "Karnataka"}, "Madur\u0101ntakam": {"country": "India", "subcountry": "Tamil Nadu"}, "Madurai": {"country": "India", "subcountry": "Tamil Nadu"}, "Madukk\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Madukkarai": {"country": "India", "subcountry": "Tamil Nadu"}, "Chennai": {"country": "India", "subcountry": "Tamil Nadu"}, "Madikeri": {"country": "India", "subcountry": "Karnataka"}, "Madhyamgram": {"country": "India", "subcountry": "West Bengal"}, "Madhupur": {"country": "India", "subcountry": "Jharkhand"}, "Maddagiri": {"country": "India", "subcountry": "Karnataka"}, "Madhubani": {"country": "India", "subcountry": "Bihar"}, "Madhipura": {"country": "India", "subcountry": "Bihar"}, "Madgaon": {"country": "India", "subcountry": "Goa"}, "Madd\u016br": {"country": "India", "subcountry": "Karnataka"}, "Madanapalle": {"country": "India", "subcountry": "Andhra Pradesh"}, "Machil\u012bpatnam": {"country": "India", "subcountry": "Andhra Pradesh"}, "Machhl\u012bshahr": {"country": "India", "subcountry": "Uttar Pradesh"}, "M\u0101chh\u012bw\u0101ra": {"country": "India", "subcountry": "Punjab"}, "M\u0101cherla": {"country": "India", "subcountry": "Andhra Pradesh"}, "Lunglei": {"country": "India", "subcountry": "Mizoram"}, "L\u016bn\u0101v\u0101da": {"country": "India", "subcountry": "Gujarat"}, "Ludhi\u0101na": {"country": "India", "subcountry": "Punjab"}, "Lucknow": {"country": "India", "subcountry": "Uttar Pradesh"}, "Luckeesarai": {"country": "India", "subcountry": "Bihar"}, "Losal": {"country": "India", "subcountry": "Rajasthan"}, "Loni": {"country": "India", "subcountry": "Uttar Pradesh"}, "Lonavla": {"country": "India", "subcountry": "Maharashtra"}, "Lon\u0101r": {"country": "India", "subcountry": "Maharashtra"}, "Loh\u0101rdaga": {"country": "India", "subcountry": "Jharkhand"}, "Lingsug\u016br": {"country": "India", "subcountry": "Karnataka"}, "Limbdi": {"country": "India", "subcountry": "Gujarat"}, "Leteri": {"country": "India", "subcountry": "Madhya Pradesh"}, "Leh": {"country": "India", "subcountry": "Kashmir"}, "L\u0101war Kh\u0101s": {"country": "India", "subcountry": "Uttar Pradesh"}, "Laungow\u0101l": {"country": "India", "subcountry": "Punjab"}, "Latur": {"country": "India", "subcountry": "Maharashtra"}, "L\u0101thi": {"country": "India", "subcountry": "Gujarat"}, "L\u0101teh\u0101r": {"country": "India", "subcountry": "Jharkhand"}, "Lar": {"country": "India", "subcountry": "Uttar Pradesh"}, "L\u0101lsot": {"country": "India", "subcountry": "Rajasthan"}, "L\u0101lpur": {"country": "India", "subcountry": "Gujarat"}, "Lalitpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Lalgudi": {"country": "India", "subcountry": "Tamil Nadu"}, "L\u0101lgola": {"country": "India", "subcountry": "West Bengal"}, "L\u0101lganj": {"country": "India", "subcountry": "Bihar"}, "Lakshmeshwar": {"country": "India", "subcountry": "Karnataka"}, "Laksar": {"country": "India", "subcountry": "Uttarakhand"}, "Lakhyabad": {"country": "India", "subcountry": "West Bengal"}, "Lakhn\u0101don": {"country": "India", "subcountry": "Madhya Pradesh"}, "Lakh\u012bmpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "L\u0101kheri": {"country": "India", "subcountry": "Rajasthan"}, "L\u0101harpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Lah\u0101r": {"country": "India", "subcountry": "Madhya Pradesh"}, "L\u0101dwa": {"country": "India", "subcountry": "Haryana"}, "L\u0101dn\u016bn": {"country": "India", "subcountry": "Rajasthan"}, "Lachhmangarh S\u012bkar": {"country": "India", "subcountry": "Rajasthan"}, "Kuzhithurai": {"country": "India", "subcountry": "Tamil Nadu"}, "Koothanallur": {"country": "India", "subcountry": "Tamil Nadu"}, "Kuttampuzha": {"country": "India", "subcountry": "Kerala"}, "Kutiy\u0101na": {"country": "India", "subcountry": "Gujarat"}, "Kutiatodu": {"country": "India", "subcountry": "Kerala"}, "Kushtagi": {"country": "India", "subcountry": "Karnataka"}, "Kurinjipp\u0101di": {"country": "India", "subcountry": "Tamil Nadu"}, "Kurduv\u0101di": {"country": "India", "subcountry": "Maharashtra"}, "Kurandv\u0101d": {"country": "India", "subcountry": "Maharashtra"}, "Kuppam": {"country": "India", "subcountry": "Andhra Pradesh"}, "Kunnamkulam": {"country": "India", "subcountry": "Kerala"}, "Kunnamangalam": {"country": "India", "subcountry": "Kerala"}, "Kunigal": {"country": "India", "subcountry": "Karnataka"}, "Kundla": {"country": "India", "subcountry": "Gujarat"}, "Kundgol": {"country": "India", "subcountry": "Karnataka"}, "Kundarkhi": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kunda": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kumta": {"country": "India", "subcountry": "Karnataka"}, "K\u016bmher": {"country": "India", "subcountry": "Rajasthan"}, "Kumh\u0101ri": {"country": "India", "subcountry": "Chhattisgarh"}, "Kumbhr\u0101j": {"country": "India", "subcountry": "Madhya Pradesh"}, "Kumbakonam": {"country": "India", "subcountry": "Tamil Nadu"}, "Kulu": {"country": "Turkey", "subcountry": "Konya"}, "Kulti": {"country": "India", "subcountry": "West Bengal"}, "Kulpah\u0101r": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kulittalai": {"country": "India", "subcountry": "Tamil Nadu"}, "Kulgam": {"country": "India", "subcountry": "Kashmir"}, "Kukshi": {"country": "India", "subcountry": "Madhya Pradesh"}, "K\u016bkatpalli": {"country": "India", "subcountry": "Telangana"}, "Kuju": {"country": "India", "subcountry": "Jharkhand"}, "K\u016bdligi": {"country": "India", "subcountry": "Karnataka"}, "Kudachi": {"country": "India", "subcountry": "Karnataka"}, "Kuchera": {"country": "India", "subcountry": "Rajasthan"}, "Kuch\u0101man": {"country": "India", "subcountry": "Rajasthan"}, "Kuchaiburi": {"country": "India", "subcountry": "Odisha"}, "Krishnar\u0101jpet": {"country": "India", "subcountry": "Karnataka"}, "Krishnanagar": {"country": "India", "subcountry": "West Bengal"}, "Krishnagiri": {"country": "India", "subcountry": "Tamil Nadu"}, "Kozhikode": {"country": "India", "subcountry": "Kerala"}, "Koynanagar": {"country": "India", "subcountry": "Maharashtra"}, "Kovv\u016br": {"country": "India", "subcountry": "Andhra Pradesh"}, "Kov\u016br": {"country": "India", "subcountry": "Andhra Pradesh"}, "Kovilpatti": {"country": "India", "subcountry": "Tamil Nadu"}, "Kott\u016bru": {"country": "India", "subcountry": "Karnataka"}, "Kottayam": {"country": "India", "subcountry": "Kerala"}, "Kottag\u016bdem": {"country": "India", "subcountry": "Telangana"}, "Kotputli": {"country": "India", "subcountry": "Rajasthan"}, "Kotma": {"country": "India", "subcountry": "Madhya Pradesh"}, "Kotdw\u0101ra": {"country": "India", "subcountry": "Uttarakhand"}, "Kotap\u0101rh": {"country": "India", "subcountry": "Chhattisgarh"}, "Kotamangalam": {"country": "India", "subcountry": "Kerala"}, "Kotagiri": {"country": "India", "subcountry": "Tamil Nadu"}, "Kota": {"country": "India", "subcountry": "Rajasthan"}, "Kot\u0101": {"country": "India", "subcountry": "Chhattisgarh"}, "Kosigi": {"country": "India", "subcountry": "Andhra Pradesh"}, "Kosi": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kosamba": {"country": "India", "subcountry": "Gujarat"}, "Korwai": {"country": "India", "subcountry": "Madhya Pradesh"}, "Koregaon": {"country": "India", "subcountry": "Maharashtra"}, "Korba": {"country": "Tunisia", "subcountry": "N\u0101bul"}, "Koratla": {"country": "India", "subcountry": "Telangana"}, "Kor\u0101put": {"country": "India", "subcountry": "Odisha"}, "Koppal": {"country": "India", "subcountry": "Karnataka"}, "Kopargaon": {"country": "India", "subcountry": "Maharashtra"}, "Kop\u0101ganj": {"country": "India", "subcountry": "Uttar Pradesh"}, "Konn\u016br": {"country": "India", "subcountry": "Karnataka"}, "Konnagar": {"country": "India", "subcountry": "West Bengal"}, "Kondapalle": {"country": "India", "subcountry": "Andhra Pradesh"}, "Kondagaon": {"country": "India", "subcountry": "Chhattisgarh"}, "Konch": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kon\u0101rka": {"country": "India", "subcountry": "Odisha"}, "Kolasib": {"country": "India", "subcountry": "Mizoram"}, "Kolleg\u0101l": {"country": "India", "subcountry": "Karnataka"}, "Kolh\u0101pur": {"country": "India", "subcountry": "Maharashtra"}, "Kol\u0101ras": {"country": "India", "subcountry": "Madhya Pradesh"}, "Kol\u0101r": {"country": "India", "subcountry": "Karnataka"}, "Colachel": {"country": "India", "subcountry": "Tamil Nadu"}, "Kokrajhar": {"country": "India", "subcountry": "Assam"}, "Kohima": {"country": "India", "subcountry": "Nagaland"}, "Koelw\u0101r": {"country": "India", "subcountry": "Bihar"}, "Kodungall\u016br": {"country": "India", "subcountry": "Kerala"}, "Kodoli": {"country": "India", "subcountry": "Maharashtra"}, "Kod\u012bnar": {"country": "India", "subcountry": "Gujarat"}, "Kodarm\u0101": {"country": "India", "subcountry": "Jharkhand"}, "Kod\u0101r": {"country": "India", "subcountry": "Telangana"}, "Kodaik\u0101n\u0101l": {"country": "India", "subcountry": "Tamil Nadu"}, "Koch Bih\u0101r": {"country": "India", "subcountry": "West Bengal"}, "Ko\u0101th": {"country": "India", "subcountry": "Bihar"}, "Kizhake Ch\u0101lakudi": {"country": "India", "subcountry": "Kerala"}, "Kithor": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kishtw\u0101r": {"country": "India", "subcountry": "Kashmir"}, "Kishangarh": {"country": "India", "subcountry": "Rajasthan"}, "Kishanganj": {"country": "India", "subcountry": "Bihar"}, "K\u012bratpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kiraoli": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kinwat": {"country": "India", "subcountry": "Maharashtra"}, "Kichha": {"country": "India", "subcountry": "Uttarakhand"}, "Kh\u016bt\u0101r": {"country": "India", "subcountry": "Uttar Pradesh"}, "Khurja": {"country": "India", "subcountry": "Uttar Pradesh"}, "Khurda": {"country": "India", "subcountry": "Odisha"}, "Khurai": {"country": "India", "subcountry": "Madhya Pradesh"}, "Khunti": {"country": "India", "subcountry": "Jharkhand"}, "Khuld\u0101b\u0101d": {"country": "India", "subcountry": "Maharashtra"}, "Khowai": {"country": "India", "subcountry": "Tripura"}, "Khopoli": {"country": "India", "subcountry": "Maharashtra"}, "Khirkiy\u0101n": {"country": "India", "subcountry": "Madhya Pradesh"}, "Khilchipur": {"country": "India", "subcountry": "Madhya Pradesh"}, "Khetri": {"country": "India", "subcountry": "Rajasthan"}, "Khetia": {"country": "India", "subcountry": "Maharashtra"}, "Kheri": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kher\u0101lu": {"country": "India", "subcountry": "Gujarat"}, "Khekra": {"country": "India", "subcountry": "Uttar Pradesh"}, "Khed Brahma": {"country": "India", "subcountry": "Gujarat"}, "Kheda": {"country": "India", "subcountry": "Gujarat"}, "Kh\u0101tra": {"country": "India", "subcountry": "West Bengal"}, "Khat\u012bma": {"country": "India", "subcountry": "Uttarakhand"}, "Kh\u0101tegaon": {"country": "India", "subcountry": "Madhya Pradesh"}, "Khatauli": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kh\u0101rupatia": {"country": "India", "subcountry": "Assam"}, "Kharsia": {"country": "India", "subcountry": "Chhattisgarh"}, "Kharkhauda": {"country": "India", "subcountry": "Haryana"}, "Khargone": {"country": "India", "subcountry": "Madhya Pradesh"}, "Khardah": {"country": "India", "subcountry": "West Bengal"}, "Kharar": {"country": "India", "subcountry": "Punjab"}, "Kharakvasla": {"country": "India", "subcountry": "Maharashtra"}, "Kharagpur": {"country": "India", "subcountry": "West Bengal"}, "Kh\u0101pa": {"country": "India", "subcountry": "Maharashtra"}, "Khanna": {"country": "India", "subcountry": "Punjab"}, "Khandwa": {"country": "India", "subcountry": "Madhya Pradesh"}, "Khandela": {"country": "India", "subcountry": "Rajasthan"}, "Kh\u0101n\u0101pur": {"country": "India", "subcountry": "Karnataka"}, "Khammam": {"country": "India", "subcountry": "Telangana"}, "Kh\u0101mgaon": {"country": "India", "subcountry": "Maharashtra"}, "Khambh\u0101t": {"country": "India", "subcountry": "Gujarat"}, "Khambh\u0101liya": {"country": "India", "subcountry": "Gujarat"}, "Khamaria": {"country": "India", "subcountry": "Madhya Pradesh"}, "Khal\u012bl\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Khajur\u0101ho": {"country": "India", "subcountry": "Madhya Pradesh"}, "Khair\u0101garh": {"country": "India", "subcountry": "Chhattisgarh"}, "Khair\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Khair": {"country": "India", "subcountry": "Uttar Pradesh"}, "Khagaul": {"country": "India", "subcountry": "Bihar"}, "Khagaria": {"country": "India", "subcountry": "Bihar"}, "Khadki": {"country": "India", "subcountry": "Maharashtra"}, "Khada": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kh\u0101chrod": {"country": "India", "subcountry": "Madhya Pradesh"}, "Kesinga": {"country": "India", "subcountry": "Odisha"}, "Keshorai P\u0101tan": {"country": "India", "subcountry": "Rajasthan"}, "Keshod": {"country": "India", "subcountry": "Gujarat"}, "Ker\u016br": {"country": "India", "subcountry": "Karnataka"}, "Kendr\u0101parha": {"country": "India", "subcountry": "Odisha"}, "Kenda": {"country": "India", "subcountry": "West Bengal"}, "Kemr\u012b": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kekri": {"country": "India", "subcountry": "Rajasthan"}, "K\u0101yankulam": {"country": "India", "subcountry": "Kerala"}, "Kayalpattinam": {"country": "India", "subcountry": "Tamil Nadu"}, "Kawardha": {"country": "India", "subcountry": "Chhattisgarh"}, "K\u0101vali": {"country": "India", "subcountry": "Andhra Pradesh"}, "Kattiv\u0101kkam": {"country": "India", "subcountry": "Tamil Nadu"}, "Kattanam": {"country": "India", "subcountry": "Kerala"}, "K\u0101tr\u0101s": {"country": "India", "subcountry": "Jharkhand"}, "K\u0101tp\u0101di": {"country": "India", "subcountry": "Tamil Nadu"}, "K\u0101toya": {"country": "India", "subcountry": "West Bengal"}, "K\u0101tol": {"country": "India", "subcountry": "Maharashtra"}, "Katihar": {"country": "India", "subcountry": "Bihar"}, "Kathua": {"country": "India", "subcountry": "Kashmir"}, "K\u0101thor": {"country": "India", "subcountry": "Gujarat"}, "Katghora": {"country": "India", "subcountry": "Chhattisgarh"}, "Katangi": {"country": "India", "subcountry": "Madhya Pradesh"}, "Kasr\u0101wad": {"country": "India", "subcountry": "Madhya Pradesh"}, "Kashipur": {"country": "India", "subcountry": "Uttarakhand"}, "K\u0101sganj": {"country": "India", "subcountry": "Uttar Pradesh"}, "K\u0101saragod": {"country": "India", "subcountry": "Kerala"}, "Karwar": {"country": "India", "subcountry": "Karnataka"}, "Karur": {"country": "India", "subcountry": "Tamil Nadu"}, "Kart\u0101rpur": {"country": "India", "subcountry": "Punjab"}, "K\u0101rsiy\u0101ng": {"country": "India", "subcountry": "West Bengal"}, "Karol B\u0101gh": {"country": "India", "subcountry": "NCT"}, "Karn\u0101l": {"country": "India", "subcountry": "Haryana"}, "Karm\u0101la": {"country": "India", "subcountry": "Maharashtra"}, "K\u0101rkala": {"country": "India", "subcountry": "Karnataka"}, "Karjat": {"country": "India", "subcountry": "Maharashtra"}, "Kar\u012bmnagar": {"country": "India", "subcountry": "Telangana"}, "Kar\u012bmganj": {"country": "India", "subcountry": "Assam"}, "Karhal": {"country": "India", "subcountry": "Uttar Pradesh"}, "Karera": {"country": "India", "subcountry": "Madhya Pradesh"}, "Kareli": {"country": "India", "subcountry": "Madhya Pradesh"}, "Karauli": {"country": "India", "subcountry": "Rajasthan"}, "K\u0101ranja": {"country": "India", "subcountry": "Maharashtra"}, "Karamsad": {"country": "India", "subcountry": "Gujarat"}, "K\u0101ramadai": {"country": "India", "subcountry": "Tamil Nadu"}, "K\u0101raikkudi": {"country": "India", "subcountry": "Tamil Nadu"}, "K\u0101raik\u0101l": {"country": "India", "subcountry": "Pondicherry"}, "Kar\u0101d": {"country": "India", "subcountry": "Maharashtra"}, "Kap\u016brthala": {"country": "India", "subcountry": "Punjab"}, "K\u0101pren": {"country": "India", "subcountry": "Rajasthan"}, "Kapadvanj": {"country": "India", "subcountry": "Gujarat"}, "K\u0101nth": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kant\u0101b\u0101nji": {"country": "India", "subcountry": "Odisha"}, "K\u0101nt": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kanpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kannod": {"country": "India", "subcountry": "Madhya Pradesh"}, "Kanniy\u0101kum\u0101ri": {"country": "India", "subcountry": "Tamil Nadu"}, "Kannauj": {"country": "India", "subcountry": "Uttar Pradesh"}, "K\u0101nnang\u0101d": {"country": "India", "subcountry": "Kerala"}, "Kannad": {"country": "India", "subcountry": "Maharashtra"}, "K\u0101nker": {"country": "India", "subcountry": "Chhattisgarh"}, "K\u0101nke": {"country": "India", "subcountry": "Jharkhand"}, "Kankauli": {"country": "India", "subcountry": "Maharashtra"}, "Kanigiri": {"country": "India", "subcountry": "Andhra Pradesh"}, "Kangayam": {"country": "India", "subcountry": "Tamil Nadu"}, "Kanduk\u016br": {"country": "India", "subcountry": "Andhra Pradesh"}, "K\u0101ndla": {"country": "India", "subcountry": "Gujarat"}, "K\u0101ndi": {"country": "India", "subcountry": "West Bengal"}, "K\u0101ndhla": {"country": "India", "subcountry": "Uttar Pradesh"}, "K\u0101nchipuram": {"country": "India", "subcountry": "Tamil Nadu"}, "Kanakapura": {"country": "India", "subcountry": "Karnataka"}, "K\u0101mthi": {"country": "India", "subcountry": "Maharashtra"}, "Kampli": {"country": "India", "subcountry": "Karnataka"}, "Cumbum": {"country": "India", "subcountry": "Andhra Pradesh"}, "K\u0101m\u0101rh\u0101ti": {"country": "India", "subcountry": "West Bengal"}, "K\u0101m\u0101reddi": {"country": "India", "subcountry": "Telangana"}, "K\u0101man": {"country": "India", "subcountry": "Rajasthan"}, "Kamalganj": {"country": "India", "subcountry": "Uttar Pradesh"}, "K\u0101m\u0101khy\u0101nagar": {"country": "India", "subcountry": "Odisha"}, "Kalyani": {"country": "India", "subcountry": "West Bengal"}, "Kaly\u0101n": {"country": "India", "subcountry": "Maharashtra"}, "Kalugumalai": {"country": "India", "subcountry": "Tamil Nadu"}, "K\u0101lpi": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kalpetta": {"country": "India", "subcountry": "Kerala"}, "K\u0101lol": {"country": "India", "subcountry": "Gujarat"}, "K\u0101lna": {"country": "India", "subcountry": "West Bengal"}, "Kalmeshwar": {"country": "India", "subcountry": "Maharashtra"}, "Kallidaikurichchi": {"country": "India", "subcountry": "Tamil Nadu"}, "Kallakkurichchi": {"country": "India", "subcountry": "Tamil Nadu"}, "K\u0101lka": {"country": "India", "subcountry": "Himachal Pradesh"}, "K\u0101liy\u0101ganj": {"country": "India", "subcountry": "West Bengal"}, "K\u0101limpong": {"country": "India", "subcountry": "West Bengal"}, "Kalghatgi": {"country": "India", "subcountry": "Karnataka"}, "K\u0101l\u0101vad": {"country": "India", "subcountry": "Gujarat"}, "K\u0101l\u0101nw\u0101li": {"country": "India", "subcountry": "Haryana"}, "Kal\u0101naur": {"country": "India", "subcountry": "Haryana"}, "Kalamn\u016bri": {"country": "India", "subcountry": "Maharashtra"}, "Kalamb": {"country": "India", "subcountry": "Maharashtra"}, "Kalakk\u0101du": {"country": "India", "subcountry": "Tamil Nadu"}, "Kakr\u0101la": {"country": "India", "subcountry": "Uttar Pradesh"}, "K\u0101kori": {"country": "India", "subcountry": "Uttar Pradesh"}, "K\u0101kin\u0101da": {"country": "India", "subcountry": "Andhra Pradesh"}, "Kakching": {"country": "India", "subcountry": "Manipur"}, "Kaithal": {"country": "India", "subcountry": "Haryana"}, "Kair\u0101na": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kaimori": {"country": "India", "subcountry": "Madhya Pradesh"}, "Kaimganj": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kail\u0101shahar": {"country": "India", "subcountry": "Tripura"}, "Kail\u0101ras": {"country": "India", "subcountry": "Madhya Pradesh"}, "Kaikal\u016br": {"country": "India", "subcountry": "Andhra Pradesh"}, "K\u0101gal": {"country": "India", "subcountry": "Maharashtra"}, "Kad\u016br": {"country": "India", "subcountry": "Karnataka"}, "Kadod": {"country": "India", "subcountry": "Gujarat"}, "Kadiri": {"country": "India", "subcountry": "Andhra Pradesh"}, "Kadi": {"country": "India", "subcountry": "Gujarat"}, "Kadayanallur": {"country": "India", "subcountry": "Tamil Nadu"}, "K\u0101nchr\u0101p\u0101ra": {"country": "India", "subcountry": "West Bengal"}, "Kachhwa": {"country": "India", "subcountry": "Uttar Pradesh"}, "Kabr\u0101i": {"country": "India", "subcountry": "Uttar Pradesh"}, "Junnar": {"country": "India", "subcountry": "Maharashtra"}, "J\u016bn\u0101garh": {"country": "India", "subcountry": "Chhattisgarh"}, "J\u016bn\u0101gadh": {"country": "India", "subcountry": "Gujarat"}, "Jumri Tilaiy\u0101": {"country": "India", "subcountry": "Jharkhand"}, "Jalandhar": {"country": "India", "subcountry": "Punjab"}, "Jugs\u0101lai": {"country": "India", "subcountry": "Jharkhand"}, "Jorh\u0101t": {"country": "India", "subcountry": "Assam"}, "Jora": {"country": "India", "subcountry": "Madhya Pradesh"}, "Jol\u0101rpettai": {"country": "India", "subcountry": "Tamil Nadu"}, "Jogbani": {"country": "India", "subcountry": "Bihar"}, "Jodiya Bandar": {"country": "India", "subcountry": "Gujarat"}, "Jodhpur": {"country": "India", "subcountry": "Gujarat"}, "Jint\u016br": {"country": "India", "subcountry": "Maharashtra"}, "J\u012bnd": {"country": "India", "subcountry": "Haryana"}, "Jh\u016bsi": {"country": "India", "subcountry": "Uttar Pradesh"}, "Jhunjhun\u016bn": {"country": "India", "subcountry": "Rajasthan"}, "Jhinjh\u0101na": {"country": "India", "subcountry": "Uttar Pradesh"}, "Jh\u012bnjhak": {"country": "India", "subcountry": "Uttar Pradesh"}, "Jh\u0101rsuguda": {"country": "India", "subcountry": "Odisha"}, "Jharia": {"country": "India", "subcountry": "Jharkhand"}, "Jh\u0101rgr\u0101m": {"country": "India", "subcountry": "West Bengal"}, "Jh\u0101nsi": {"country": "India", "subcountry": "Uttar Pradesh"}, "Jhanjh\u0101rpur": {"country": "India", "subcountry": "Bihar"}, "Jh\u0101lu": {"country": "India", "subcountry": "Uttar Pradesh"}, "Jh\u0101lrap\u0101tan": {"country": "India", "subcountry": "Rajasthan"}, "Jhalida": {"country": "India", "subcountry": "West Bengal"}, "Jh\u0101l\u0101w\u0101r": {"country": "India", "subcountry": "Rajasthan"}, "Jhajjar": {"country": "India", "subcountry": "Haryana"}, "Jh\u0101 Jh\u0101": {"country": "India", "subcountry": "Bihar"}, "Jh\u0101bua": {"country": "India", "subcountry": "Madhya Pradesh"}, "Jewar": {"country": "India", "subcountry": "Uttar Pradesh"}, "Jevargi": {"country": "India", "subcountry": "Karnataka"}, "Jetpur": {"country": "India", "subcountry": "Gujarat"}, "Jeypore": {"country": "India", "subcountry": "Odisha"}, "Jaynagar": {"country": "India", "subcountry": "Bihar"}, "Jaynagar-Majilpur": {"country": "India", "subcountry": "West Bengal"}, "Jayamkondacholapuram": {"country": "India", "subcountry": "Tamil Nadu"}, "J\u0101wad": {"country": "India", "subcountry": "Madhya Pradesh"}, "Jaunpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Jat\u0101ra": {"country": "India", "subcountry": "Madhya Pradesh"}, "Jatani": {"country": "India", "subcountry": "Odisha"}, "Jaswantnagar": {"country": "India", "subcountry": "Uttar Pradesh"}, "Jaspur": {"country": "India", "subcountry": "Uttarakhand"}, "Jasidih": {"country": "India", "subcountry": "Jharkhand"}, "Jashpurnagar": {"country": "India", "subcountry": "Chhattisgarh"}, "Jasdan": {"country": "India", "subcountry": "Gujarat"}, "Jarwal": {"country": "India", "subcountry": "Uttar Pradesh"}, "Jaor\u0101": {"country": "India", "subcountry": "Madhya Pradesh"}, "J\u0101nsath": {"country": "India", "subcountry": "Uttar Pradesh"}, "J\u0101njg\u012br": {"country": "India", "subcountry": "Chhattisgarh"}, "Jangipur": {"country": "India", "subcountry": "West Bengal"}, "Jangaon": {"country": "India", "subcountry": "Telangana"}, "Jandi\u0101la": {"country": "India", "subcountry": "Punjab"}, "J\u0101muria": {"country": "India", "subcountry": "West Bengal"}, "Jam\u016b\u012b": {"country": "India", "subcountry": "Bihar"}, "J\u0101mt\u0101ra": {"country": "India", "subcountry": "Jharkhand"}, "Jamshedpur": {"country": "India", "subcountry": "Jharkhand"}, "J\u0101mnagar": {"country": "India", "subcountry": "Gujarat"}, "Jammu": {"country": "India", "subcountry": "Kashmir"}, "Jammalamadugu": {"country": "India", "subcountry": "Andhra Pradesh"}, "Jamkhandi": {"country": "India", "subcountry": "Karnataka"}, "Jambusar": {"country": "India", "subcountry": "Gujarat"}, "J\u0101mai": {"country": "India", "subcountry": "Madhya Pradesh"}, "J\u0101madoba": {"country": "India", "subcountry": "Jharkhand"}, "Jalp\u0101iguri": {"country": "India", "subcountry": "West Bengal"}, "Jalor": {"country": "India", "subcountry": "Rajasthan"}, "J\u0101lna": {"country": "India", "subcountry": "Maharashtra"}, "Jalgaon Jamod": {"country": "India", "subcountry": "Maharashtra"}, "Jalgaon": {"country": "India", "subcountry": "Maharashtra"}, "Jaleshwar": {"country": "India", "subcountry": "Odisha"}, "Jalesar": {"country": "India", "subcountry": "Uttar Pradesh"}, "J\u0101laun": {"country": "India", "subcountry": "Uttar Pradesh"}, "Jal\u0101lpur": {"country": "Pakistan", "subcountry": "Punjab"}, "Jal\u0101l\u012b": {"country": "India", "subcountry": "Uttar Pradesh"}, "Jal\u0101l\u0101bad": {"country": "India", "subcountry": "Uttar Pradesh"}, "J\u0101jpur": {"country": "India", "subcountry": "Odisha"}, "Jaito": {"country": "India", "subcountry": "Punjab"}, "Jait\u0101ran": {"country": "India", "subcountry": "Rajasthan"}, "Jaisingpur": {"country": "India", "subcountry": "Maharashtra"}, "Jaisalmer": {"country": "India", "subcountry": "Rajasthan"}, "Jais": {"country": "India", "subcountry": "Uttar Pradesh"}, "Jaipur": {"country": "India", "subcountry": "Rajasthan"}, "Jah\u0101zpur": {"country": "India", "subcountry": "Rajasthan"}, "Jah\u0101ng\u012br\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Jah\u0101n\u0101b\u0101d": {"country": "India", "subcountry": "Bihar"}, "Jagti\u0101l": {"country": "India", "subcountry": "Telangana"}, "Jagraon": {"country": "India", "subcountry": "Punjab"}, "Jaggayyapeta": {"country": "India", "subcountry": "Andhra Pradesh"}, "Jagd\u012bspur": {"country": "India", "subcountry": "Bihar"}, "Jagd\u012bshpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Jagdalpur": {"country": "India", "subcountry": "Chhattisgarh"}, "Jagatsinghapur": {"country": "India", "subcountry": "Odisha"}, "Jagal\u016br": {"country": "India", "subcountry": "Karnataka"}, "Jag\u0101dhri": {"country": "India", "subcountry": "Haryana"}, "Jabalpur": {"country": "India", "subcountry": "Madhya Pradesh"}, "Itim\u0101dpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "It\u0101rsi": {"country": "India", "subcountry": "Madhya Pradesh"}, "It\u0101nagar": {"country": "India", "subcountry": "Arunachal Pradesh"}, "Isl\u0101mpur": {"country": "India", "subcountry": "Bihar"}, "Isl\u0101mnagar": {"country": "India", "subcountry": "Uttar Pradesh"}, "Irug\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Irinj\u0101lakuda": {"country": "India", "subcountry": "Kerala"}, "Iringal": {"country": "India", "subcountry": "Kerala"}, "Ingr\u0101j B\u0101z\u0101r": {"country": "India", "subcountry": "West Bengal"}, "Indri": {"country": "India", "subcountry": "Haryana"}, "Indore": {"country": "India", "subcountry": "Madhya Pradesh"}, "Indi": {"country": "India", "subcountry": "Karnataka"}, "Indergarh": {"country": "India", "subcountry": "Uttar Pradesh"}, "Ind\u0101pur": {"country": "India", "subcountry": "Maharashtra"}, "Imphal": {"country": "India", "subcountry": "Manipur"}, "Ilkal": {"country": "India", "subcountry": "Karnataka"}, "Igatpuri": {"country": "India", "subcountry": "Maharashtra"}, "Idappadi": {"country": "India", "subcountry": "Tamil Nadu"}, "Ichch\u0101puram": {"country": "India", "subcountry": "Andhra Pradesh"}, "Ichalkaranji": {"country": "India", "subcountry": "Maharashtra"}, "Hyderabad": {"country": "Pakistan", "subcountry": "Sindh"}, "Hadagalli": {"country": "India", "subcountry": "Karnataka"}, "Husain\u0101b\u0101d": {"country": "India", "subcountry": "Jharkhand"}, "Huns\u016br": {"country": "India", "subcountry": "Karnataka"}, "Hungund": {"country": "India", "subcountry": "Karnataka"}, "Hukeri": {"country": "India", "subcountry": "Karnataka"}, "Hugli": {"country": "India", "subcountry": "West Bengal"}, "Hubli": {"country": "India", "subcountry": "Karnataka"}, "Howli": {"country": "India", "subcountry": "Assam"}, "Hos\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Hospet": {"country": "India", "subcountry": "Karnataka"}, "Hoskote": {"country": "India", "subcountry": "Karnataka"}, "Hoshang\u0101b\u0101d": {"country": "India", "subcountry": "Madhya Pradesh"}, "Hosdurga": {"country": "India", "subcountry": "Karnataka"}, "Honn\u0101li": {"country": "India", "subcountry": "Karnataka"}, "Hon\u0101var": {"country": "India", "subcountry": "Karnataka"}, "Homn\u0101b\u0101d": {"country": "India", "subcountry": "Karnataka"}, "Hole Narsipur": {"country": "India", "subcountry": "Karnataka"}, "Holalkere": {"country": "India", "subcountry": "Karnataka"}, "Hoj\u0101i": {"country": "India", "subcountry": "Assam"}, "Hodal": {"country": "India", "subcountry": "Haryana"}, "Hisu\u0101": {"country": "India", "subcountry": "Bihar"}, "Hisar": {"country": "India", "subcountry": "Haryana"}, "Hiriy\u016br": {"country": "India", "subcountry": "Karnataka"}, "Hireker\u016br": {"country": "India", "subcountry": "Karnataka"}, "H\u012br\u0101kud": {"country": "India", "subcountry": "Odisha"}, "Hinjilikatu": {"country": "India", "subcountry": "Odisha"}, "Hingoli": {"country": "India", "subcountry": "Maharashtra"}, "Hingangh\u0101t": {"country": "India", "subcountry": "Maharashtra"}, "Hindupur": {"country": "India", "subcountry": "Andhra Pradesh"}, "Hindoria": {"country": "India", "subcountry": "Madhya Pradesh"}, "Hindaun": {"country": "India", "subcountry": "Rajasthan"}, "Himatnagar": {"country": "India", "subcountry": "Gujarat"}, "Hilsa": {"country": "India", "subcountry": "Bihar"}, "Haz\u0101r\u012bb\u0101g": {"country": "India", "subcountry": "Jharkhand"}, "H\u0101veri": {"country": "India", "subcountry": "Karnataka"}, "Hatta": {"country": "India", "subcountry": "Madhya Pradesh"}, "H\u0101thras": {"country": "India", "subcountry": "Uttar Pradesh"}, "Hastin\u0101pur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Hassan": {"country": "India", "subcountry": "Karnataka"}, "H\u0101sim\u0101ra": {"country": "India", "subcountry": "West Bengal"}, "Hasanpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Har\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Hars\u016bd": {"country": "India", "subcountry": "Madhya Pradesh"}, "Harpanahalli": {"country": "India", "subcountry": "Karnataka"}, "Harp\u0101lpur": {"country": "India", "subcountry": "Madhya Pradesh"}, "H\u0101rij": {"country": "India", "subcountry": "Gujarat"}, "Harihar": {"country": "India", "subcountry": "Karnataka"}, "Haridwar": {"country": "India", "subcountry": "Uttarakhand"}, "Hardo\u012b": {"country": "India", "subcountry": "Uttar Pradesh"}, "Harda Kh\u0101s": {"country": "India", "subcountry": "Madhya Pradesh"}, "H\u0101pur": {"country": "India", "subcountry": "Uttar Pradesh"}, "H\u0101ora": {"country": "India", "subcountry": "West Bengal"}, "Hanum\u0101ngarh": {"country": "India", "subcountry": "Rajasthan"}, "H\u0101nsi": {"country": "India", "subcountry": "Haryana"}, "H\u0101ngal": {"country": "India", "subcountry": "Karnataka"}, "Handi\u0101": {"country": "India", "subcountry": "Uttar Pradesh"}, "Ham\u012brpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Halvad": {"country": "India", "subcountry": "Gujarat"}, "H\u0101lol": {"country": "India", "subcountry": "Gujarat"}, "Haliyal": {"country": "India", "subcountry": "Karnataka"}, "H\u0101l\u012bsahar": {"country": "India", "subcountry": "West Bengal"}, "Haldwani": {"country": "India", "subcountry": "Uttarakhand"}, "Haldaur": {"country": "India", "subcountry": "Uttar Pradesh"}, "H\u0101jo": {"country": "India", "subcountry": "Assam"}, "H\u0101j\u012bpur": {"country": "India", "subcountry": "Bihar"}, "Hail\u0101k\u0101ndi": {"country": "India", "subcountry": "Assam"}, "H\u0101flong": {"country": "India", "subcountry": "Assam"}, "Hadg\u0101on": {"country": "India", "subcountry": "Maharashtra"}, "H\u0101bra": {"country": "India", "subcountry": "West Bengal"}, "Gwalior": {"country": "India", "subcountry": "Madhya Pradesh"}, "Guskhara": {"country": "India", "subcountry": "West Bengal"}, "Guruv\u0101y\u016br": {"country": "India", "subcountry": "Kerala"}, "Guru Har Sah\u0101i": {"country": "India", "subcountry": "Punjab"}, "Gursar\u0101i": {"country": "India", "subcountry": "Uttar Pradesh"}, "Gursah\u0101iganj": {"country": "India", "subcountry": "Uttar Pradesh"}, "Gurmatk\u0101l": {"country": "India", "subcountry": "Karnataka"}, "Gurgaon": {"country": "India", "subcountry": "Haryana"}, "Gunupur": {"country": "India", "subcountry": "Odisha"}, "Gunt\u016br": {"country": "India", "subcountry": "Andhra Pradesh"}, "Guntakal Junction": {"country": "India", "subcountry": "Andhra Pradesh"}, "Gunnaur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Gundlupet": {"country": "India", "subcountry": "Karnataka"}, "Guna": {"country": "India", "subcountry": "Madhya Pradesh"}, "Gummidipundi": {"country": "India", "subcountry": "Tamil Nadu"}, "Gumla": {"country": "India", "subcountry": "Chhattisgarh"}, "Gumia": {"country": "India", "subcountry": "Jharkhand"}, "Guledagudda": {"country": "India", "subcountry": "Karnataka"}, "Gulbarga": {"country": "India", "subcountry": "Karnataka"}, "Gul\u0101othi": {"country": "India", "subcountry": "Uttar Pradesh"}, "Gul\u0101bpura": {"country": "India", "subcountry": "Rajasthan"}, "G\u016bduv\u0101ncheri": {"country": "India", "subcountry": "Tamil Nadu"}, "G\u016bd\u016br": {"country": "India", "subcountry": "Andhra Pradesh"}, "Gudiyatham": {"country": "India", "subcountry": "Tamil Nadu"}, "Gudiv\u0101da": {"country": "India", "subcountry": "Andhra Pradesh"}, "Gudalur": {"country": "India", "subcountry": "Tamil Nadu"}, "Gubbi": {"country": "India", "subcountry": "Karnataka"}, "Goyerk\u0101ta": {"country": "India", "subcountry": "West Bengal"}, "Govardhan": {"country": "India", "subcountry": "Uttar Pradesh"}, "Gos\u0101ba": {"country": "India", "subcountry": "West Bengal"}, "Gorakhpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Gobichettipalayam": {"country": "India", "subcountry": "Tamil Nadu"}, "Gop\u0101lganj": {"country": "India", "subcountry": "Bihar"}, "Gondi\u0101": {"country": "India", "subcountry": "Maharashtra"}, "Gondal": {"country": "India", "subcountry": "Gujarat"}, "Gond\u0101 City": {"country": "India", "subcountry": "Uttar Pradesh"}, "Gomoh": {"country": "India", "subcountry": "Jharkhand"}, "Gola Gokarann\u0101th": {"country": "India", "subcountry": "Uttar Pradesh"}, "Gol\u0101gh\u0101t": {"country": "India", "subcountry": "Assam"}, "Gokarna": {"country": "India", "subcountry": "Karnataka"}, "Gokak": {"country": "India", "subcountry": "Karnataka"}, "Goh\u0101na": {"country": "India", "subcountry": "Haryana"}, "Gohadi": {"country": "India", "subcountry": "Madhya Pradesh"}, "Godhra": {"country": "India", "subcountry": "Gujarat"}, "Godda": {"country": "India", "subcountry": "Jharkhand"}, "Gobindpur": {"country": "India", "subcountry": "Jharkhand"}, "Gob\u0101rd\u0101nga": {"country": "India", "subcountry": "West Bengal"}, "Go\u0101lp\u0101ra": {"country": "India", "subcountry": "Assam"}, "Gir\u012bd\u012bh": {"country": "India", "subcountry": "Jharkhand"}, "Gingee": {"country": "India", "subcountry": "Tamil Nadu"}, "Giddarb\u0101ha": {"country": "India", "subcountry": "Punjab"}, "Giddal\u016br": {"country": "India", "subcountry": "Andhra Pradesh"}, "Ghugus": {"country": "India", "subcountry": "Maharashtra"}, "Ghoti Budrukh": {"country": "India", "subcountry": "Maharashtra"}, "Ghos\u012b": {"country": "India", "subcountry": "Uttar Pradesh"}, "Ghaz\u012bpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Gh\u0101zi\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Gh\u0101ts\u012bla": {"country": "India", "subcountry": "Jharkhand"}, "Gh\u0101tanji": {"country": "India", "subcountry": "Maharashtra"}, "Gh\u0101tampur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Gh\u0101t\u0101l": {"country": "India", "subcountry": "West Bengal"}, "Gharaunda": {"country": "India", "subcountry": "Haryana"}, "Gevrai": {"country": "India", "subcountry": "Maharashtra"}, "Gaya": {"country": "Nigeria", "subcountry": "Kano"}, "Gauripur": {"country": "India", "subcountry": "Assam"}, "Goribidn\u016br": {"country": "India", "subcountry": "Karnataka"}, "Guwahati": {"country": "India", "subcountry": "Assam"}, "Garhwa": {"country": "India", "subcountry": "Jharkhand"}, "Garui": {"country": "India", "subcountry": "West Bengal"}, "Gariadhar": {"country": "India", "subcountry": "Gujarat"}, "Garhshankar": {"country": "India", "subcountry": "Punjab"}, "Garhmuktesar": {"country": "India", "subcountry": "Uttar Pradesh"}, "Garh\u0101kota": {"country": "India", "subcountry": "Madhya Pradesh"}, "Gannavaram": {"country": "India", "subcountry": "Andhra Pradesh"}, "Gangtok": {"country": "India", "subcountry": "Sikkim"}, "Gangolli": {"country": "India", "subcountry": "Karnataka"}, "Gangoh": {"country": "India", "subcountry": "Uttar Pradesh"}, "Gang\u0101wati": {"country": "India", "subcountry": "Karnataka"}, "Gang\u0101r\u0101mpur": {"country": "India", "subcountry": "West Bengal"}, "Gang\u0101pur": {"country": "India", "subcountry": "Maharashtra"}, "Gang\u0101nagar": {"country": "India", "subcountry": "Rajasthan"}, "Gang\u0101kher": {"country": "India", "subcountry": "Maharashtra"}, "Ghandinagar": {"country": "India", "subcountry": "Gujarat"}, "G\u0101ndh\u012bdh\u0101m": {"country": "India", "subcountry": "Gujarat"}, "Gandevi": {"country": "India", "subcountry": "Gujarat"}, "G\u0101ndarbal": {"country": "India", "subcountry": "Kashmir"}, "Gajraula": {"country": "India", "subcountry": "Uttar Pradesh"}, "Gajendragarh": {"country": "India", "subcountry": "Karnataka"}, "Gadw\u0101l": {"country": "India", "subcountry": "Telangana"}, "Gadhinglaj": {"country": "India", "subcountry": "Maharashtra"}, "Gadhada": {"country": "India", "subcountry": "Gujarat"}, "G\u0101darw\u0101ra": {"country": "India", "subcountry": "Madhya Pradesh"}, "Gadag": {"country": "India", "subcountry": "Karnataka"}, "Fort Gloster": {"country": "India", "subcountry": "West Bengal"}, "Forbesganj": {"country": "India", "subcountry": "Bihar"}, "F\u012brozpur Jhirka": {"country": "India", "subcountry": "Haryana"}, "Ferozepore": {"country": "India", "subcountry": "Punjab"}, "F\u012broz\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Ferokh": {"country": "India", "subcountry": "Kerala"}, "F\u0101zilka": {"country": "India", "subcountry": "Punjab"}, "Fatwa": {"country": "India", "subcountry": "Bihar"}, "Fatehpur S\u012bkri": {"country": "India", "subcountry": "Uttar Pradesh"}, "Fatehpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Fatehgarh Ch\u016bri\u0101n": {"country": "India", "subcountry": "Punjab"}, "Fatehganj West": {"country": "India", "subcountry": "Uttar Pradesh"}, "Fateh\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Farrukhnagar": {"country": "India", "subcountry": "Telangana"}, "Farrukh\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Far\u012bdkot": {"country": "India", "subcountry": "Punjab"}, "Far\u012bd\u0101b\u0101d": {"country": "India", "subcountry": "Haryana"}, "Farakka": {"country": "India", "subcountry": "West Bengal"}, "F\u0101l\u0101k\u0101ta": {"country": "India", "subcountry": "West Bengal"}, "Faizpur": {"country": "India", "subcountry": "Maharashtra"}, "Fyz\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Et\u0101wah": {"country": "India", "subcountry": "Uttar Pradesh"}, "Erraguntla": {"country": "India", "subcountry": "Andhra Pradesh"}, "Erode": {"country": "India", "subcountry": "Tamil Nadu"}, "Er\u0101ttupetta": {"country": "India", "subcountry": "Kerala"}, "Erandol": {"country": "India", "subcountry": "Maharashtra"}, "Emmigan\u016br": {"country": "India", "subcountry": "Andhra Pradesh"}, "Ellore": {"country": "India", "subcountry": "Andhra Pradesh"}, "El\u016br": {"country": "India", "subcountry": "Kerala"}, "Ellenabad": {"country": "India", "subcountry": "Haryana"}, "Elamanchili": {"country": "India", "subcountry": "Andhra Pradesh"}, "Egra": {"country": "India", "subcountry": "West Bengal"}, "Dw\u0101rka": {"country": "India", "subcountry": "Gujarat"}, "Durgapur": {"country": "India", "subcountry": "West Bengal"}, "Durg\u0101pur": {"country": "India", "subcountry": "Maharashtra"}, "Durg": {"country": "India", "subcountry": "Chhattisgarh"}, "D\u016bngarpur": {"country": "India", "subcountry": "Rajasthan"}, "Ganj Dundw\u0101ra": {"country": "India", "subcountry": "Uttar Pradesh"}, "Dumraon": {"country": "India", "subcountry": "Bihar"}, "Dumra": {"country": "India", "subcountry": "Bihar"}, "Dumka": {"country": "India", "subcountry": "Jharkhand"}, "Dum Duma": {"country": "India", "subcountry": "Assam"}, "Dam Dam": {"country": "India", "subcountry": "West Bengal"}, "Duli\u0101gaon": {"country": "India", "subcountry": "Assam"}, "Dugda": {"country": "India", "subcountry": "Jharkhand"}, "Dubr\u0101jpur": {"country": "India", "subcountry": "West Bengal"}, "Dornakal": {"country": "India", "subcountry": "Telangana"}, "Dor\u0101ha": {"country": "India", "subcountry": "Punjab"}, "Dongargarh": {"country": "India", "subcountry": "Chhattisgarh"}, "Dondaicha": {"country": "India", "subcountry": "Maharashtra"}, "Dombivli": {"country": "India", "subcountry": "Maharashtra"}, "Dod Ball\u0101pur": {"country": "India", "subcountry": "Karnataka"}, "Doda": {"country": "India", "subcountry": "Kashmir"}, "Diu": {"country": "India", "subcountry": "Daman and Diu"}, "D\u012bsa": {"country": "India", "subcountry": "Gujarat"}, "Diphu": {"country": "India", "subcountry": "Assam"}, "D\u012bnh\u0101ta": {"country": "India", "subcountry": "West Bengal"}, "Dindori": {"country": "India", "subcountry": "Madhya Pradesh"}, "Dindigul": {"country": "India", "subcountry": "Tamil Nadu"}, "D\u012bn\u0101nagar": {"country": "India", "subcountry": "Punjab"}, "Dim\u0101pur": {"country": "India", "subcountry": "Nagaland"}, "Digras": {"country": "India", "subcountry": "Maharashtra"}, "D\u012bgl\u016br": {"country": "India", "subcountry": "Maharashtra"}, "Dighw\u0101ra": {"country": "India", "subcountry": "Bihar"}, "Digboi": {"country": "India", "subcountry": "Assam"}, "D\u012bg": {"country": "India", "subcountry": "Rajasthan"}, "D\u012bdw\u0101na": {"country": "India", "subcountry": "Rajasthan"}, "Dicholi": {"country": "India", "subcountry": "Goa"}, "Dibrugarh": {"country": "India", "subcountry": "Assam"}, "Dibai": {"country": "India", "subcountry": "Uttar Pradesh"}, "Diamond Harbour": {"country": "India", "subcountry": "West Bengal"}, "Dh\u016bri": {"country": "India", "subcountry": "Punjab"}, "Dhupg\u0101ri": {"country": "India", "subcountry": "West Bengal"}, "Dhuli\u0101n": {"country": "India", "subcountry": "West Bengal"}, "Dh\u016blia": {"country": "India", "subcountry": "Maharashtra"}, "Dhuburi": {"country": "India", "subcountry": "Assam"}, "Dhrol": {"country": "India", "subcountry": "Gujarat"}, "Dhr\u0101ngadhra": {"country": "India", "subcountry": "Gujarat"}, "Dhor\u0101ji": {"country": "India", "subcountry": "Gujarat"}, "Dhone": {"country": "India", "subcountry": "Andhra Pradesh"}, "Dholka": {"country": "India", "subcountry": "Gujarat"}, "Dhing": {"country": "India", "subcountry": "Assam"}, "Dhenk\u0101n\u0101l": {"country": "India", "subcountry": "Odisha"}, "Dhekiajuli": {"country": "India", "subcountry": "Assam"}, "Dhaurahra": {"country": "India", "subcountry": "Uttar Pradesh"}, "Dhaulpur": {"country": "India", "subcountry": "Rajasthan"}, "Dh\u0101r\u016br": {"country": "India", "subcountry": "Maharashtra"}, "Dh\u0101ruhera": {"country": "India", "subcountry": "Haryana"}, "Dharms\u0101la": {"country": "India", "subcountry": "Himachal Pradesh"}, "Dharmavaram": {"country": "India", "subcountry": "Andhra Pradesh"}, "Dharmapuri": {"country": "India", "subcountry": "Tamil Nadu"}, "Dharmanagar": {"country": "India", "subcountry": "Tripura"}, "Dharmadam": {"country": "India", "subcountry": "Kerala"}, "Dharm\u0101b\u0101d": {"country": "India", "subcountry": "Maharashtra"}, "Dh\u0101riw\u0101l": {"country": "India", "subcountry": "Punjab"}, "Dh\u0101ri": {"country": "India", "subcountry": "Gujarat"}, "Dharapuram": {"country": "India", "subcountry": "Tamil Nadu"}, "Dharangaon": {"country": "India", "subcountry": "Maharashtra"}, "Dharampur": {"country": "India", "subcountry": "Gujarat"}, "Dh\u0101r": {"country": "India", "subcountry": "Madhya Pradesh"}, "Dhanera": {"country": "India", "subcountry": "Gujarat"}, "Dhandhuka": {"country": "India", "subcountry": "Gujarat"}, "Dhanb\u0101d": {"country": "India", "subcountry": "Jharkhand"}, "Dhanaura": {"country": "India", "subcountry": "Uttar Pradesh"}, "Dhanaula": {"country": "India", "subcountry": "Punjab"}, "Dhamtari": {"country": "India", "subcountry": "Chhattisgarh"}, "Dh\u0101mpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Dh\u0101mnod": {"country": "India", "subcountry": "Madhya Pradesh"}, "Dh\u0101ka": {"country": "India", "subcountry": "Bihar"}, "Dewas": {"country": "India", "subcountry": "Madhya Pradesh"}, "Deoli": {"country": "India", "subcountry": "Maharashtra"}, "Devgarh": {"country": "India", "subcountry": "Rajasthan"}, "Devgadh B\u0101riya": {"country": "India", "subcountry": "Gujarat"}, "Devarkonda": {"country": "India", "subcountry": "Telangana"}, "Devanhalli": {"country": "India", "subcountry": "Karnataka"}, "Devakottai": {"country": "India", "subcountry": "Tamil Nadu"}, "De\u016blgaon R\u0101ja": {"country": "India", "subcountry": "Maharashtra"}, "Deshnoke": {"country": "India", "subcountry": "Rajasthan"}, "Dep\u0101lpur": {"country": "India", "subcountry": "Madhya Pradesh"}, "Deori Kh\u0101s": {"country": "India", "subcountry": "Madhya Pradesh"}, "Deoria": {"country": "India", "subcountry": "Uttar Pradesh"}, "Deorani\u0101n": {"country": "India", "subcountry": "Uttar Pradesh"}, "Deol\u0101li": {"country": "India", "subcountry": "Maharashtra"}, "Deogarh": {"country": "India", "subcountry": "Odisha"}, "Deoband": {"country": "India", "subcountry": "Uttar Pradesh"}, "Denkanikota": {"country": "India", "subcountry": "Tamil Nadu"}, "Delhi": {"country": "India", "subcountry": "NCT"}, "Dehri": {"country": "India", "subcountry": "Bihar"}, "Dehra D\u016bn": {"country": "India", "subcountry": "Uttarakhand"}, "Dausa": {"country": "India", "subcountry": "Rajasthan"}, "Daund": {"country": "India", "subcountry": "Maharashtra"}, "Daudnagar": {"country": "India", "subcountry": "Bihar"}, "Datt\u0101pur": {"country": "India", "subcountry": "Maharashtra"}, "Datia": {"country": "India", "subcountry": "Madhya Pradesh"}, "D\u0101t\u0101ganj": {"country": "India", "subcountry": "Uttar Pradesh"}, "Das\u016bya": {"country": "India", "subcountry": "Punjab"}, "D\u0101sna": {"country": "India", "subcountry": "Uttar Pradesh"}, "Dary\u0101pur": {"country": "India", "subcountry": "Maharashtra"}, "D\u0101rwha": {"country": "India", "subcountry": "Maharashtra"}, "D\u0101rjiling": {"country": "India", "subcountry": "West Bengal"}, "Darbhanga": {"country": "India", "subcountry": "Bihar"}, "Dandeli": {"country": "India", "subcountry": "Karnataka"}, "Dinapore": {"country": "India", "subcountry": "Bihar"}, "Damoh": {"country": "India", "subcountry": "Madhya Pradesh"}, "D\u0101mnagar": {"country": "India", "subcountry": "Gujarat"}, "Daman": {"country": "India", "subcountry": "Daman and Diu"}, "Daltonganj": {"country": "India", "subcountry": "Jharkhand"}, "Dalsingh Sarai": {"country": "India", "subcountry": "Bihar"}, "Dalkola": {"country": "India", "subcountry": "West Bengal"}, "D\u0101kor": {"country": "India", "subcountry": "Gujarat"}, "Dohad": {"country": "India", "subcountry": "Gujarat"}, "Daheg\u0101m": {"country": "India", "subcountry": "Gujarat"}, "D\u0101h\u0101nu": {"country": "India", "subcountry": "Maharashtra"}, "D\u0101dri": {"country": "India", "subcountry": "Uttar Pradesh"}, "Dabw\u0101li": {"country": "India", "subcountry": "Haryana"}, "Dabra": {"country": "India", "subcountry": "Madhya Pradesh"}, "Daboh": {"country": "India", "subcountry": "Madhya Pradesh"}, "Dabhoi": {"country": "India", "subcountry": "Gujarat"}, "Cuttack": {"country": "India", "subcountry": "Odisha"}, "Curchorem": {"country": "India", "subcountry": "Goa"}, "Cuncolim": {"country": "India", "subcountry": "Goa"}, "Cuddapah": {"country": "India", "subcountry": "Andhra Pradesh"}, "Cuddalore": {"country": "India", "subcountry": "Tamil Nadu"}, "Coondapoor": {"country": "India", "subcountry": "Karnataka"}, "Colonelganj": {"country": "India", "subcountry": "Uttar Pradesh"}, "Colgong": {"country": "India", "subcountry": "Bihar"}, "Calangute": {"country": "India", "subcountry": "Goa"}, "Coimbatore": {"country": "India", "subcountry": "Tamil Nadu"}, "Cochin": {"country": "India", "subcountry": "Kerala"}, "Clement Town": {"country": "India", "subcountry": "Uttarakhand"}, "Ch\u016bru": {"country": "India", "subcountry": "Rajasthan"}, "Chur\u0101ch\u0101ndpur": {"country": "India", "subcountry": "Manipur"}, "Chun\u0101r": {"country": "India", "subcountry": "Uttar Pradesh"}, "Chotila": {"country": "India", "subcountry": "Gujarat"}, "Chopda": {"country": "India", "subcountry": "Maharashtra"}, "Chodavaram": {"country": "India", "subcountry": "Andhra Pradesh"}, "Rampachodavaram": {"country": "India", "subcountry": "Andhra Pradesh"}, "Chitt\u016br": {"country": "India", "subcountry": "Kerala"}, "Chittaurgarh": {"country": "India", "subcountry": "Rajasthan"}, "Chittaranjan": {"country": "India", "subcountry": "West Bengal"}, "Chitradurga": {"country": "India", "subcountry": "Karnataka"}, "Ch\u012bt\u0101pur": {"country": "India", "subcountry": "Karnataka"}, "Chidawa": {"country": "India", "subcountry": "Rajasthan"}, "Ch\u012br\u0101la": {"country": "India", "subcountry": "Andhra Pradesh"}, "Ch\u012bpurupalle": {"country": "India", "subcountry": "Andhra Pradesh"}, "Chipl\u016bn": {"country": "India", "subcountry": "Maharashtra"}, "Chint\u0101mani": {"country": "India", "subcountry": "Karnataka"}, "Chinna Salem": {"country": "India", "subcountry": "Tamil Nadu"}, "Chinnaman\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Chincholi": {"country": "India", "subcountry": "Karnataka"}, "Chillup\u0101r": {"country": "India", "subcountry": "Uttar Pradesh"}, "Chilakal\u016brupet": {"country": "India", "subcountry": "Andhra Pradesh"}, "Chikodi": {"country": "India", "subcountry": "Karnataka"}, "Chikn\u0101yakanhalli": {"country": "India", "subcountry": "Karnataka"}, "Chikmagal\u016br": {"country": "India", "subcountry": "Karnataka"}, "Chikhli": {"country": "India", "subcountry": "Maharashtra"}, "Chik Ball\u0101pur": {"country": "India", "subcountry": "Karnataka"}, "Chidambaram": {"country": "India", "subcountry": "Tamil Nadu"}, "Chicholi": {"country": "India", "subcountry": "Maharashtra"}, "Chhoti S\u0101dri": {"country": "India", "subcountry": "Rajasthan"}, "Chhota Udepur": {"country": "India", "subcountry": "Gujarat"}, "Chhindw\u0101ra": {"country": "India", "subcountry": "Madhya Pradesh"}, "Chhibr\u0101mau": {"country": "India", "subcountry": "Uttar Pradesh"}, "Chhatarpur": {"country": "India", "subcountry": "Madhya Pradesh"}, "Chh\u0101t\u0101pur": {"country": "India", "subcountry": "Bihar"}, "Chh\u0101ta": {"country": "India", "subcountry": "Uttar Pradesh"}, "Chharra": {"country": "India", "subcountry": "Uttar Pradesh"}, "Chhaprauli": {"country": "India", "subcountry": "Uttar Pradesh"}, "Ch\u0101pra": {"country": "India", "subcountry": "Bihar"}, "Chh\u0101par": {"country": "India", "subcountry": "Rajasthan"}, "Chhala": {"country": "India", "subcountry": "Gujarat"}, "Chhabra": {"country": "India", "subcountry": "Rajasthan"}, "Chettip\u0101laiyam": {"country": "India", "subcountry": "Tamil Nadu"}, "Chetput": {"country": "India", "subcountry": "Tamil Nadu"}, "Chennimalai": {"country": "India", "subcountry": "Tamil Nadu"}, "Chengann\u016br": {"country": "India", "subcountry": "Kerala"}, "Chengam": {"country": "India", "subcountry": "Tamil Nadu"}, "Chengalpattu": {"country": "India", "subcountry": "Tamil Nadu"}, "Ch\u0101vakk\u0101d": {"country": "India", "subcountry": "Kerala"}, "Chaksu": {"country": "India", "subcountry": "Rajasthan"}, "Chatrapur": {"country": "India", "subcountry": "Odisha"}, "Chatra": {"country": "India", "subcountry": "Jharkhand"}, "Ch\u0101s": {"country": "India", "subcountry": "Jharkhand"}, "Charth\u0101wal": {"country": "India", "subcountry": "Uttar Pradesh"}, "Charkhi D\u0101dri": {"country": "India", "subcountry": "Haryana"}, "Charkh\u0101ri": {"country": "India", "subcountry": "Uttar Pradesh"}, "Ch\u0101par": {"country": "India", "subcountry": "Assam"}, "Channar\u0101yapatna": {"country": "India", "subcountry": "Karnataka"}, "Channapatna": {"country": "India", "subcountry": "Karnataka"}, "Channagiri": {"country": "India", "subcountry": "Karnataka"}, "Changan\u0101cheri": {"country": "India", "subcountry": "Kerala"}, "Ch\u0101ndor": {"country": "India", "subcountry": "Maharashtra"}, "Ch\u0101nd\u016br B\u0101z\u0101r": {"country": "India", "subcountry": "Maharashtra"}, "Ch\u0101nd\u016br": {"country": "India", "subcountry": "Maharashtra"}, "Ch\u0101ndur": {"country": "India", "subcountry": "Maharashtra"}, "Ch\u0101nda": {"country": "India", "subcountry": "Maharashtra"}, "Chandrakona": {"country": "India", "subcountry": "West Bengal"}, "Ch\u0101ndpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Chandigarh": {"country": "India", "subcountry": "Chandigarh"}, "Chanderi": {"country": "India", "subcountry": "Madhya Pradesh"}, "Chanduasi": {"country": "India", "subcountry": "Uttar Pradesh"}, "Chandauli": {"country": "India", "subcountry": "Uttar Pradesh"}, "Chandannagar": {"country": "India", "subcountry": "West Bengal"}, "Ch\u0101nasma": {"country": "India", "subcountry": "Gujarat"}, "Chamrajnagar": {"country": "India", "subcountry": "Karnataka"}, "Ch\u0101mpa": {"country": "India", "subcountry": "Chhattisgarh"}, "Chamba": {"country": "India", "subcountry": "Himachal Pradesh"}, "Challapalle": {"country": "India", "subcountry": "Andhra Pradesh"}, "Challakere": {"country": "India", "subcountry": "Karnataka"}, "Ch\u0101lisgaon": {"country": "India", "subcountry": "Maharashtra"}, "Chal\u0101la": {"country": "India", "subcountry": "Gujarat"}, "Chakradharpur": {"country": "India", "subcountry": "Jharkhand"}, "Chakl\u0101si": {"country": "India", "subcountry": "Gujarat"}, "Ch\u0101kia": {"country": "India", "subcountry": "Bihar"}, "Ch\u0101kan": {"country": "India", "subcountry": "Maharashtra"}, "Ch\u0101\u012bb\u0101sa": {"country": "India", "subcountry": "Jharkhand"}, "Canning": {"country": "India", "subcountry": "West Bengal"}, "Cannanore": {"country": "India", "subcountry": "Kerala"}, "Kolkata": {"country": "India", "subcountry": "West Bengal"}, "By\u0101dgi": {"country": "India", "subcountry": "Karnataka"}, "Buxar": {"country": "India", "subcountry": "Bihar"}, "Burla": {"country": "India", "subcountry": "Odisha"}, "Burhar": {"country": "India", "subcountry": "Madhya Pradesh"}, "Burh\u0101npur": {"country": "India", "subcountry": "Madhya Pradesh"}, "B\u016bndu": {"country": "India", "subcountry": "Jharkhand"}, "B\u016bndi": {"country": "India", "subcountry": "Rajasthan"}, "Buld\u0101na": {"country": "India", "subcountry": "Maharashtra"}, "Bulandshahr": {"country": "India", "subcountry": "Uttar Pradesh"}, "Budhl\u0101da": {"country": "India", "subcountry": "Punjab"}, "Budh\u0101na": {"country": "India", "subcountry": "Uttar Pradesh"}, "Budaun": {"country": "India", "subcountry": "Uttar Pradesh"}, "Br\u0101jar\u0101jnagar": {"country": "India", "subcountry": "Odisha"}, "Brahmapur": {"country": "India", "subcountry": "Odisha"}, "Bot\u0101d": {"country": "India", "subcountry": "Gujarat"}, "Borsad": {"country": "India", "subcountry": "Gujarat"}, "Borivli": {"country": "India", "subcountry": "Maharashtra"}, "Bongaigaon": {"country": "India", "subcountry": "Assam"}, "Mumbai": {"country": "India", "subcountry": "Maharashtra"}, "Bolpur": {"country": "India", "subcountry": "West Bengal"}, "Bok\u0101ro": {"country": "India", "subcountry": "Jharkhand"}, "Bokaj\u0101n": {"country": "India", "subcountry": "Assam"}, "Boisar": {"country": "India", "subcountry": "Maharashtra"}, "Bodin\u0101yakkan\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Buddh Gaya": {"country": "India", "subcountry": "Bihar"}, "Bodhan": {"country": "India", "subcountry": "Telangana"}, "Bobbili": {"country": "India", "subcountry": "Andhra Pradesh"}, "Bisw\u0101n": {"country": "India", "subcountry": "Uttar Pradesh"}, "Biss\u0101u": {"country": "India", "subcountry": "Rajasthan"}, "Bishnupur": {"country": "India", "subcountry": "West Bengal"}, "Bisauli": {"country": "India", "subcountry": "Uttar Pradesh"}, "B\u012bsalpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bir\u016br": {"country": "India", "subcountry": "Karnataka"}, "B\u012brpur": {"country": "India", "subcountry": "Bihar"}, "Birmitrapur": {"country": "India", "subcountry": "Odisha"}, "Binka": {"country": "India", "subcountry": "Odisha"}, "Bindki": {"country": "India", "subcountry": "Uttar Pradesh"}, "Et\u0101wa": {"country": "India", "subcountry": "Madhya Pradesh"}, "Bilthra": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bilsi": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bilsanda": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bilimora": {"country": "India", "subcountry": "Gujarat"}, "Bilhaur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bilgr\u0101m": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bilgi": {"country": "India", "subcountry": "Karnataka"}, "B\u012bl\u0101spur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bil\u0101spur": {"country": "India", "subcountry": "Chhattisgarh"}, "Bil\u0101sip\u0101ra": {"country": "India", "subcountry": "Assam"}, "Bil\u0101ri": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bil\u0101ra": {"country": "India", "subcountry": "Rajasthan"}, "Bikramganj": {"country": "India", "subcountry": "Bihar"}, "B\u012bkaner": {"country": "India", "subcountry": "Rajasthan"}, "Bijnor": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bijbi\u0101ra": {"country": "India", "subcountry": "Kashmir"}, "Bij\u0101war": {"country": "India", "subcountry": "Madhya Pradesh"}, "Bijapur": {"country": "India", "subcountry": "Karnataka"}, "Bih\u0101r": {"country": "India", "subcountry": "Bihar"}, "Bih\u0101r\u012bganj": {"country": "India", "subcountry": "Bihar"}, "Bidh\u016bna": {"country": "India", "subcountry": "Uttar Pradesh"}, "B\u012bdar": {"country": "India", "subcountry": "Karnataka"}, "Biaora": {"country": "India", "subcountry": "Madhya Pradesh"}, "Bhuvanagiri": {"country": "India", "subcountry": "Tamil Nadu"}, "Bhus\u0101val": {"country": "India", "subcountry": "Maharashtra"}, "Bh\u016bm": {"country": "India", "subcountry": "Maharashtra"}, "Bhuj": {"country": "India", "subcountry": "Gujarat"}, "Bhudgaon": {"country": "India", "subcountry": "Maharashtra"}, "Bhubaneshwar": {"country": "India", "subcountry": "Odisha"}, "Bhuban": {"country": "India", "subcountry": "Odisha"}, "Bhor": {"country": "India", "subcountry": "Maharashtra"}, "Bhopal": {"country": "India", "subcountry": "Madhya Pradesh"}, "Bhong\u012br": {"country": "India", "subcountry": "Telangana"}, "Bhongaon": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bhogpur": {"country": "India", "subcountry": "Punjab"}, "Bhiw\u0101ni": {"country": "India", "subcountry": "Haryana"}, "Bhiwandi": {"country": "India", "subcountry": "Maharashtra"}, "Bhitarw\u0101r": {"country": "India", "subcountry": "Madhya Pradesh"}, "Bh\u012bnm\u0101l": {"country": "India", "subcountry": "Rajasthan"}, "Bhinga": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bhind\u0101r": {"country": "India", "subcountry": "Rajasthan"}, "Bhind": {"country": "India", "subcountry": "Madhya Pradesh"}, "Bh\u012bmunipatnam": {"country": "India", "subcountry": "Andhra Pradesh"}, "Bh\u012bmavaram": {"country": "India", "subcountry": "Andhra Pradesh"}, "Bh\u012blw\u0101ra": {"country": "India", "subcountry": "Rajasthan"}, "Bhilai": {"country": "India", "subcountry": "Chhattisgarh"}, "Bh\u012bkhi": {"country": "India", "subcountry": "Punjab"}, "Bhikangaon": {"country": "India", "subcountry": "Madhya Pradesh"}, "Bh\u0101y\u0101vadar": {"country": "India", "subcountry": "Gujarat"}, "Bhayandar": {"country": "India", "subcountry": "Maharashtra"}, "Bhaw\u0101nipatna": {"country": "India", "subcountry": "Odisha"}, "Bhaw\u0101n\u012bgarh": {"country": "India", "subcountry": "Punjab"}, "Bhaw\u0101niganj": {"country": "India", "subcountry": "Madhya Pradesh"}, "Bh\u0101vnagar": {"country": "India", "subcountry": "Gujarat"}, "Bhav\u0101ni": {"country": "India", "subcountry": "Tamil Nadu"}, "Bhattiprolu": {"country": "India", "subcountry": "Andhra Pradesh"}, "Bh\u0101tp\u0101ra": {"country": "India", "subcountry": "West Bengal"}, "Bhatkal": {"country": "India", "subcountry": "Karnataka"}, "Bhatinda": {"country": "India", "subcountry": "Punjab"}, "Bh\u0101t\u0101p\u0101ra": {"country": "India", "subcountry": "Chhattisgarh"}, "Bhas\u0101war": {"country": "India", "subcountry": "Rajasthan"}, "Bharw\u0101ri": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bhar\u016bch": {"country": "India", "subcountry": "Gujarat"}, "Bharthana": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bharatpur": {"country": "Nepal", "subcountry": "Central Region"}, "Bh\u0101nvad": {"country": "India", "subcountry": "Gujarat"}, "Bh\u0101npur\u012b": {"country": "India", "subcountry": "Chhattisgarh"}, "Bh\u0101npura": {"country": "India", "subcountry": "Madhya Pradesh"}, "Bhanjanagar": {"country": "India", "subcountry": "Odisha"}, "Bh\u0101nder": {"country": "India", "subcountry": "Madhya Pradesh"}, "Bhand\u0101ra": {"country": "India", "subcountry": "Maharashtra"}, "Bh\u0101lki": {"country": "India", "subcountry": "Karnataka"}, "Bhaisa": {"country": "India", "subcountry": "Telangana"}, "Bhainsdehi": {"country": "India", "subcountry": "Madhya Pradesh"}, "Bh\u0101galpur": {"country": "India", "subcountry": "Bihar"}, "Bhadreswar": {"country": "India", "subcountry": "West Bengal"}, "Bhadr\u0101vati": {"country": "India", "subcountry": "Karnataka"}, "Bhadrakh": {"country": "India", "subcountry": "Odisha"}, "Bhadr\u0101chalam": {"country": "India", "subcountry": "Telangana"}, "Bh\u0101dra": {"country": "India", "subcountry": "Rajasthan"}, "Bhadohi": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bhadaur": {"country": "India", "subcountry": "Punjab"}, "Bh\u0101d\u0101sar": {"country": "India", "subcountry": "Rajasthan"}, "Bhach\u0101u": {"country": "India", "subcountry": "Gujarat"}, "Bhabhua": {"country": "India", "subcountry": "Bihar"}, "Beypore": {"country": "India", "subcountry": "Kerala"}, "Bewar": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bet\u016bl": {"country": "India", "subcountry": "Madhya Pradesh"}, "Bettiah": {"country": "India", "subcountry": "Bihar"}, "Betamcherla": {"country": "India", "subcountry": "Andhra Pradesh"}, "Beri Kh\u0101s": {"country": "India", "subcountry": "Haryana"}, "Berasia": {"country": "India", "subcountry": "Madhya Pradesh"}, "Beoh\u0101ri": {"country": "India", "subcountry": "Madhya Pradesh"}, "Bemet\u0101ra": {"country": "India", "subcountry": "Chhattisgarh"}, "Bel\u016br": {"country": "India", "subcountry": "Karnataka"}, "Belsand": {"country": "India", "subcountry": "Bihar"}, "Belonia": {"country": "India", "subcountry": "Tripura"}, "Bellary": {"country": "India", "subcountry": "Karnataka"}, "Belgaum": {"country": "India", "subcountry": "Karnataka"}, "Beld\u0101nga": {"country": "India", "subcountry": "West Bengal"}, "Bela": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Behror": {"country": "India", "subcountry": "Rajasthan"}, "Behat": {"country": "India", "subcountry": "Uttar Pradesh"}, "Begusarai": {"country": "India", "subcountry": "Bihar"}, "Beg\u016bn": {"country": "India", "subcountry": "Rajasthan"}, "Begamganj": {"country": "India", "subcountry": "Madhya Pradesh"}, "Bedi": {"country": "India", "subcountry": "Gujarat"}, "Be\u0101war": {"country": "India", "subcountry": "Rajasthan"}, "B\u0101zpur": {"country": "India", "subcountry": "Uttarakhand"}, "Bay\u0101na": {"country": "India", "subcountry": "Rajasthan"}, "Baw\u0101na": {"country": "India", "subcountry": "NCT"}, "Bauda": {"country": "India", "subcountry": "Odisha"}, "Bat\u0101la": {"country": "India", "subcountry": "Punjab"}, "Baswa": {"country": "India", "subcountry": "Rajasthan"}, "B\u0101sudebpur": {"country": "India", "subcountry": "Odisha"}, "Bast\u012b": {"country": "India", "subcountry": "Uttar Pradesh"}, "B\u0101soda": {"country": "India", "subcountry": "Madhya Pradesh"}, "Basni": {"country": "India", "subcountry": "Rajasthan"}, "Basmat": {"country": "India", "subcountry": "Maharashtra"}, "Basi": {"country": "India", "subcountry": "Rajasthan"}, "Basavana B\u0101gev\u0101di": {"country": "India", "subcountry": "Karnataka"}, "Basavakaly\u0101n": {"country": "India", "subcountry": "Karnataka"}, "Barw\u0101ni": {"country": "India", "subcountry": "Madhya Pradesh"}, "Barw\u0101la": {"country": "India", "subcountry": "Haryana"}, "B\u0101runi": {"country": "India", "subcountry": "Bihar"}, "B\u0101ruipur": {"country": "India", "subcountry": "West Bengal"}, "B\u0101rsi": {"country": "India", "subcountry": "Maharashtra"}, "Barpeta": {"country": "India", "subcountry": "Assam"}, "Barp\u0101li": {"country": "India", "subcountry": "Odisha"}, "Barn\u0101la": {"country": "India", "subcountry": "Punjab"}, "B\u0101rmer": {"country": "India", "subcountry": "Rajasthan"}, "Barki Saria": {"country": "India", "subcountry": "Jharkhand"}, "Barka K\u0101na": {"country": "India", "subcountry": "Jharkhand"}, "Barjala": {"country": "India", "subcountry": "Tripura"}, "Bari S\u0101dri": {"country": "India", "subcountry": "Rajasthan"}, "B\u0101ri": {"country": "India", "subcountry": "Rajasthan"}, "Barhiya": {"country": "India", "subcountry": "Bihar"}, "B\u0101rh": {"country": "India", "subcountry": "Bihar"}, "Bargi": {"country": "India", "subcountry": "Madhya Pradesh"}, "Bargarh": {"country": "India", "subcountry": "Odisha"}, "Bareilly": {"country": "India", "subcountry": "Uttar Pradesh"}, "B\u0101rdoli": {"country": "India", "subcountry": "Gujarat"}, "Barddham\u0101n": {"country": "India", "subcountry": "West Bengal"}, "Bar Bigha": {"country": "India", "subcountry": "Bihar"}, "Baraut": {"country": "India", "subcountry": "Uttar Pradesh"}, "Barauli": {"country": "India", "subcountry": "Bihar"}, "B\u0101r\u0101sat": {"country": "India", "subcountry": "West Bengal"}, "Baranagar": {"country": "India", "subcountry": "West Bengal"}, "B\u0101r\u0101n": {"country": "India", "subcountry": "Rajasthan"}, "B\u0101ram\u016bla": {"country": "India", "subcountry": "Kashmir"}, "B\u0101r\u0101mati": {"country": "India", "subcountry": "Maharashtra"}, "B\u0101r\u0101kpur": {"country": "India", "subcountry": "West Bengal"}, "B\u0101patla": {"country": "India", "subcountry": "Andhra Pradesh"}, "Ban\u016br": {"country": "India", "subcountry": "Punjab"}, "Bantv\u0101l": {"country": "India", "subcountry": "Karnataka"}, "B\u0101ntva": {"country": "India", "subcountry": "Gujarat"}, "B\u0101nsw\u0101ra": {"country": "India", "subcountry": "Rajasthan"}, "B\u0101nsw\u0101da": {"country": "India", "subcountry": "Telangana"}, "B\u0101nsi": {"country": "India", "subcountry": "Uttar Pradesh"}, "B\u0101nsd\u012bh": {"country": "India", "subcountry": "Uttar Pradesh"}, "B\u0101nsb\u0101ria": {"country": "India", "subcountry": "West Bengal"}, "Bann\u016br": {"country": "India", "subcountry": "Karnataka"}, "Banmankhi": {"country": "India", "subcountry": "Bihar"}, "B\u0101nkura": {"country": "India", "subcountry": "West Bengal"}, "B\u0101nki": {"country": "India", "subcountry": "Odisha"}, "B\u0101nka": {"country": "India", "subcountry": "Bihar"}, "B\u0101ngarmau": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bang\u0101rapet": {"country": "India", "subcountry": "Karnataka"}, "Bangaon": {"country": "India", "subcountry": "West Bengal"}, "Banganapalle": {"country": "India", "subcountry": "Andhra Pradesh"}, "Bengaluru": {"country": "India", "subcountry": "Karnataka"}, "Banga": {"country": "India", "subcountry": "Punjab"}, "Bandipura": {"country": "India", "subcountry": "Kashmir"}, "B\u0101nd\u012bk\u016bi": {"country": "India", "subcountry": "Rajasthan"}, "B\u0101nda": {"country": "India", "subcountry": "Uttar Pradesh"}, "Banda": {"country": "India", "subcountry": "Madhya Pradesh"}, "Banat": {"country": "India", "subcountry": "Uttar Pradesh"}, "B\u0101napur": {"country": "India", "subcountry": "Odisha"}, "B\u0101mor Kal\u0101n": {"country": "India", "subcountry": "Madhya Pradesh"}, "B\u0101lurgh\u0101t": {"country": "India", "subcountry": "West Bengal"}, "B\u0101lugaon": {"country": "India", "subcountry": "Odisha"}, "Balr\u0101mpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "B\u0101lotra": {"country": "India", "subcountry": "Rajasthan"}, "Baloda B\u0101z\u0101r": {"country": "India", "subcountry": "Chhattisgarh"}, "Balod": {"country": "India", "subcountry": "Chhattisgarh"}, "B\u0101li": {"country": "India", "subcountry": "Rajasthan"}, "Ball\u0101lpur": {"country": "India", "subcountry": "Maharashtra"}, "Balasore": {"country": "India", "subcountry": "Odisha"}, "Balar\u0101mpur": {"country": "India", "subcountry": "West Bengal"}, "B\u0101l\u0101pur": {"country": "India", "subcountry": "Maharashtra"}, "Bal\u0101ng\u012br": {"country": "India", "subcountry": "Odisha"}, "B\u0101l\u0101gh\u0101t": {"country": "India", "subcountry": "Madhya Pradesh"}, "B\u0101l\u0101chor": {"country": "India", "subcountry": "Punjab"}, "Bakhtiy\u0101rpur": {"country": "India", "subcountry": "Bihar"}, "Baj Baj": {"country": "India", "subcountry": "West Bengal"}, "Bair\u0101gnia": {"country": "India", "subcountry": "Bihar"}, "Byndoor": {"country": "India", "subcountry": "Karnataka"}, "Bail-Hongal": {"country": "India", "subcountry": "Karnataka"}, "Baihar": {"country": "India", "subcountry": "Madhya Pradesh"}, "Baidyab\u0101ti": {"country": "India", "subcountry": "West Bengal"}, "Bahraigh": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bahjoi": {"country": "India", "subcountry": "Uttar Pradesh"}, "Baheri": {"country": "India", "subcountry": "Uttar Pradesh"}, "Baharampur": {"country": "India", "subcountry": "West Bengal"}, "Bah\u0101durgarh": {"country": "India", "subcountry": "Haryana"}, "Bah\u0101durganj": {"country": "India", "subcountry": "Bihar"}, "B\u0101h": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bagul\u0101": {"country": "India", "subcountry": "West Bengal"}, "B\u0101ghpat": {"country": "India", "subcountry": "Uttar Pradesh"}, "B\u0101ghdogra": {"country": "India", "subcountry": "West Bengal"}, "B\u0101gha Pur\u0101na": {"country": "India", "subcountry": "Punjab"}, "B\u0101gepalli": {"country": "India", "subcountry": "Karnataka"}, "Bagasra": {"country": "India", "subcountry": "Gujarat"}, "Bagar": {"country": "India", "subcountry": "Rajasthan"}, "Bagalkot": {"country": "India", "subcountry": "Karnataka"}, "Bagaha": {"country": "India", "subcountry": "Bihar"}, "Badvel": {"country": "India", "subcountry": "Andhra Pradesh"}, "Bad\u016bria": {"country": "India", "subcountry": "West Bengal"}, "Badn\u0101war": {"country": "India", "subcountry": "Madhya Pradesh"}, "Badlapur": {"country": "India", "subcountry": "Maharashtra"}, "B\u0101d\u0101mi": {"country": "India", "subcountry": "Karnataka"}, "Badagara": {"country": "India", "subcountry": "Kerala"}, "Bada Barab\u012bl": {"country": "India", "subcountry": "Odisha"}, "Bachhraon": {"country": "India", "subcountry": "Uttar Pradesh"}, "Babr\u0101la": {"country": "India", "subcountry": "Uttar Pradesh"}, "B\u0101bra": {"country": "India", "subcountry": "Gujarat"}, "Bab\u012bna": {"country": "India", "subcountry": "Uttar Pradesh"}, "Baberu": {"country": "India", "subcountry": "Uttar Pradesh"}, "B\u0101bai": {"country": "India", "subcountry": "Madhya Pradesh"}, "Azamgarh": {"country": "India", "subcountry": "Uttar Pradesh"}, "Ajodhya": {"country": "India", "subcountry": "Uttar Pradesh"}, "Ayakudi": {"country": "India", "subcountry": "Tamil Nadu"}, "Avanigadda": {"country": "India", "subcountry": "Andhra Pradesh"}, "Avinashi": {"country": "India", "subcountry": "Tamil Nadu"}, "\u0100vadi": {"country": "India", "subcountry": "Tamil Nadu"}, "Ausa": {"country": "India", "subcountry": "Maharashtra"}, "Aurang\u0101b\u0101d": {"country": "India", "subcountry": "Bihar"}, "Aurangabad": {"country": "India", "subcountry": "Maharashtra"}, "Auraiya": {"country": "India", "subcountry": "Uttar Pradesh"}, "Aur\u0101d": {"country": "India", "subcountry": "Karnataka"}, "Attur": {"country": "India", "subcountry": "Tamil Nadu"}, "Attingal": {"country": "India", "subcountry": "Kerala"}, "Attili": {"country": "India", "subcountry": "Andhra Pradesh"}, "Atraul\u012b": {"country": "India", "subcountry": "Uttar Pradesh"}, "Atmak\u016br": {"country": "India", "subcountry": "Andhra Pradesh"}, "Adirampattinam": {"country": "India", "subcountry": "Tamil Nadu"}, "Athni": {"country": "India", "subcountry": "Karnataka"}, "\u0100thagarh": {"country": "India", "subcountry": "Odisha"}, "Atarra": {"country": "India", "subcountry": "Uttar Pradesh"}, "\u0100sind": {"country": "India", "subcountry": "Rajasthan"}, "\u0100sika": {"country": "India", "subcountry": "Odisha"}, "Asif\u0101b\u0101d": {"country": "India", "subcountry": "Telangana"}, "Ashta": {"country": "India", "subcountry": "Maharashtra"}, "Ashoknagar": {"country": "India", "subcountry": "Madhya Pradesh"}, "\u0100sansol": {"country": "India", "subcountry": "West Bengal"}, "\u0100sandh": {"country": "India", "subcountry": "Haryana"}, "\u0100rvi": {"country": "India", "subcountry": "Maharashtra"}, "Aruppukkottai": {"country": "India", "subcountry": "Tamil Nadu"}, "Arumuganeri": {"country": "India", "subcountry": "Tamil Nadu"}, "Arukutti": {"country": "India", "subcountry": "Kerala"}, "Arsikere": {"country": "India", "subcountry": "Karnataka"}, "\u0100ron": {"country": "India", "subcountry": "Madhya Pradesh"}, "Arkalg\u016bd": {"country": "India", "subcountry": "Karnataka"}, "Ariyal\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Arcot": {"country": "India", "subcountry": "Tamil Nadu"}, "Ar\u0101ria": {"country": "India", "subcountry": "Bihar"}, "Arant\u0101ngi": {"country": "India", "subcountry": "Tamil Nadu"}, "\u0100rani": {"country": "India", "subcountry": "Tamil Nadu"}, "\u0100rangaon": {"country": "India", "subcountry": "Maharashtra"}, "Arang": {"country": "India", "subcountry": "Chhattisgarh"}, "Ar\u0101mb\u0101gh": {"country": "India", "subcountry": "West Bengal"}, "Arakkonam": {"country": "India", "subcountry": "Tamil Nadu"}, "Aonla": {"country": "India", "subcountry": "Uttar Pradesh"}, "An\u016bpshahr": {"country": "India", "subcountry": "Uttar Pradesh"}, "An\u016bppur": {"country": "India", "subcountry": "Madhya Pradesh"}, "An\u016bpgarh": {"country": "India", "subcountry": "Rajasthan"}, "Anta": {"country": "India", "subcountry": "Rajasthan"}, "Anshing": {"country": "India", "subcountry": "Maharashtra"}, "Annur": {"country": "India", "subcountry": "Tamil Nadu"}, "Annigeri": {"country": "India", "subcountry": "Karnataka"}, "Ankleshwar": {"country": "India", "subcountry": "Gujarat"}, "Anj\u0101r": {"country": "India", "subcountry": "Gujarat"}, "Anjangaon": {"country": "India", "subcountry": "Maharashtra"}, "Anjad": {"country": "India", "subcountry": "Madhya Pradesh"}, "Angul": {"country": "India", "subcountry": "Odisha"}, "Angam\u0101li": {"country": "India", "subcountry": "Kerala"}, "Anekal": {"country": "India", "subcountry": "Karnataka"}, "Andol": {"country": "India", "subcountry": "Telangana"}, "Anthiyur": {"country": "India", "subcountry": "Tamil Nadu"}, "\u0100ndippatti": {"country": "India", "subcountry": "Tamil Nadu"}, "Anantnag": {"country": "India", "subcountry": "Kashmir"}, "Anantapur": {"country": "India", "subcountry": "Andhra Pradesh"}, "Anandpur": {"country": "India", "subcountry": "Punjab"}, "\u0100nand": {"country": "India", "subcountry": "Gujarat"}, "Anak\u0101palle": {"country": "India", "subcountry": "Andhra Pradesh"}, "Anaimalai": {"country": "India", "subcountry": "Tamil Nadu"}, "Amud\u0101lavalasa": {"country": "India", "subcountry": "Andhra Pradesh"}, "\u0100mta": {"country": "India", "subcountry": "West Bengal"}, "Amroli": {"country": "India", "subcountry": "Gujarat"}, "Amroha": {"country": "India", "subcountry": "Uttar Pradesh"}, "Amritsar": {"country": "India", "subcountry": "Punjab"}, "Amreli": {"country": "India", "subcountry": "Gujarat"}, "Amr\u0101vati": {"country": "India", "subcountry": "Maharashtra"}, "Amod": {"country": "India", "subcountry": "Gujarat"}, "\u0100mli": {"country": "India", "subcountry": "Dadra and Nagar Haveli"}, "\u0100ml\u0101gora": {"country": "India", "subcountry": "West Bengal"}, "Amla": {"country": "India", "subcountry": "Madhya Pradesh"}, "Amet": {"country": "India", "subcountry": "Rajasthan"}, "Ambur": {"country": "India", "subcountry": "Tamil Nadu"}, "Ambik\u0101pur": {"country": "India", "subcountry": "Chhattisgarh"}, "Ambatt\u016br": {"country": "India", "subcountry": "Tamil Nadu"}, "Ambasamudram": {"country": "India", "subcountry": "Tamil Nadu"}, "Amb\u0101la": {"country": "India", "subcountry": "Haryana"}, "Amb\u0101jog\u0101i": {"country": "India", "subcountry": "Maharashtra"}, "Amb\u0101h": {"country": "India", "subcountry": "Madhya Pradesh"}, "Ambad": {"country": "India", "subcountry": "Maharashtra"}, "Amarpur": {"country": "India", "subcountry": "Bihar"}, "Amarp\u0101tan": {"country": "India", "subcountry": "Madhya Pradesh"}, "Amarn\u0101th": {"country": "India", "subcountry": "Maharashtra"}, "Amalner": {"country": "India", "subcountry": "Maharashtra"}, "Amal\u0101puram": {"country": "India", "subcountry": "Andhra Pradesh"}, "Aluva": {"country": "India", "subcountry": "Kerala"}, "Alwar": {"country": "India", "subcountry": "Rajasthan"}, "Alot": {"country": "India", "subcountry": "Madhya Pradesh"}, "Along": {"country": "India", "subcountry": "Arunachal Pradesh"}, "Aln\u0101var": {"country": "India", "subcountry": "Karnataka"}, "Almora": {"country": "India", "subcountry": "Uttarakhand"}, "Alleppey": {"country": "India", "subcountry": "Kerala"}, "Allah\u0101b\u0101d": {"country": "India", "subcountry": "Uttar Pradesh"}, "Al\u012bpur": {"country": "Pakistan", "subcountry": "Punjab"}, "Al\u012bgarh": {"country": "India", "subcountry": "Uttar Pradesh"}, "Al\u012bganj": {"country": "India", "subcountry": "Uttar Pradesh"}, "Al\u012bb\u0101g": {"country": "India", "subcountry": "Maharashtra"}, "\u0100langulam": {"country": "India", "subcountry": "Tamil Nadu"}, "\u0100lang\u0101yam": {"country": "India", "subcountry": "Tamil Nadu"}, "Alandur": {"country": "India", "subcountry": "Tamil Nadu"}, "Alandi": {"country": "India", "subcountry": "Maharashtra"}, "Aland": {"country": "India", "subcountry": "Karnataka"}, "Akot": {"country": "India", "subcountry": "Maharashtra"}, "Akola": {"country": "India", "subcountry": "Maharashtra"}, "Aklera": {"country": "India", "subcountry": "Rajasthan"}, "Akiv\u012bdu": {"country": "India", "subcountry": "Andhra Pradesh"}, "Akbarpur": {"country": "India", "subcountry": "Uttar Pradesh"}, "Akaltara": {"country": "India", "subcountry": "Chhattisgarh"}, "Akalkot": {"country": "India", "subcountry": "Maharashtra"}, "Ajra": {"country": "India", "subcountry": "Maharashtra"}, "Ajn\u0101la": {"country": "India", "subcountry": "Punjab"}, "Ajmer": {"country": "India", "subcountry": "Rajasthan"}, "Aizawl": {"country": "India", "subcountry": "Mizoram"}, "Ahraura": {"country": "India", "subcountry": "Uttar Pradesh"}, "Ahmadpur": {"country": "India", "subcountry": "Maharashtra"}, "Ahmadnagar": {"country": "India", "subcountry": "Maharashtra"}, "Ahmedabad": {"country": "India", "subcountry": "Gujarat"}, "\u0100gra": {"country": "India", "subcountry": "Uttar Pradesh"}, "Agartala": {"country": "India", "subcountry": "Tripura"}, "Agar": {"country": "India", "subcountry": "Madhya Pradesh"}, "Afzalpur": {"country": "India", "subcountry": "Karnataka"}, "Afzalgarh": {"country": "India", "subcountry": "Uttar Pradesh"}, "Ad\u016br": {"country": "India", "subcountry": "Kerala"}, "\u0100doni": {"country": "India", "subcountry": "Andhra Pradesh"}, "\u0100dil\u0101b\u0101d": {"country": "India", "subcountry": "Telangana"}, "Addanki": {"country": "India", "subcountry": "Andhra Pradesh"}, "Achhnera": {"country": "India", "subcountry": "Uttar Pradesh"}, "Achalpur": {"country": "India", "subcountry": "Maharashtra"}, "\u0100bu Road": {"country": "India", "subcountry": "Rajasthan"}, "\u0100bu": {"country": "India", "subcountry": "Rajasthan"}, "Abohar": {"country": "India", "subcountry": "Punjab"}, "Abhay\u0101puri": {"country": "India", "subcountry": "Assam"}, "Contai": {"country": "India", "subcountry": "West Bengal"}, "Haldia": {"country": "India", "subcountry": "West Bengal"}, "Srir\u0101mpur": {"country": "India", "subcountry": "West Bengal"}, "Dumjor": {"country": "India", "subcountry": "West Bengal"}, "Bankra": {"country": "India", "subcountry": "West Bengal"}, "Chakapara": {"country": "India", "subcountry": "West Bengal"}, "Mahiari": {"country": "India", "subcountry": "West Bengal"}, "Dhulagari": {"country": "India", "subcountry": "West Bengal"}, "P\u0101nchla": {"country": "India", "subcountry": "West Bengal"}, "Nangi": {"country": "India", "subcountry": "West Bengal"}, "Pujali": {"country": "India", "subcountry": "West Bengal"}, "Monoharpur": {"country": "India", "subcountry": "West Bengal"}, "Nabagr\u0101m": {"country": "India", "subcountry": "West Bengal"}, "Soy\u012bbug": {"country": "India", "subcountry": "Kashmir"}, "Sing\u0101pur": {"country": "India", "subcountry": "Telangana"}, "Ghatkesar": {"country": "India", "subcountry": "Telangana"}, "Vijayapura": {"country": "India", "subcountry": "Karnataka"}, "\u0100dampur": {"country": "India", "subcountry": "Punjab"}, "Porur": {"country": "India", "subcountry": "Tamil Nadu"}, "Madipakkam": {"country": "India", "subcountry": "Tamil Nadu"}, "Perungudi": {"country": "India", "subcountry": "Tamil Nadu"}, "Madambakkam": {"country": "India", "subcountry": "Tamil Nadu"}, "Powai": {"country": "India", "subcountry": "Maharashtra"}, "Navi Mumbai": {"country": "India", "subcountry": "Maharashtra"}, "Murudeshwara": {"country": "India", "subcountry": "Karnataka"}, "Shivaji Nagar": {"country": "India", "subcountry": "Maharashtra"}, "Greater Noida": {"country": "India", "subcountry": "Uttar Pradesh"}, "Mohali": {"country": "India", "subcountry": "Punjab"}, "Pithampur": {"country": "India", "subcountry": "Madhya Pradesh"}, "Barbil": {"country": "India", "subcountry": "Odisha"}, "Airoli": {"country": "India", "subcountry": "Maharashtra"}, "Kotkapura": {"country": "India", "subcountry": "Punjab"}, "Muvattupuzha": {"country": "India", "subcountry": "Kerala"}, "Perumbavoor": {"country": "India", "subcountry": "Kerala"}, "Vapi": {"country": "India", "subcountry": "Gujarat"}, "Baddi": {"country": "India", "subcountry": "Himachal Pradesh"}, "Noida": {"country": "India", "subcountry": "Uttar Pradesh"}, "Bhiwadi": {"country": "India", "subcountry": "Rajasthan"}, "Mandideep": {"country": "India", "subcountry": "Madhya Pradesh"}, "Singrauli": {"country": "India", "subcountry": "Madhya Pradesh"}, "Birpara": {"country": "India", "subcountry": "West Bengal"}, "Jaigaon": {"country": "India", "subcountry": "West Bengal"}, "Akkarampalle": {"country": "India", "subcountry": "Andhra Pradesh"}, "Bellampalli": {"country": "India", "subcountry": "Telangana"}, "Chemmumiahpet": {"country": "India", "subcountry": "Andhra Pradesh"}, "Gaddi Annaram": {"country": "India", "subcountry": "Telangana"}, "Dasnapur": {"country": "India", "subcountry": "Telangana"}, "Kanuru": {"country": "India", "subcountry": "Andhra Pradesh"}, "Lal Bahadur Nagar": {"country": "India", "subcountry": "Telangana"}, "Malkajgiri": {"country": "India", "subcountry": "Telangana"}, "Mandamarri": {"country": "India", "subcountry": "Telangana"}, "Chinnachowk": {"country": "India", "subcountry": "Andhra Pradesh"}, "Kyathampalle": {"country": "India", "subcountry": "Telangana"}, "Gajuwaka": {"country": "India", "subcountry": "Andhra Pradesh"}, "Manuguru": {"country": "India", "subcountry": "Telangana"}, "Kalyandurg": {"country": "India", "subcountry": "Andhra Pradesh"}, "Ponnur": {"country": "India", "subcountry": "Andhra Pradesh"}, "Quthbullapur": {"country": "India", "subcountry": "Telangana"}, "Ramanayyapeta": {"country": "India", "subcountry": "Andhra Pradesh"}, "Palwancha": {"country": "India", "subcountry": "Telangana"}, "Barpeta Road": {"country": "India", "subcountry": "Assam"}, "Sathupalli": {"country": "India", "subcountry": "Telangana"}, "Yanamalakuduru": {"country": "India", "subcountry": "Andhra Pradesh"}, "Marigaon": {"country": "India", "subcountry": "Assam"}, "Naharlagun": {"country": "India", "subcountry": "Arunachal Pradesh"}, "Serilingampalle": {"country": "India", "subcountry": "Telangana"}, "Silapathar": {"country": "India", "subcountry": "Assam"}, "Lumding Railway Colony": {"country": "India", "subcountry": "Assam"}, "Aistala": {"country": "India", "subcountry": "West Bengal"}, "Ashoknagar Kalyangarh": {"country": "India", "subcountry": "West Bengal"}, "Bahula": {"country": "India", "subcountry": "West Bengal"}, "Bhawanipur": {"country": "India", "subcountry": "Bihar"}, "Zira": {"country": "India", "subcountry": "Punjab"}, "Ramagundam": {"country": "India", "subcountry": "Telangana"}, "Cherpulassery": {"country": "India", "subcountry": "Kerala"}, "Kirandul": {"country": "India", "subcountry": "Chhattisgarh"}, "Shiraguppi": {"country": "India", "subcountry": "Maharashtra"}, "V.S.K.Valasai (Dindigul-Dist.)": {"country": "India", "subcountry": "Tamil Nadu"}, "Neelankarai": {"country": "India", "subcountry": "Tamil Nadu"}, "Injambakkam": {"country": "India", "subcountry": "Tamil Nadu"}, "Kultali": {"country": "India", "subcountry": "West Bengal"}, "Shahbazpur": {"country": "India", "subcountry": "Bihar"}, "Kumbalam": {"country": "India", "subcountry": "Kerala"}, "Aroor": {"country": "India", "subcountry": "Kerala"}, "Kadakkavoor": {"country": "India", "subcountry": "Kerala"}, "Kalavoor": {"country": "India", "subcountry": "Kerala"}, "Kalamassery": {"country": "India", "subcountry": "Kerala"}, "Cherthala": {"country": "India", "subcountry": "Kerala"}, "Zaxo": {"country": "Iraq", "subcountry": "Dah\u016bk"}, "Umm Qa\u015fr": {"country": "Iraq", "subcountry": "Basra Governorate"}, "Tozkhurmato": {"country": "Iraq", "subcountry": "Salah ad Din Governorate"}, "Tikr\u012bt": {"country": "Iraq", "subcountry": "Salah ad Din Governorate"}, "Tallkayf": {"country": "Iraq", "subcountry": "N\u012bnaw\u00e1"}, "S\u012bnah": {"country": "Iraq", "subcountry": "Dah\u016bk"}, "S\u0101marr\u0101\u2019": {"country": "Iraq", "subcountry": "Salah ad Din Governorate"}, "N\u0101\u1e29\u012byat Saddat Al Hind\u012byah": {"country": "Iraq", "subcountry": "B\u0101bil"}, "Ruw\u0101ndiz": {"country": "Iraq", "subcountry": "Arb\u012bl"}, "R\u0101wah": {"country": "Iraq", "subcountry": "Anbar"}, "Al-Hamdaniya": {"country": "Iraq", "subcountry": "N\u012bnaw\u00e1"}, "Mandal\u012b": {"country": "Iraq", "subcountry": "Diy\u0101l\u00e1"}, "Koysinceq": {"country": "Iraq", "subcountry": "Arb\u012bl"}, "Kifr\u012b": {"country": "Iraq", "subcountry": "Diy\u0101l\u00e1"}, "Kirkuk": {"country": "Iraq", "subcountry": "At Ta\u02bcm\u012bm"}, "Karbala": {"country": "Iraq", "subcountry": "Karbal\u0101\u02bc"}, "Erbil": {"country": "Iraq", "subcountry": "Arb\u012bl"}, "H\u012bt": {"country": "Iraq", "subcountry": "Anbar"}, "\u1e28alabjah": {"country": "Iraq", "subcountry": "As Sulaym\u0101n\u012byah"}, "\u1e28ad\u012bthah": {"country": "Iraq", "subcountry": "Anbar"}, "Dihok": {"country": "Iraq", "subcountry": "Dah\u016bk"}, "Jamjam\u0101l": {"country": "Iraq", "subcountry": "As Sulaym\u0101n\u012byah"}, "Bayj\u012b": {"country": "Iraq", "subcountry": "Salah ad Din Governorate"}, "Baqubah": {"country": "Iraq", "subcountry": "Diy\u0101l\u00e1"}, "Baynjiwayn": {"country": "Iraq", "subcountry": "As Sulaym\u0101n\u012byah"}, "Balad": {"country": "Iraq", "subcountry": "Salah ad Din Governorate"}, "Baghdad": {"country": "Iraq", "subcountry": "Mayorality of Baghdad"}, "Az Zubayr": {"country": "Iraq", "subcountry": "Basra Governorate"}, "A\u015f \u015euwayrah": {"country": "Iraq", "subcountry": "W\u0101si\u0163"}, "As Sulaym\u0101n\u012byah": {"country": "Iraq", "subcountry": "As Sulaym\u0101n\u012byah"}, "As Samawah": {"country": "Iraq", "subcountry": "Al Muthann\u00e1"}, "N\u0101\u1e29iyat Ash Shin\u0101f\u012byah": {"country": "Iraq", "subcountry": "Al Q\u0101dis\u012byah"}, "Ash Sha\u0163rah": {"country": "Iraq", "subcountry": "Dhi Qar"}, "Ash Sh\u0101m\u012byah": {"country": "Iraq", "subcountry": "Al Q\u0101dis\u012byah"}, "Ar Ru\u0163bah": {"country": "Iraq", "subcountry": "Anbar"}, "Ar Rumaythah": {"country": "Iraq", "subcountry": "Al Muthann\u00e1"}, "Ramadi": {"country": "Iraq", "subcountry": "Anbar"}, "\u2018Aqrah": {"country": "Iraq", "subcountry": "N\u012bnaw\u00e1"}, "An N\u0101\u015fir\u012byah": {"country": "Iraq", "subcountry": "Dhi Qar"}, "Najaf": {"country": "Iraq", "subcountry": "An Najaf"}, "\u2018Anat Al Qad\u012bmah": {"country": "Iraq", "subcountry": "Anbar"}, "Imam Qasim": {"country": "Iraq", "subcountry": "B\u0101bil"}, "Al Musayyib": {"country": "Iraq", "subcountry": "B\u0101bil"}, "Al Mishkh\u0101b": {"country": "Iraq", "subcountry": "An Najaf"}, "Al Miqd\u0101d\u012byah": {"country": "Iraq", "subcountry": "Diy\u0101l\u00e1"}, "Al Maw\u015fil Al Jad\u012bdah": {"country": "Iraq", "subcountry": "N\u012bnaw\u00e1"}, "Mosul": {"country": "Iraq", "subcountry": "N\u012bnaw\u00e1"}, "Al K\u016bt": {"country": "Iraq", "subcountry": "W\u0101si\u0163"}, "Kufa": {"country": "Iraq", "subcountry": "An Najaf"}, "Kh\u0101li\u015f": {"country": "Iraq", "subcountry": "Diy\u0101l\u00e1"}, "\u2018Al\u012b Al Gharb\u012b": {"country": "Iraq", "subcountry": "Maysan"}, "Al Hind\u012byah": {"country": "Iraq", "subcountry": "Karbal\u0101\u02bc"}, "Al \u1e28illah": {"country": "Iraq", "subcountry": "B\u0101bil"}, "Al \u1e28ayy": {"country": "Iraq", "subcountry": "W\u0101si\u0163"}, "Al H\u0101rithah": {"country": "Iraq", "subcountry": "Basra Governorate"}, "Nahiyat Ghammas": {"country": "Iraq", "subcountry": "Al Q\u0101dis\u012byah"}, "N\u0101\u1e29iyat Al Fuh\u016bd": {"country": "Iraq", "subcountry": "Dhi Qar"}, "Al F\u0101w": {"country": "Iraq", "subcountry": "Basra Governorate"}, "Al Fall\u016bjah": {"country": "Iraq", "subcountry": "Anbar"}, "Basrah": {"country": "Iraq", "subcountry": "Basra Governorate"}, "Al \u2018Az\u012bz\u012byah": {"country": "Iraq", "subcountry": "W\u0101si\u0163"}, "Al \u2018Am\u0101rah": {"country": "Iraq", "subcountry": "Maysan"}, "\u2018Afak": {"country": "Iraq", "subcountry": "Al Q\u0101dis\u012byah"}, "Ad Dujayl": {"country": "Iraq", "subcountry": "Salah ad Din Governorate"}, "Ad D\u012bw\u0101n\u012byah": {"country": "Iraq", "subcountry": "Al Q\u0101dis\u012byah"}, "Ab\u016b Ghurayb": {"country": "Iraq", "subcountry": "Mayorality of Baghdad"}, "Al Ba\u015frah Al Qad\u012bmah": {"country": "Iraq", "subcountry": "Basra Governorate"}, "Sinj\u0101r": {"country": "Iraq", "subcountry": "N\u012bnaw\u00e1"}, "\u0100z\u0101dshahr": {"country": "Iran", "subcountry": "Golest\u0101n"}, "Kahr\u012bz": {"country": "Iran", "subcountry": "Kerm\u0101nsh\u0101h"}, "N\u016br\u0101b\u0101d": {"country": "Iran", "subcountry": "Fars"}, "\u012astg\u0101h-E R\u0101h \u0100han-E Garms\u0101r": {"country": "Iran", "subcountry": "Semn\u0101n"}, "Qarchak": {"country": "Iran", "subcountry": "Tehr\u0101n"}, "Shahre Jadide Andisheh": {"country": "Iran", "subcountry": "Tehr\u0101n"}, "Khorramdarreh": {"country": "Iran", "subcountry": "Zanjan"}, "Yasuj": {"country": "Iran", "subcountry": "Kohg\u012bl\u016byeh va B\u016byer A\u1e29mad"}, "Zarand": {"country": "Iran", "subcountry": "Kerman"}, "Zanj\u0101n": {"country": "Iran", "subcountry": "Zanjan"}, "Yazd": {"country": "Iran", "subcountry": "Yazd"}, "Var\u0101m\u012bn": {"country": "Iran", "subcountry": "Tehr\u0101n"}, "Torbat-E \u1e28eydar\u012byeh": {"country": "Iran", "subcountry": "Razavi Khorasan"}, "Tonek\u0101bon": {"country": "Iran", "subcountry": "M\u0101zandar\u0101n"}, "Tehran": {"country": "Iran", "subcountry": "Tehr\u0101n"}, "Hashtpar": {"country": "Iran", "subcountry": "G\u012bl\u0101n"}, "T\u0101kest\u0101n": {"country": "Iran", "subcountry": "Qazv\u012bn"}, "Tak\u0101b": {"country": "Iran", "subcountry": "\u0100z\u0304\u0101rb\u0101yj\u0101n-e Gharb\u012b"}, "Taft": {"country": "Iran", "subcountry": "Yazd"}, "Tabriz": {"country": "Iran", "subcountry": "East Azerbaijan"}, "Tabas": {"country": "Iran", "subcountry": "Yazd"}, "Sonqor": {"country": "Iran", "subcountry": "Kerm\u0101nsh\u0101h"}, "Sirjan": {"country": "Iran", "subcountry": "Kerman"}, "Sh\u016bshtar": {"country": "Iran", "subcountry": "Khuzestan"}, "Sh\u016bsh": {"country": "Iran", "subcountry": "Khuzestan"}, "Sh\u012brv\u0101n": {"country": "Iran", "subcountry": "Khor\u0101s\u0101n-e Shom\u0101l\u012b"}, "Shiraz": {"country": "Iran", "subcountry": "Fars"}, "Shahr-E Kord": {"country": "Iran", "subcountry": "Chah\u0101r Ma\u1e29\u0101ll va Bakht\u012b\u0101r\u012b"}, "Shahr-E B\u0101bak": {"country": "Iran", "subcountry": "Kerman"}, "Sh\u0101deg\u0101n": {"country": "Iran", "subcountry": "Khuzestan"}, "Semn\u0101n": {"country": "Iran", "subcountry": "Semn\u0101n"}, "Sem\u012brom": {"country": "Iran", "subcountry": "Isfahan"}, "S\u0101veh": {"country": "Iran", "subcountry": "Markazi"}, "Sari": {"country": "Iran", "subcountry": "M\u0101zandar\u0101n"}, "Saqqez": {"country": "Iran", "subcountry": "Kordest\u0101n"}, "Sanandaj": {"country": "Iran", "subcountry": "Kordest\u0101n"}, "Salm\u0101s": {"country": "Iran", "subcountry": "\u0100z\u0304\u0101rb\u0101yj\u0101n-e Gharb\u012b"}, "Sh\u0101h\u012bn Dezh": {"country": "Iran", "subcountry": "\u0100z\u0304\u0101rb\u0101yj\u0101n-e Gharb\u012b"}, "Sabzevar": {"country": "Iran", "subcountry": "Razavi Khorasan"}, "R\u016bdsar": {"country": "Iran", "subcountry": "G\u012bl\u0101n"}, "Rob\u0101\u0163 Kar\u012bm": {"country": "Iran", "subcountry": "Tehr\u0101n"}, "R\u0101var": {"country": "Iran", "subcountry": "Kerman"}, "Rasht": {"country": "Iran", "subcountry": "G\u012bl\u0101n"}, "R\u0101msh\u012br": {"country": "Iran", "subcountry": "Khuzestan"}, "R\u0101mhormoz": {"country": "Iran", "subcountry": "Khuzestan"}, "Rafsanj\u0101n": {"country": "Iran", "subcountry": "Kerman"}, "Q\u016bch\u0101n": {"country": "Iran", "subcountry": "Razavi Khorasan"}, "Qorveh": {"country": "Iran", "subcountry": "Kordest\u0101n"}, "Qom": {"country": "Iran", "subcountry": "Qom"}, "Qeshm": {"country": "Iran", "subcountry": "Hormozgan"}, "Qazvin": {"country": "Iran", "subcountry": "Qazv\u012bn"}, "Qarah \u1e94\u012b\u0101\u2019 Od D\u012bn": {"country": "Iran", "subcountry": "\u0100z\u0304\u0101rb\u0101yj\u0101n-e Gharb\u012b"}, "Farrokh Shahr": {"country": "Iran", "subcountry": "Chah\u0101r Ma\u1e29\u0101ll va Bakht\u012b\u0101r\u012b"}, "Q\u0101\u2019En": {"country": "Iran", "subcountry": "Khor\u0101s\u0101n-e Jon\u016bb\u012b"}, "Sarpol-E Z\u0304Ah\u0101b": {"country": "Iran", "subcountry": "Kerm\u0101nsh\u0101h"}, "P\u012bshv\u0101": {"country": "Iran", "subcountry": "Tehr\u0101n"}, "Piranshahr": {"country": "Iran", "subcountry": "\u0100z\u0304\u0101rb\u0101yj\u0101n-e Gharb\u012b"}, "P\u0101veh": {"country": "Iran", "subcountry": "Kerm\u0101nsh\u0101h"}, "P\u0101rs\u0101b\u0101d": {"country": "Iran", "subcountry": "Ardab\u012bl"}, "Oshnav\u012byeh": {"country": "Iran", "subcountry": "\u0100z\u0304\u0101rb\u0101yj\u0101n-e Gharb\u012b"}, "Or\u016bm\u012byeh": {"country": "Iran", "subcountry": "\u0100z\u0304\u0101rb\u0101yj\u0101n-e Gharb\u012b"}, "Om\u012bd\u012byeh": {"country": "Iran", "subcountry": "Khuzestan"}, "Nowshahr": {"country": "Iran", "subcountry": "M\u0101zandar\u0101n"}, "N\u012bsh\u0101b\u016br": {"country": "Iran", "subcountry": "Razavi Khorasan"}, "Neyr\u012bz": {"country": "Iran", "subcountry": "Fars"}, "Nek\u0101": {"country": "Iran", "subcountry": "M\u0101zandar\u0101n"}, "Naz\u0327Ar\u0101b\u0101d": {"country": "Iran", "subcountry": "Alborz"}, "Naqadeh": {"country": "Iran", "subcountry": "\u0100z\u0304\u0101rb\u0101yj\u0101n-e Gharb\u012b"}, "Nah\u0101vand": {"country": "Iran", "subcountry": "Hamad\u0101n"}, "M\u012bn\u0101b": {"country": "Iran", "subcountry": "Hormozgan"}, "M\u012b\u0101ndo\u0101b": {"country": "Iran", "subcountry": "\u0100z\u0304\u0101rb\u0101yj\u0101n-e Gharb\u012b"}, "Meybod": {"country": "Iran", "subcountry": "Yazd"}, "Mahr\u012bz": {"country": "Iran", "subcountry": "Yazd"}, "Masjed Soleym\u0101n": {"country": "Iran", "subcountry": "Khuzestan"}, "Bards\u012br": {"country": "Iran", "subcountry": "Kerman"}, "Mashhad": {"country": "Iran", "subcountry": "Razavi Khorasan"}, "Marand": {"country": "Iran", "subcountry": "East Azerbaijan"}, "Mal\u0101yer": {"country": "Iran", "subcountry": "Hamad\u0101n"}, "Mal\u0101rd": {"country": "Iran", "subcountry": "Tehr\u0101n"}, "Mah\u0101b\u0101d": {"country": "Iran", "subcountry": "\u0100z\u0304\u0101rb\u0101yj\u0101n-e Gharb\u012b"}, "Langar\u016bd": {"country": "Iran", "subcountry": "G\u012bl\u0101n"}, "K\u016bhdasht": {"country": "Iran", "subcountry": "Lorest\u0101n"}, "K\u012bsh": {"country": "Iran", "subcountry": "Hormozgan"}, "Khvoy": {"country": "Iran", "subcountry": "\u0100z\u0304\u0101rb\u0101yj\u0101n-e Gharb\u012b"}, "Khv\u0101ns\u0101r": {"country": "Iran", "subcountry": "Isfahan"}, "Khorramshahr": {"country": "Iran", "subcountry": "Khuzestan"}, "Khorramabad": {"country": "Iran", "subcountry": "Lorest\u0101n"}, "Khomeyn": {"country": "Iran", "subcountry": "Markazi"}, "Khalkh\u0101l": {"country": "Iran", "subcountry": "Ardab\u012bl"}, "Kerm\u0101nsh\u0101h": {"country": "Iran", "subcountry": "Kerm\u0101nsh\u0101h"}, "Kerman": {"country": "Iran", "subcountry": "Kerman"}, "K\u0101zer\u016bn": {"country": "Iran", "subcountry": "Fars"}, "K\u0101shmar": {"country": "Iran", "subcountry": "Razavi Khorasan"}, "K\u0101sh\u0101n": {"country": "Iran", "subcountry": "Isfahan"}, "Karaj": {"country": "Iran", "subcountry": "Alborz"}, "Kang\u0101var": {"country": "Iran", "subcountry": "Kerm\u0101nsh\u0101h"}, "K\u0101my\u0101r\u0101n": {"country": "Iran", "subcountry": "Kordest\u0101n"}, "Kal\u0101leh": {"country": "Iran", "subcountry": "Golest\u0101n"}, "J\u016byb\u0101r": {"country": "Iran", "subcountry": "M\u0101zandar\u0101n"}, "Jav\u0101nr\u016bd": {"country": "Iran", "subcountry": "Kerm\u0101nsh\u0101h"}, "\u012al\u0101m": {"country": "Iran", "subcountry": "\u012al\u0101m"}, "Hars\u012bn": {"country": "Iran", "subcountry": "Kerm\u0101nsh\u0101h"}, "Hamad\u0101n": {"country": "Iran", "subcountry": "Hamad\u0101n"}, "Gorg\u0101n": {"country": "Iran", "subcountry": "Golest\u0101n"}, "Gonbad-E K\u0101v\u016bs": {"country": "Iran", "subcountry": "Golest\u0101n"}, "Gon\u0101b\u0101d": {"country": "Iran", "subcountry": "Razavi Khorasan"}, "Golp\u0101yeg\u0101n": {"country": "Iran", "subcountry": "Isfahan"}, "Ger\u0101sh": {"country": "Iran", "subcountry": "Fars"}, "Bandar-E Gan\u0101veh": {"country": "Iran", "subcountry": "Bushehr"}, "F\u016bman": {"country": "Iran", "subcountry": "G\u012bl\u0101n"}, "F\u012br\u016bz\u0101b\u0101d": {"country": "Iran", "subcountry": "Fars"}, "Fereyd\u016bnken\u0101r": {"country": "Iran", "subcountry": "M\u0101zandar\u0101n"}, "Fas\u0101": {"country": "Iran", "subcountry": "Fars"}, "F\u0101rs\u0101n": {"country": "Iran", "subcountry": "Chah\u0101r Ma\u1e29\u0101ll va Bakht\u012b\u0101r\u012b"}, "Esfar\u0101yen": {"country": "Iran", "subcountry": "Khor\u0101s\u0101n-e Shom\u0101l\u012b"}, "Shahrud": {"country": "Iran", "subcountry": "Semn\u0101n"}, "Dogonbadan": {"country": "Iran", "subcountry": "Kohg\u012bl\u016byeh va B\u016byer A\u1e29mad"}, "Del\u012bj\u0101n": {"country": "Iran", "subcountry": "Markazi"}, "Dehlor\u0101n": {"country": "Iran", "subcountry": "\u012al\u0101m"}, "Dehdasht": {"country": "Iran", "subcountry": "Kohg\u012bl\u016byeh va B\u016byer A\u1e29mad"}, "S\u016bsangerd": {"country": "Iran", "subcountry": "Khuzestan"}, "Darreh Shahr": {"country": "Iran", "subcountry": "\u012al\u0101m"}, "D\u0101r\u0101b": {"country": "Iran", "subcountry": "Fars"}, "D\u0101mgh\u0101n": {"country": "Iran", "subcountry": "Semn\u0101n"}, "Dam\u0101vand": {"country": "Iran", "subcountry": "Tehr\u0101n"}, "Chen\u0101r\u0101n": {"country": "Iran", "subcountry": "Razavi Khorasan"}, "Ch\u0101l\u016bs": {"country": "Iran", "subcountry": "M\u0101zandar\u0101n"}, "Bandar-E B\u016bshehr": {"country": "Iran", "subcountry": "Bushehr"}, "B\u016bk\u0101n": {"country": "Iran", "subcountry": "\u0100z\u0304\u0101rb\u0101yj\u0101n-e Gharb\u012b"}, "Bor\u016bjerd": {"country": "Iran", "subcountry": "Lorest\u0101n"}, "Bor\u016bjen": {"country": "Iran", "subcountry": "Chah\u0101r Ma\u1e29\u0101ll va Bakht\u012b\u0101r\u012b"}, "Bor\u0101zj\u0101n": {"country": "Iran", "subcountry": "Bushehr"}, "Bojn\u016brd": {"country": "Iran", "subcountry": "Khor\u0101s\u0101n-e Shom\u0101l\u012b"}, "B\u012brjand": {"country": "Iran", "subcountry": "Khor\u0101s\u0101n-e Jon\u016bb\u012b"}, "B\u012bj\u0101r": {"country": "Iran", "subcountry": "Kordest\u0101n"}, "Bon\u0101b": {"country": "Iran", "subcountry": "East Azerbaijan"}, "Behshahr": {"country": "Iran", "subcountry": "M\u0101zandar\u0101n"}, "Behbah\u0101n": {"country": "Iran", "subcountry": "Khuzestan"}, "B\u0101neh": {"country": "Iran", "subcountry": "Kordest\u0101n"}, "Bandar-E Lengeh": {"country": "Iran", "subcountry": "Hormozgan"}, "Bandar-E Anzal\u012b": {"country": "Iran", "subcountry": "G\u012bl\u0101n"}, "Bandar \u2018Abb\u0101s": {"country": "Iran", "subcountry": "Hormozgan"}, "Bam": {"country": "Iran", "subcountry": "Kerman"}, "Bah\u0101r": {"country": "Iran", "subcountry": "Hamad\u0101n"}, "B\u0101fq": {"country": "Iran", "subcountry": "Yazd"}, "B\u0101bolsar": {"country": "Iran", "subcountry": "M\u0101zandar\u0101n"}, "B\u0101bol": {"country": "Iran", "subcountry": "M\u0101zandar\u0101n"}, "Azn\u0101": {"country": "Iran", "subcountry": "Lorest\u0101n"}, "Hashtr\u016bd": {"country": "Iran", "subcountry": "East Azerbaijan"}, "\u0100st\u0101r\u0101": {"country": "Iran", "subcountry": "G\u012bl\u0101n"}, "\u0100st\u0101neh-Ye Ashraf\u012byeh": {"country": "Iran", "subcountry": "G\u012bl\u0101n"}, "Ardest\u0101n": {"country": "Iran", "subcountry": "Isfahan"}, "Ardak\u0101n": {"country": "Iran", "subcountry": "Yazd"}, "Ardab\u012bl": {"country": "Iran", "subcountry": "Ardab\u012bl"}, "Ar\u0101k": {"country": "Iran", "subcountry": "Markazi"}, "\u0100mol": {"country": "Iran", "subcountry": "M\u0101zandar\u0101n"}, "Alvand": {"country": "Iran", "subcountry": "Zanjan"}, "Shahr\u012b\u0101r": {"country": "Iran", "subcountry": "Tehr\u0101n"}, "Al\u012bg\u016bdarz": {"country": "Iran", "subcountry": "Lorest\u0101n"}, "Aleshtar": {"country": "Iran", "subcountry": "Lorest\u0101n"}, "Akbar\u0101b\u0101d": {"country": "Iran", "subcountry": "Fars"}, "\u2018Ajab Sh\u012br": {"country": "Iran", "subcountry": "East Azerbaijan"}, "Ahvaz": {"country": "Iran", "subcountry": "Khuzestan"}, "Ahar": {"country": "Iran", "subcountry": "East Azerbaijan"}, "Aghajari": {"country": "Iran", "subcountry": "Khuzestan"}, "\u0100byek": {"country": "Iran", "subcountry": "Markazi"}, "Abhar": {"country": "Iran", "subcountry": "Zanjan"}, "\u0100bd\u0101n\u0101n": {"country": "Iran", "subcountry": "\u012al\u0101m"}, "\u0100b\u0101deh": {"country": "Iran", "subcountry": "Fars"}, "Abadan": {"country": "Turkmenistan", "subcountry": "Ahal"}, "Eqb\u0101l\u012byeh": {"country": "Iran", "subcountry": "Tehr\u0101n"}, "Sh\u0101hre\u1e95\u0101": {"country": "Iran", "subcountry": "Isfahan"}, "Rehn\u0101n": {"country": "Iran", "subcountry": "Isfahan"}, "Qahder\u012bj\u0101n": {"country": "Iran", "subcountry": "Isfahan"}, "Najaf\u0101b\u0101d": {"country": "Iran", "subcountry": "Isfahan"}, "Khomeyn\u012b Shahr": {"country": "Iran", "subcountry": "Isfahan"}, "Kel\u012bsh\u0101d Va S\u016bdarj\u0101n": {"country": "Iran", "subcountry": "Isfahan"}, "Fal\u0101varj\u0101n": {"country": "Iran", "subcountry": "Isfahan"}, "Isfahan": {"country": "Iran", "subcountry": "Isfahan"}, "Dowlat\u0101b\u0101d": {"country": "Iran", "subcountry": "Isfahan"}, "Dorcheh P\u012b\u0101z": {"country": "Iran", "subcountry": "Isfahan"}, "Z\u0101bol": {"country": "Iran", "subcountry": "Sistan and Baluchestan"}, "Zahedan": {"country": "Iran", "subcountry": "Sistan and Baluchestan"}, "Torbat-E J\u0101m": {"country": "Iran", "subcountry": "Razavi Khorasan"}, "T\u0101yb\u0101d": {"country": "Iran", "subcountry": "Razavi Khorasan"}, "Sarakhs": {"country": "Iran", "subcountry": "Razavi Khorasan"}, "Qa\u015fr-E Qand": {"country": "Iran", "subcountry": "Sistan and Baluchestan"}, "\u012ar\u0101nshahr": {"country": "Iran", "subcountry": "Sistan and Baluchestan"}, "Chabahar": {"country": "Iran", "subcountry": "Sistan and Baluchestan"}, "Mahdishahr": {"country": "Iran", "subcountry": "Semn\u0101n"}, "Pasragad Branch": {"country": "Iran", "subcountry": "Hamad\u0101n"}, "Akureyri": {"country": "Iceland", "subcountry": "Northeast"}, "Reykjav\u00edk": {"country": "Iceland", "subcountry": "Capital Region"}, "K\u00f3pavogur": {"country": "Iceland", "subcountry": "Capital Region"}, "Hafnarfj\u00f6r\u00f0ur": {"country": "Iceland", "subcountry": "Capital Region"}, "Vittoria": {"country": "Italy", "subcountry": "Sicily"}, "Villabate": {"country": "Italy", "subcountry": "Sicily"}, "Vibo Valentia": {"country": "Italy", "subcountry": "Calabria"}, "Trapani": {"country": "Italy", "subcountry": "Sicily"}, "Termini Imerese": {"country": "Italy", "subcountry": "Sicily"}, "Siracusa": {"country": "Italy", "subcountry": "Sicily"}, "Sinnai": {"country": "Italy", "subcountry": "Sardinia"}, "Siderno": {"country": "Italy", "subcountry": "Calabria"}, "Sestu": {"country": "Italy", "subcountry": "Sardinia"}, "Selargius": {"country": "Italy", "subcountry": "Sardinia"}, "Scordia": {"country": "Italy", "subcountry": "Sicily"}, "Scicli": {"country": "Italy", "subcountry": "Sicily"}, "Sciacca": {"country": "Italy", "subcountry": "Sicily"}, "San Giovanni La Punta": {"country": "Italy", "subcountry": "Sicily"}, "San Giovanni In Fiore": {"country": "Italy", "subcountry": "Calabria"}, "San Cataldo": {"country": "Italy", "subcountry": "Sicily"}, "Rossano Stazione": {"country": "Italy", "subcountry": "Calabria"}, "Rosolini": {"country": "Italy", "subcountry": "Sicily"}, "Ribera": {"country": "Italy", "subcountry": "Sicily"}, "Reggio Calabria": {"country": "Italy", "subcountry": "Calabria"}, "Ragusa": {"country": "Italy", "subcountry": "Sicily"}, "Quattromiglia": {"country": "Italy", "subcountry": "Calabria"}, "Quartu Sant'Elena": {"country": "Italy", "subcountry": "Sardinia"}, "Pozzallo": {"country": "Italy", "subcountry": "Sicily"}, "Porto Empedocle": {"country": "Italy", "subcountry": "Sicily"}, "Piazza Armerina": {"country": "Italy", "subcountry": "Sicily"}, "Patern\u00f2": {"country": "Italy", "subcountry": "Sicily"}, "Partinico": {"country": "Italy", "subcountry": "Sicily"}, "Palmi": {"country": "Italy", "subcountry": "Calabria"}, "Palma Di Montechiaro": {"country": "Italy", "subcountry": "Sicily"}, "Palermo": {"country": "Italy", "subcountry": "Sicily"}, "Palagonia": {"country": "Italy", "subcountry": "Sicily"}, "Pachino": {"country": "Italy", "subcountry": "Sicily"}, "Oristano": {"country": "Italy", "subcountry": "Sardinia"}, "Noto": {"country": "Italy", "subcountry": "Sicily"}, "Niscemi": {"country": "Italy", "subcountry": "Sicily"}, "Nicastro-Sambiase": {"country": "Italy", "subcountry": "Calabria"}, "Monserrato": {"country": "Italy", "subcountry": "Sardinia"}, "Monreale": {"country": "Italy", "subcountry": "Sicily"}, "Modica": {"country": "Italy", "subcountry": "Sicily"}, "Misterbianco": {"country": "Italy", "subcountry": "Sicily"}, "Misilmeri": {"country": "Italy", "subcountry": "Sicily"}, "Milazzo": {"country": "Italy", "subcountry": "Sicily"}, "Messina": {"country": "South Africa", "subcountry": "Limpopo"}, "Mazara Del Vallo": {"country": "Italy", "subcountry": "Sicily"}, "Mascalucia": {"country": "Italy", "subcountry": "Sicily"}, "Marsala": {"country": "Italy", "subcountry": "Sicily"}, "Licata": {"country": "Italy", "subcountry": "Sicily"}, "Lentini": {"country": "Italy", "subcountry": "Sicily"}, "Iglesias": {"country": "Italy", "subcountry": "Sardinia"}, "Gioia Tauro": {"country": "Italy", "subcountry": "Calabria"}, "Giarre": {"country": "Italy", "subcountry": "Sicily"}, "Gela": {"country": "Italy", "subcountry": "Sicily"}, "Floridia": {"country": "Italy", "subcountry": "Sicily"}, "Favara": {"country": "Italy", "subcountry": "Sicily"}, "Enna": {"country": "Italy", "subcountry": "Sicily"}, "Crotone": {"country": "Italy", "subcountry": "Calabria"}, "Cosenza": {"country": "Italy", "subcountry": "Calabria"}, "Comiso": {"country": "Italy", "subcountry": "Sicily"}, "Catanzaro": {"country": "Italy", "subcountry": "Calabria"}, "Catania": {"country": "Italy", "subcountry": "Sicily"}, "Castrovillari": {"country": "Italy", "subcountry": "Calabria"}, "Castelvetrano": {"country": "Italy", "subcountry": "Sicily"}, "Casarano": {"country": "Italy", "subcountry": "Apulia"}, "Carini": {"country": "Italy", "subcountry": "Sicily"}, "Carbonia": {"country": "Italy", "subcountry": "Sardinia"}, "Canicatt\u00ec": {"country": "Italy", "subcountry": "Sicily"}, "Caltanissetta": {"country": "Italy", "subcountry": "Sicily"}, "Caltagirone": {"country": "Italy", "subcountry": "Sicily"}, "Cagliari": {"country": "Italy", "subcountry": "Sardinia"}, "Bronte": {"country": "Italy", "subcountry": "Sicily"}, "Biancavilla": {"country": "Italy", "subcountry": "Sicily"}, "Belpasso": {"country": "Italy", "subcountry": "Sicily"}, "Barcellona Pozzo Di Gotto": {"country": "Italy", "subcountry": "Sicily"}, "Bagheria": {"country": "Italy", "subcountry": "Sicily"}, "Avola": {"country": "Italy", "subcountry": "Sicily"}, "Augusta": {"country": "United States", "subcountry": "Maine"}, "Assemini": {"country": "Italy", "subcountry": "Sardinia"}, "Amato": {"country": "Italy", "subcountry": "Calabria"}, "Alcamo": {"country": "Italy", "subcountry": "Sicily"}, "Agrigento": {"country": "Italy", "subcountry": "Sicily"}, "Adrano": {"country": "Italy", "subcountry": "Sicily"}, "Acireale": {"country": "Italy", "subcountry": "Sicily"}, "Aci Catena": {"country": "Italy", "subcountry": "Sicily"}, "Aci Castello": {"country": "Italy", "subcountry": "Sicily"}, "Zola Predosa": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Voghera": {"country": "Italy", "subcountry": "Lombardy"}, "Vittorio Veneto": {"country": "Italy", "subcountry": "Veneto"}, "Vimodrone": {"country": "Italy", "subcountry": "Lombardy"}, "Vimercate": {"country": "Italy", "subcountry": "Lombardy"}, "Lancenigo-Villorba": {"country": "Italy", "subcountry": "Veneto"}, "Villaricca": {"country": "Italy", "subcountry": "Campania"}, "Villafranca Di Verona": {"country": "Italy", "subcountry": "Veneto"}, "Vignola": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Vigevano": {"country": "Italy", "subcountry": "Lombardy"}, "Vicenza": {"country": "Italy", "subcountry": "Veneto"}, "Viareggio": {"country": "Italy", "subcountry": "Tuscany"}, "Verona": {"country": "Italy", "subcountry": "Veneto"}, "Vercelli": {"country": "Italy", "subcountry": "Piedmont"}, "Ventimiglia": {"country": "Italy", "subcountry": "Liguria"}, "Venice": {"country": "United States", "subcountry": "Florida"}, "Venaria Reale": {"country": "Italy", "subcountry": "Piedmont"}, "Velletri": {"country": "Italy", "subcountry": "Latium"}, "Vasto": {"country": "Italy", "subcountry": "Abruzzo"}, "Varese": {"country": "Italy", "subcountry": "Lombardy"}, "Valenzano": {"country": "Italy", "subcountry": "Apulia"}, "Valenza": {"country": "Italy", "subcountry": "Piedmont"}, "Valdagno": {"country": "Italy", "subcountry": "Veneto"}, "Udine": {"country": "Italy", "subcountry": "Friuli Venezia Giulia"}, "Triggiano": {"country": "Italy", "subcountry": "Apulia"}, "Trieste": {"country": "Italy", "subcountry": "Friuli Venezia Giulia"}, "Trezzano Sul Naviglio": {"country": "Italy", "subcountry": "Lombardy"}, "Treviso": {"country": "Italy", "subcountry": "Veneto"}, "Treviglio": {"country": "Italy", "subcountry": "Lombardy"}, "Trentola-Ducenta": {"country": "Italy", "subcountry": "Campania"}, "Trento": {"country": "Philippines", "subcountry": "Caraga"}, "Trecate": {"country": "Italy", "subcountry": "Piedmont"}, "Trani": {"country": "Italy", "subcountry": "Apulia"}, "Tradate": {"country": "Italy", "subcountry": "Lombardy"}, "Tortona": {"country": "Italy", "subcountry": "Piedmont"}, "Torremaggiore": {"country": "Italy", "subcountry": "Apulia"}, "Torre Del Greco": {"country": "Italy", "subcountry": "Campania"}, "Torre Annunziata": {"country": "Italy", "subcountry": "Campania"}, "Turin": {"country": "Italy", "subcountry": "Piedmont"}, "Tolentino": {"country": "Italy", "subcountry": "The Marches"}, "Tivoli": {"country": "Italy", "subcountry": "Latium"}, "Thiene": {"country": "Italy", "subcountry": "Veneto"}, "Terzigno": {"country": "Italy", "subcountry": "Campania"}, "Terracina": {"country": "Italy", "subcountry": "Latium"}, "Terni": {"country": "Italy", "subcountry": "Umbria"}, "Termoli": {"country": "Italy", "subcountry": "Molise"}, "Terlizzi": {"country": "Italy", "subcountry": "Apulia"}, "Teramo": {"country": "Italy", "subcountry": "Abruzzo"}, "Taranto": {"country": "Italy", "subcountry": "Apulia"}, "Suzzara": {"country": "Italy", "subcountry": "Lombardy"}, "Sulmona": {"country": "Italy", "subcountry": "Abruzzo"}, "Spoleto": {"country": "Italy", "subcountry": "Umbria"}, "Sora": {"country": "Italy", "subcountry": "Latium"}, "Sondrio": {"country": "Italy", "subcountry": "Lombardy"}, "Somma Vesuviana": {"country": "Italy", "subcountry": "Campania"}, "Siena": {"country": "Italy", "subcountry": "Tuscany"}, "Sezze": {"country": "Italy", "subcountry": "Latium"}, "Seveso": {"country": "Italy", "subcountry": "Lombardy"}, "Settimo Torinese": {"country": "Italy", "subcountry": "Piedmont"}, "Sestri Levante": {"country": "Italy", "subcountry": "Liguria"}, "Sesto San Giovanni": {"country": "Italy", "subcountry": "Lombardy"}, "Sesto Fiorentino": {"country": "Italy", "subcountry": "Tuscany"}, "Seriate": {"country": "Italy", "subcountry": "Lombardy"}, "Seregno": {"country": "Italy", "subcountry": "Lombardy"}, "Senigallia": {"country": "Italy", "subcountry": "The Marches"}, "Senago": {"country": "Italy", "subcountry": "Lombardy"}, "Segrate": {"country": "Italy", "subcountry": "Lombardy"}, "Schio": {"country": "Italy", "subcountry": "Veneto"}, "Scandicci": {"country": "Italy", "subcountry": "Tuscany"}, "Scafati": {"country": "Italy", "subcountry": "Campania"}, "Savona": {"country": "Italy", "subcountry": "Liguria"}, "Savigliano": {"country": "Italy", "subcountry": "Piedmont"}, "Sava": {"country": "Italy", "subcountry": "Apulia"}, "Sassuolo": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Sassari": {"country": "Italy", "subcountry": "Sardinia"}, "Sarzana": {"country": "Italy", "subcountry": "Liguria"}, "Saronno": {"country": "Italy", "subcountry": "Lombardy"}, "Sarno": {"country": "Italy", "subcountry": "Campania"}, "San Vito Dei Normanni": {"country": "Italy", "subcountry": "Apulia"}, "Santeramo In Colle": {"country": "Italy", "subcountry": "Apulia"}, "Sant'Antonio Abate": {"country": "Italy", "subcountry": "Campania"}, "Sant'Antimo": {"country": "Italy", "subcountry": "Campania"}, "Sant'Anastasia": {"country": "Italy", "subcountry": "Campania"}, "Santa Maria Capua Vetere": {"country": "Italy", "subcountry": "Campania"}, "San Severo": {"country": "Italy", "subcountry": "Apulia"}, "San Sebastiano": {"country": "Italy", "subcountry": "Lombardy"}, "San Salvo": {"country": "Italy", "subcountry": "Abruzzo"}, "San Remo": {"country": "Italy", "subcountry": "Liguria"}, "Sannicandro Garganico": {"country": "Italy", "subcountry": "Apulia"}, "San Miniato": {"country": "Italy", "subcountry": "Tuscany"}, "San Miniato Basso": {"country": "Italy", "subcountry": "Tuscany"}, "San Mauro Torinese": {"country": "Italy", "subcountry": "Piedmont"}, "San Lazzaro": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "San Giuseppe Vesuviano": {"country": "Italy", "subcountry": "Campania"}, "San Giuliano Milanese": {"country": "Italy", "subcountry": "Lombardy"}, "San Giovanni Valdarno": {"country": "Italy", "subcountry": "Tuscany"}, "San Giovanni Rotondo": {"country": "Italy", "subcountry": "Apulia"}, "San Giovanni Lupatoto": {"country": "Italy", "subcountry": "Veneto"}, "San Giovanni In Persiceto": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "San Giorgio A Cremano": {"country": "Italy", "subcountry": "Campania"}, "San Donato Milanese": {"country": "Italy", "subcountry": "Lombardy"}, "San Don\u00e0 Di Piave": {"country": "Italy", "subcountry": "Veneto"}, "San Bonifacio": {"country": "Italy", "subcountry": "Veneto"}, "San Benedetto Del Tronto": {"country": "Italy", "subcountry": "The Marches"}, "Salsomaggiore Terme": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Salerno": {"country": "Italy", "subcountry": "Campania"}, "Sacile": {"country": "Italy", "subcountry": "Friuli Venezia Giulia"}, "Ruvo Di Puglia": {"country": "Italy", "subcountry": "Apulia"}, "Rutigliano": {"country": "Italy", "subcountry": "Apulia"}, "Rozzano": {"country": "Italy", "subcountry": "Lombardy"}, "Rovigo": {"country": "Italy", "subcountry": "Veneto"}, "Rovereto": {"country": "Italy", "subcountry": "Trentino-Alto Adige"}, "Rosignano Solvay-Castiglioncello": {"country": "Italy", "subcountry": "Tuscany"}, "Roseto Degli Abruzzi": {"country": "Italy", "subcountry": "Abruzzo"}, "Romano Di Lombardia": {"country": "Italy", "subcountry": "Lombardy"}, "Rome": {"country": "United States", "subcountry": "New York"}, "Rocca Di Papa": {"country": "Italy", "subcountry": "Latium"}, "Rivoli": {"country": "Italy", "subcountry": "Piedmont"}, "Rimini": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Rieti": {"country": "Italy", "subcountry": "Latium"}, "Riccione": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Rho": {"country": "Italy", "subcountry": "Lombardy"}, "Reggio Nell'Emilia": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Ravenna": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Rapallo": {"country": "Italy", "subcountry": "Liguria"}, "Qualiano": {"country": "Italy", "subcountry": "Campania"}, "Putignano": {"country": "Italy", "subcountry": "Apulia"}, "Prato": {"country": "Italy", "subcountry": "Tuscany"}, "Pozzuoli": {"country": "Italy", "subcountry": "Campania"}, "Potenza": {"country": "Italy", "subcountry": "Basilicate"}, "Porto Torres": {"country": "Italy", "subcountry": "Sardinia"}, "Porto Sant'Elpidio": {"country": "Italy", "subcountry": "The Marches"}, "Porto San Giorgio": {"country": "Italy", "subcountry": "The Marches"}, "Portogruaro": {"country": "Italy", "subcountry": "Veneto"}, "Civitanova Marche": {"country": "Italy", "subcountry": "The Marches"}, "Portici": {"country": "Italy", "subcountry": "Campania"}, "Pordenone": {"country": "Italy", "subcountry": "Friuli Venezia Giulia"}, "Pontedera": {"country": "Italy", "subcountry": "Tuscany"}, "Pompei": {"country": "Italy", "subcountry": "Campania"}, "Pomigliano D'Arco": {"country": "Italy", "subcountry": "Campania"}, "Pomezia": {"country": "Italy", "subcountry": "Latium"}, "Poggiomarino": {"country": "Italy", "subcountry": "Campania"}, "Poggibonsi": {"country": "Italy", "subcountry": "Tuscany"}, "Pistoia": {"country": "Italy", "subcountry": "Tuscany"}, "Pisa": {"country": "Italy", "subcountry": "Tuscany"}, "Piossasco": {"country": "Italy", "subcountry": "Piedmont"}, "Piombino": {"country": "Italy", "subcountry": "Tuscany"}, "Pioltello": {"country": "Italy", "subcountry": "Lombardy"}, "Pinerolo": {"country": "Italy", "subcountry": "Piedmont"}, "Pietrasanta": {"country": "Italy", "subcountry": "Tuscany"}, "Piacenza": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Pescara": {"country": "Italy", "subcountry": "Abruzzo"}, "Pesaro": {"country": "Italy", "subcountry": "The Marches"}, "Perugia": {"country": "Italy", "subcountry": "Umbria"}, "Pavia": {"country": "Italy", "subcountry": "Lombardy"}, "Parma": {"country": "United States", "subcountry": "Ohio"}, "Parabiago": {"country": "Italy", "subcountry": "Lombardy"}, "Palo Del Colle": {"country": "Italy", "subcountry": "Apulia"}, "Palazzolo Sull'Oglio": {"country": "Italy", "subcountry": "Lombardy"}, "Palagiano": {"country": "Italy", "subcountry": "Apulia"}, "Pagani": {"country": "Italy", "subcountry": "Campania"}, "Padova": {"country": "Italy", "subcountry": "Veneto"}, "Paderno Dugnano": {"country": "Italy", "subcountry": "Lombardy"}, "Ottaviano": {"country": "Italy", "subcountry": "Campania"}, "Ostuni": {"country": "Italy", "subcountry": "Apulia"}, "Osimo": {"country": "Italy", "subcountry": "The Marches"}, "Orta Nova": {"country": "Italy", "subcountry": "Apulia"}, "Orbassano": {"country": "Italy", "subcountry": "Piedmont"}, "Olbia": {"country": "Italy", "subcountry": "Sardinia"}, "Oderzo": {"country": "Italy", "subcountry": "Veneto"}, "Nuoro": {"country": "Italy", "subcountry": "Sardinia"}, "Novi Ligure": {"country": "Italy", "subcountry": "Piedmont"}, "Novate Milanese": {"country": "Italy", "subcountry": "Lombardy"}, "Novara": {"country": "Italy", "subcountry": "Piedmont"}, "Nova Milanese": {"country": "Italy", "subcountry": "Lombardy"}, "Noicattaro": {"country": "Italy", "subcountry": "Apulia"}, "Noci": {"country": "Italy", "subcountry": "Apulia"}, "Nocera Superiore": {"country": "Italy", "subcountry": "Campania"}, "Nocera Inferiore": {"country": "Italy", "subcountry": "Campania"}, "Nichelino": {"country": "Italy", "subcountry": "Piedmont"}, "Nettuno": {"country": "Italy", "subcountry": "Latium"}, "Nerviano": {"country": "Italy", "subcountry": "Lombardy"}, "Nard\u00f2": {"country": "Italy", "subcountry": "Apulia"}, "Napoli": {"country": "Italy", "subcountry": "Campania"}, "Mugnano Di Napoli": {"country": "Italy", "subcountry": "Campania"}, "Muggi\u00f2": {"country": "Italy", "subcountry": "Lombardy"}, "Monza": {"country": "Italy", "subcountry": "Lombardy"}, "Montichiari": {"country": "Italy", "subcountry": "Lombardy"}, "Montevarchi": {"country": "Italy", "subcountry": "Tuscany"}, "Montesilvano Marina": {"country": "Italy", "subcountry": "Abruzzo"}, "Monterotondo": {"country": "Italy", "subcountry": "Latium"}, "Montemurlo": {"country": "Italy", "subcountry": "Tuscany"}, "Montecchio Maggiore-Alte Ceccato": {"country": "Italy", "subcountry": "Veneto"}, "Montecatini-Terme": {"country": "Italy", "subcountry": "Tuscany"}, "Montebelluna": {"country": "Italy", "subcountry": "Veneto"}, "Monopoli": {"country": "Italy", "subcountry": "Apulia"}, "Monfalcone": {"country": "Italy", "subcountry": "Friuli Venezia Giulia"}, "Mondragone": {"country": "Italy", "subcountry": "Campania"}, "Mondov\u00ec": {"country": "Italy", "subcountry": "Piedmont"}, "Moncalieri": {"country": "Italy", "subcountry": "Piedmont"}, "Molfetta": {"country": "Italy", "subcountry": "Apulia"}, "Mola Di Bari": {"country": "Italy", "subcountry": "Apulia"}, "Mogliano Veneto": {"country": "Italy", "subcountry": "Veneto"}, "Modugno": {"country": "Italy", "subcountry": "Apulia"}, "Modena": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Mirano": {"country": "Italy", "subcountry": "Veneto"}, "Mirandola": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Mira Taglio": {"country": "Italy", "subcountry": "Veneto"}, "Minturno": {"country": "Italy", "subcountry": "Latium"}, "Milano": {"country": "Italy", "subcountry": "Lombardy"}, "Mestre": {"country": "Italy", "subcountry": "Veneto"}, "Mesagne": {"country": "Italy", "subcountry": "Apulia"}, "Merano": {"country": "Italy", "subcountry": "Trentino-Alto Adige"}, "Mentana": {"country": "Italy", "subcountry": "Latium"}, "Melzo": {"country": "Italy", "subcountry": "Lombardy"}, "Melito Di Napoli": {"country": "Italy", "subcountry": "Campania"}, "Melegnano": {"country": "Italy", "subcountry": "Lombardy"}, "Meda": {"country": "Italy", "subcountry": "Lombardy"}, "Matera": {"country": "Italy", "subcountry": "Basilicate"}, "Massafra": {"country": "Italy", "subcountry": "Apulia"}, "Massa": {"country": "Italy", "subcountry": "Tuscany"}, "Martina Franca": {"country": "Italy", "subcountry": "Apulia"}, "Marino": {"country": "Italy", "subcountry": "Latium"}, "Marina Di Carrara": {"country": "Italy", "subcountry": "Tuscany"}, "Marigliano": {"country": "Italy", "subcountry": "Campania"}, "Mariano Comense": {"country": "Italy", "subcountry": "Lombardy"}, "Marcianise": {"country": "Italy", "subcountry": "Campania"}, "Marano Di Napoli": {"country": "Italy", "subcountry": "Campania"}, "Mantova": {"country": "Italy", "subcountry": "Lombardy"}, "Manfredonia": {"country": "Italy", "subcountry": "Apulia"}, "Manduria": {"country": "Italy", "subcountry": "Apulia"}, "Malnate": {"country": "Italy", "subcountry": "Lombardy"}, "Magenta": {"country": "Italy", "subcountry": "Lombardy"}, "Maddaloni": {"country": "Italy", "subcountry": "Campania"}, "Macerata": {"country": "Italy", "subcountry": "The Marches"}, "Lucera": {"country": "Italy", "subcountry": "Apulia"}, "Lucca": {"country": "Italy", "subcountry": "Tuscany"}, "Lodi": {"country": "United States", "subcountry": "California"}, "Livorno": {"country": "Italy", "subcountry": "Tuscany"}, "Lissone": {"country": "Italy", "subcountry": "Lombardy"}, "Limbiate": {"country": "Italy", "subcountry": "Lombardy"}, "Lido Di Ostia": {"country": "Italy", "subcountry": "Latium"}, "Lido": {"country": "Italy", "subcountry": "Veneto"}, "Legnano": {"country": "Italy", "subcountry": "Lombardy"}, "Legnago": {"country": "Italy", "subcountry": "Veneto"}, "Lecco": {"country": "Italy", "subcountry": "Lombardy"}, "Lecce": {"country": "Italy", "subcountry": "Apulia"}, "La Spezia": {"country": "Italy", "subcountry": "Liguria"}, "L'Aquila": {"country": "Italy", "subcountry": "Abruzzo"}, "Lanciano": {"country": "Italy", "subcountry": "Abruzzo"}, "Lainate": {"country": "Italy", "subcountry": "Lombardy"}, "Ladispoli": {"country": "Italy", "subcountry": "Latium"}, "Ivrea": {"country": "Italy", "subcountry": "Piedmont"}, "Isernia": {"country": "Italy", "subcountry": "Molise"}, "Ischia Porto": {"country": "Italy", "subcountry": "Campania"}, "Ischia": {"country": "Italy", "subcountry": "Campania"}, "Pallanza-Intra-Suna": {"country": "Italy", "subcountry": "Piedmont"}, "Imperia": {"country": "Italy", "subcountry": "Liguria"}, "Imola": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Jesi": {"country": "Italy", "subcountry": "The Marches"}, "Guidonia": {"country": "Italy", "subcountry": "Latium"}, "Grumo Nevano": {"country": "Italy", "subcountry": "Campania"}, "Grugliasco": {"country": "Italy", "subcountry": "Piedmont"}, "Grottaglie": {"country": "Italy", "subcountry": "Apulia"}, "Grottaferrata": {"country": "Italy", "subcountry": "Latium"}, "Grosseto": {"country": "Italy", "subcountry": "Tuscany"}, "Gravina In Puglia": {"country": "Italy", "subcountry": "Apulia"}, "Gragnano": {"country": "Italy", "subcountry": "Campania"}, "Gorizia": {"country": "Italy", "subcountry": "Friuli Venezia Giulia"}, "Gorgonzola": {"country": "Italy", "subcountry": "Lombardy"}, "Giussano": {"country": "Italy", "subcountry": "Lombardy"}, "Giulianova": {"country": "Italy", "subcountry": "Abruzzo"}, "Giugliano In Campania": {"country": "Italy", "subcountry": "Campania"}, "Giovinazzo": {"country": "Italy", "subcountry": "Apulia"}, "Gioia Del Colle": {"country": "Italy", "subcountry": "Apulia"}, "Ginosa": {"country": "Italy", "subcountry": "Apulia"}, "Ghedi": {"country": "Italy", "subcountry": "Lombardy"}, "Genzano Di Roma": {"country": "Italy", "subcountry": "Latium"}, "Genoa": {"country": "Italy", "subcountry": "Liguria"}, "Garbagnate Milanese": {"country": "Italy", "subcountry": "Lombardy"}, "Gallipoli": {"country": "Italy", "subcountry": "Apulia"}, "Gallarate": {"country": "Italy", "subcountry": "Lombardy"}, "Galatina": {"country": "Italy", "subcountry": "Apulia"}, "Gaeta": {"country": "Italy", "subcountry": "Latium"}, "Frosinone": {"country": "Italy", "subcountry": "Latium"}, "Frattaminore": {"country": "Italy", "subcountry": "Campania"}, "Frattamaggiore": {"country": "Italy", "subcountry": "Campania"}, "Frascati": {"country": "Italy", "subcountry": "Latium"}, "Francavilla Fontana": {"country": "Italy", "subcountry": "Apulia"}, "Francavilla Al Mare": {"country": "Italy", "subcountry": "Abruzzo"}, "Fossano": {"country": "Italy", "subcountry": "Piedmont"}, "Fornacelle": {"country": "Italy", "subcountry": "Tuscany"}, "Formigine": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Formia": {"country": "Italy", "subcountry": "Latium"}, "Forl\u00ec": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Forio": {"country": "Italy", "subcountry": "Campania"}, "Fondi": {"country": "Italy", "subcountry": "Latium"}, "Follonica": {"country": "Italy", "subcountry": "Tuscany"}, "Foligno": {"country": "Italy", "subcountry": "Umbria"}, "Foggia": {"country": "Italy", "subcountry": "Apulia"}, "Fiumicino-Isola Sacra": {"country": "Italy", "subcountry": "Latium"}, "Florence": {"country": "United States", "subcountry": "Arizona"}, "Fiorano": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Fidenza": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Ferrara": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Fermo": {"country": "Italy", "subcountry": "The Marches"}, "Fasano": {"country": "Italy", "subcountry": "Apulia"}, "Fano": {"country": "Italy", "subcountry": "The Marches"}, "Falconara Marittima": {"country": "Italy", "subcountry": "The Marches"}, "Faenza": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Fabriano": {"country": "Italy", "subcountry": "The Marches"}, "Ercolano": {"country": "Italy", "subcountry": "Campania"}, "Erba": {"country": "Italy", "subcountry": "Lombardy"}, "Empoli": {"country": "Italy", "subcountry": "Tuscany"}, "Eboli": {"country": "Italy", "subcountry": "Campania"}, "Domodossola": {"country": "Italy", "subcountry": "Piedmont"}, "Desio": {"country": "Italy", "subcountry": "Lombardy"}, "Desenzano Del Garda": {"country": "Italy", "subcountry": "Lombardy"}, "Dalmine": {"country": "Italy", "subcountry": "Lombardy"}, "Cusano Milanino": {"country": "Italy", "subcountry": "Lombardy"}, "Cuneo": {"country": "Italy", "subcountry": "Piedmont"}, "Cremona": {"country": "Italy", "subcountry": "Lombardy"}, "Crema": {"country": "Italy", "subcountry": "Lombardy"}, "Corsico": {"country": "Italy", "subcountry": "Lombardy"}, "Correggio": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Cornaredo": {"country": "Italy", "subcountry": "Lombardy"}, "Cormano": {"country": "Italy", "subcountry": "Lombardy"}, "Cordenons": {"country": "Italy", "subcountry": "Friuli Venezia Giulia"}, "Corato": {"country": "Italy", "subcountry": "Apulia"}, "Copertino": {"country": "Italy", "subcountry": "Apulia"}, "Conversano": {"country": "Italy", "subcountry": "Apulia"}, "Conegliano": {"country": "Italy", "subcountry": "Veneto"}, "Como": {"country": "Italy", "subcountry": "Lombardy"}, "Cologno Monzese": {"country": "Italy", "subcountry": "Lombardy"}, "Collegno": {"country": "Italy", "subcountry": "Piedmont"}, "Colleferro": {"country": "Italy", "subcountry": "Latium"}, "Colle Di Val D'Elsa": {"country": "Italy", "subcountry": "Tuscany"}, "Civitavecchia": {"country": "Italy", "subcountry": "Latium"}, "Citt\u00e0 Di Castello": {"country": "Italy", "subcountry": "Umbria"}, "Cisterna Di Latina": {"country": "Italy", "subcountry": "Latium"}, "Ciri\u00e8": {"country": "Italy", "subcountry": "Piedmont"}, "Cinisello Balsamo": {"country": "Italy", "subcountry": "Lombardy"}, "Ciampino": {"country": "Italy", "subcountry": "Latium"}, "Chivasso": {"country": "Italy", "subcountry": "Piedmont"}, "Chioggia": {"country": "Italy", "subcountry": "Veneto"}, "Chieti": {"country": "Italy", "subcountry": "Abruzzo"}, "Chieri": {"country": "Italy", "subcountry": "Piedmont"}, "Chiavari": {"country": "Italy", "subcountry": "Liguria"}, "Chiari": {"country": "Italy", "subcountry": "Lombardy"}, "Cesenatico": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Cesena": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Cesano Maderno": {"country": "Italy", "subcountry": "Lombardy"}, "Cervia": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Cerveteri": {"country": "Italy", "subcountry": "Latium"}, "Cernusco Sul Naviglio": {"country": "Italy", "subcountry": "Lombardy"}, "Cerignola": {"country": "Italy", "subcountry": "Apulia"}, "Cercola": {"country": "Italy", "subcountry": "Campania"}, "Cento": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Ceglie Messapica": {"country": "Italy", "subcountry": "Apulia"}, "Cecina": {"country": "Italy", "subcountry": "Tuscany"}, "Cava D\u00e8 Tirreni": {"country": "Italy", "subcountry": "Campania"}, "Cattolica": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Castiglione Delle Stiviere": {"country": "Italy", "subcountry": "Lombardy"}, "Castel Volturno": {"country": "Italy", "subcountry": "Campania"}, "Castel Maggiore": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Castellammare Di Stabia": {"country": "Italy", "subcountry": "Campania"}, "Castelfranco Veneto": {"country": "Italy", "subcountry": "Veneto"}, "Castelfranco Emilia": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Cassino": {"country": "Italy", "subcountry": "Latium"}, "Cassano D'Adda": {"country": "Italy", "subcountry": "Lombardy"}, "Casoria": {"country": "Italy", "subcountry": "Campania"}, "Caserta": {"country": "Italy", "subcountry": "Campania"}, "Cascina": {"country": "Italy", "subcountry": "Tuscany"}, "Casamassima": {"country": "Italy", "subcountry": "Apulia"}, "Casalnuovo Di Napoli": {"country": "Italy", "subcountry": "Campania"}, "Casale Monferrato": {"country": "Italy", "subcountry": "Piedmont"}, "Casalecchio Di Reno": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Casal Di Principe": {"country": "Italy", "subcountry": "Campania"}, "Carrara": {"country": "Italy", "subcountry": "Tuscany"}, "Carpi Centro": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Carmagnola": {"country": "Italy", "subcountry": "Piedmont"}, "Cardito": {"country": "Italy", "subcountry": "Campania"}, "Carate Brianza": {"country": "Italy", "subcountry": "Lombardy"}, "Capua": {"country": "Italy", "subcountry": "Campania"}, "Capannori": {"country": "Italy", "subcountry": "Tuscany"}, "Cant\u00f9": {"country": "Italy", "subcountry": "Lombardy"}, "Canosa Di Puglia": {"country": "Italy", "subcountry": "Apulia"}, "Campobasso": {"country": "Italy", "subcountry": "Molise"}, "Campi Bisenzio": {"country": "Italy", "subcountry": "Tuscany"}, "Camaiore": {"country": "Italy", "subcountry": "Tuscany"}, "Caivano": {"country": "Italy", "subcountry": "Campania"}, "Busto Arsizio": {"country": "Italy", "subcountry": "Lombardy"}, "Bussolengo": {"country": "Italy", "subcountry": "Veneto"}, "Brusciano": {"country": "Italy", "subcountry": "Campania"}, "Brugherio": {"country": "Italy", "subcountry": "Lombardy"}, "Brindisi": {"country": "Italy", "subcountry": "Apulia"}, "Bresso": {"country": "Italy", "subcountry": "Lombardy"}, "Bressanone": {"country": "Italy", "subcountry": "Trentino-Alto Adige"}, "Brescia": {"country": "Italy", "subcountry": "Lombardy"}, "Bra": {"country": "Italy", "subcountry": "Piedmont"}, "Bovisio-Masciago": {"country": "Italy", "subcountry": "Lombardy"}, "Boscoreale": {"country": "Italy", "subcountry": "Campania"}, "Borgomanero": {"country": "Italy", "subcountry": "Piedmont"}, "Bolzano": {"country": "Italy", "subcountry": "Trentino-Alto Adige"}, "Bologna": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Bollate": {"country": "Italy", "subcountry": "Lombardy"}, "Bitonto": {"country": "Italy", "subcountry": "Apulia"}, "Bisceglie": {"country": "Italy", "subcountry": "Apulia"}, "Biella": {"country": "Italy", "subcountry": "Piedmont"}, "Bergamo": {"country": "Italy", "subcountry": "Lombardy"}, "Benevento": {"country": "Italy", "subcountry": "Campania"}, "Belluno": {"country": "Italy", "subcountry": "Veneto"}, "Battipaglia": {"country": "Italy", "subcountry": "Campania"}, "Bastia Umbra": {"country": "Italy", "subcountry": "Umbria"}, "Bassano Del Grappa": {"country": "Italy", "subcountry": "Veneto"}, "Barletta": {"country": "Italy", "subcountry": "Apulia"}, "Bari": {"country": "Italy", "subcountry": "Apulia"}, "Bareggio": {"country": "Italy", "subcountry": "Lombardy"}, "Bagnoli": {"country": "Italy", "subcountry": "Campania"}, "Bacoli": {"country": "Italy", "subcountry": "Campania"}, "Avezzano": {"country": "Italy", "subcountry": "Abruzzo"}, "Aversa": {"country": "Italy", "subcountry": "Campania"}, "Avellino": {"country": "Italy", "subcountry": "Campania"}, "Asti": {"country": "Italy", "subcountry": "Piedmont"}, "Ascoli Piceno": {"country": "Italy", "subcountry": "The Marches"}, "Arzignano": {"country": "Italy", "subcountry": "Veneto"}, "Arzano": {"country": "Italy", "subcountry": "Campania"}, "Ariccia": {"country": "Italy", "subcountry": "Latium"}, "Arezzo": {"country": "Italy", "subcountry": "Tuscany"}, "Arese": {"country": "Italy", "subcountry": "Lombardy"}, "Ardea": {"country": "Italy", "subcountry": "Latium"}, "Arcore": {"country": "Italy", "subcountry": "Lombardy"}, "Aprilia": {"country": "Italy", "subcountry": "Latium"}, "Aosta": {"country": "Italy", "subcountry": "Aosta Valley"}, "Anzio": {"country": "Italy", "subcountry": "Latium"}, "Angri": {"country": "Italy", "subcountry": "Campania"}, "Andria": {"country": "Italy", "subcountry": "Apulia"}, "Ancona": {"country": "Italy", "subcountry": "The Marches"}, "Altamura": {"country": "Italy", "subcountry": "Apulia"}, "Alpignano": {"country": "Italy", "subcountry": "Piedmont"}, "Alghero": {"country": "Italy", "subcountry": "Sardinia"}, "Alessandria": {"country": "Italy", "subcountry": "Piedmont"}, "Albignasego": {"country": "Italy", "subcountry": "Veneto"}, "Albenga": {"country": "Italy", "subcountry": "Liguria"}, "Albano Laziale": {"country": "Italy", "subcountry": "Latium"}, "Alba": {"country": "Italy", "subcountry": "Piedmont"}, "Agropoli": {"country": "Italy", "subcountry": "Campania"}, "Afragola": {"country": "Italy", "subcountry": "Campania"}, "Adelfia": {"country": "Italy", "subcountry": "Apulia"}, "Acqui Terme": {"country": "Italy", "subcountry": "Piedmont"}, "Acquaviva Delle Fonti": {"country": "Italy", "subcountry": "Apulia"}, "Acilia-Castel Fusano-Ostia Antica": {"country": "Italy", "subcountry": "Latium"}, "Acerra": {"country": "Italy", "subcountry": "Campania"}, "Abbiategrasso": {"country": "Italy", "subcountry": "Lombardy"}, "Abano Terme": {"country": "Italy", "subcountry": "Veneto"}, "Spinea-Orgnano": {"country": "Italy", "subcountry": "Veneto"}, "Verbania": {"country": "Italy", "subcountry": "Piedmont"}, "Lumezzane": {"country": "Italy", "subcountry": "Lombardy"}, "Guidonia Montecelio": {"country": "Italy", "subcountry": "Latium"}, "Lamezia Terme": {"country": "Italy", "subcountry": "Calabria"}, "Caronno Pertusella": {"country": "Italy", "subcountry": "Lombardy"}, "Cassano Magnago": {"country": "Italy", "subcountry": "Lombardy"}, "San Felice A Cancello": {"country": "Italy", "subcountry": "Campania"}, "San Nicola La Strada": {"country": "Italy", "subcountry": "Campania"}, "Quarto": {"country": "Italy", "subcountry": "Campania"}, "Orta Di Atella": {"country": "Italy", "subcountry": "Campania"}, "Casavatore": {"country": "Italy", "subcountry": "Campania"}, "Volla": {"country": "Italy", "subcountry": "Campania"}, "Gravina Di Catania": {"country": "Italy", "subcountry": "Sicily"}, "Cesano Boscone": {"country": "Italy", "subcountry": "Lombardy"}, "Tor Lupara": {"country": "Italy", "subcountry": "Latium"}, "Torvaianica": {"country": "Italy", "subcountry": "Latium"}, "Bellaria-Igea Marina": {"country": "Italy", "subcountry": "Emilia-Romagna"}, "Villanova": {"country": "Italy", "subcountry": "Latium"}, "Marina Di Ardea-Tor San Lorenzo": {"country": "Italy", "subcountry": "Latium"}, "San Paolo": {"country": "Italy", "subcountry": "Apulia"}, "Monterusciello": {"country": "Italy", "subcountry": "Campania"}, "Romano Banco": {"country": "Italy", "subcountry": "Lombardy"}, "Casa Santa": {"country": "Italy", "subcountry": "Sicily"}, "Arpino": {"country": "Italy", "subcountry": "Campania"}, "Paolo Vi": {"country": "Italy", "subcountry": "Apulia"}, "Corigliano Scalo": {"country": "Italy", "subcountry": "Calabria"}, "Saint Helier": {"country": "Jersey", "subcountry": "St Helier"}, "Spanish Town": {"country": "Jamaica", "subcountry": "Saint Catherine"}, "Savanna-La-Mar": {"country": "Jamaica", "subcountry": "Westmoreland"}, "Portmore": {"country": "Jamaica", "subcountry": "Saint Catherine"}, "Old Harbour": {"country": "Jamaica", "subcountry": "Saint Catherine"}, "New Kingston": {"country": "Jamaica", "subcountry": "Saint Andrew"}, "Montego Bay": {"country": "Jamaica", "subcountry": "Saint James"}, "May Pen": {"country": "Jamaica", "subcountry": "Clarendon"}, "Mandeville": {"country": "Jamaica", "subcountry": "Manchester"}, "Linstead": {"country": "Jamaica", "subcountry": "Saint Catherine"}, "Half Way Tree": {"country": "Jamaica", "subcountry": "Saint Andrew"}, "W\u0101d\u012b As S\u012br": {"country": "Jordan", "subcountry": "Amman"}, "Umm As Summ\u0101q": {"country": "Jordan", "subcountry": "Amman"}, "Sa\u1e29\u0101b": {"country": "Jordan", "subcountry": "Amman"}, "M\u0101dab\u0101": {"country": "Jordan", "subcountry": "Madaba"}, "Ma'An": {"country": "Jordan", "subcountry": "Ma\u2019an"}, "Kurayyimah": {"country": "Jordan", "subcountry": "Irbid"}, "Judita": {"country": "Jordan", "subcountry": "Irbid"}, "Jarash": {"country": "Jordan", "subcountry": "Jerash"}, "\u2018Izr\u0101": {"country": "Jordan", "subcountry": "Karak"}, "Irbid": {"country": "Jordan", "subcountry": "Irbid"}, "Zarqa": {"country": "Jordan", "subcountry": "Zarqa"}, "Ayd\u016bn": {"country": "Jordan", "subcountry": "Irbid"}, "A\u0163 \u0162af\u012blah": {"country": "Jordan", "subcountry": "Tafielah"}, "As Sal\u0163": {"country": "Jordan", "subcountry": "Balqa"}, "Safi": {"country": "Morocco", "subcountry": "Doukkala-Abda"}, "Ar Ramth\u0101": {"country": "Jordan", "subcountry": "Irbid"}, "\u2018Anjarah": {"country": "Jordan", "subcountry": "Ajlun"}, "Amman": {"country": "Jordan", "subcountry": "Amman"}, "Al Quwaysimah": {"country": "Jordan", "subcountry": "Amman"}, "Mafraq": {"country": "Jordan", "subcountry": "Mafraq"}, "Q\u012br Mo\u0101v": {"country": "Jordan", "subcountry": "Ma\u2019an"}, "Al Jubayhah": {"country": "Jordan", "subcountry": "Amman"}, "Aqaba": {"country": "Jordan", "subcountry": "Aqaba"}, "\u2018Ajl\u016bn": {"country": "Jordan", "subcountry": "Ajlun"}, "Karak City": {"country": "Jordan", "subcountry": "Karak"}, "Russeifa": {"country": "Jordan", "subcountry": "Zarqa"}, "Shing\u016b": {"country": "Japan", "subcountry": "Fukuoka"}, "Atsugi": {"country": "Japan", "subcountry": "Kanagawa"}, "Akashi": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Zushi": {"country": "Japan", "subcountry": "Kanagawa"}, "Zama": {"country": "Japan", "subcountry": "Kanagawa"}, "Yuza": {"country": "Japan", "subcountry": "Yamagata"}, "Gero": {"country": "Japan", "subcountry": "Gifu"}, "Yukuhashi": {"country": "Japan", "subcountry": "Fukuoka"}, "Y\u016bki": {"country": "Japan", "subcountry": "Ibaraki"}, "Yugawara": {"country": "Japan", "subcountry": "Kanagawa"}, "Yoshikawa": {"country": "Japan", "subcountry": "Saitama"}, "Yoshii": {"country": "Japan", "subcountry": "Gunma"}, "Yoshida-Kasugach\u014d": {"country": "Japan", "subcountry": "Niigata"}, "Yorii": {"country": "Japan", "subcountry": "Saitama"}, "Yono": {"country": "Japan", "subcountry": "Saitama"}, "Yonago": {"country": "Japan", "subcountry": "Tottori"}, "Yokosuka": {"country": "Japan", "subcountry": "Kanagawa"}, "Yokohama": {"country": "Japan", "subcountry": "Kanagawa"}, "Yokkaichi": {"country": "Japan", "subcountry": "Mie"}, "Youkaichi": {"country": "Japan", "subcountry": "Shiga Prefecture"}, "Yawata": {"country": "Japan", "subcountry": "Kyoto"}, "Yatsushiro": {"country": "Japan", "subcountry": "Kumamoto"}, "Yatsuomachi-Higashikumisaka": {"country": "Japan", "subcountry": "Toyama"}, "Yasugich\u014d": {"country": "Japan", "subcountry": "Shimane"}, "Yashiro": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Yashio-Shi": {"country": "Japan", "subcountry": "Saitama"}, "Yao": {"country": "Japan", "subcountry": "\u014csaka"}, "Yanai": {"country": "Japan", "subcountry": "Yamaguchi"}, "Yanagawa": {"country": "Japan", "subcountry": "Fukuoka"}, "Yamazakich\u014d-Nakabirose": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Yamaguchi": {"country": "Japan", "subcountry": "Yamaguchi"}, "Yamaga": {"country": "Japan", "subcountry": "Kumamoto"}, "Yaizu": {"country": "Japan", "subcountry": "Shizuoka"}, "Yaita": {"country": "Japan", "subcountry": "Tochigi"}, "Wakimachi": {"country": "Japan", "subcountry": "Tokushima"}, "Utsunomiya": {"country": "Japan", "subcountry": "Tochigi"}, "Uto": {"country": "Japan", "subcountry": "Kumamoto"}, "Usuki": {"country": "Japan", "subcountry": "Oita"}, "Ushibuka": {"country": "Japan", "subcountry": "Kumamoto"}, "Ureshinomachi-Shimojuku": {"country": "Japan", "subcountry": "Saga Prefecture"}, "Urayasu": {"country": "Japan", "subcountry": "Tokyo"}, "Uozu": {"country": "Japan", "subcountry": "Toyama"}, "Umi": {"country": "Japan", "subcountry": "Fukuoka"}, "Ujiie": {"country": "Japan", "subcountry": "Tochigi"}, "Uji": {"country": "Japan", "subcountry": "Kyoto"}, "Uenohara": {"country": "Japan", "subcountry": "Yamanashi"}, "Ueno-Ebisumachi": {"country": "Japan", "subcountry": "Mie"}, "Ueki": {"country": "Japan", "subcountry": "Kumamoto"}, "Ueda": {"country": "Japan", "subcountry": "Nagano"}, "Ube": {"country": "Japan", "subcountry": "Yamaguchi"}, "Tsuyama": {"country": "Japan", "subcountry": "Okayama"}, "Tsushima": {"country": "Japan", "subcountry": "Aichi"}, "Tsurusaki": {"country": "Japan", "subcountry": "Oita"}, "Tsuruoka": {"country": "Japan", "subcountry": "Yamagata"}, "Tsurugi-Asahimachi": {"country": "Japan", "subcountry": "Ishikawa"}, "Tsuruga": {"country": "Japan", "subcountry": "Fukui"}, "Tsuma": {"country": "Japan", "subcountry": "Miyazaki"}, "Tsukumiura": {"country": "Japan", "subcountry": "Oita"}, "Tsukawaki": {"country": "Japan", "subcountry": "Oita"}, "Tsubata": {"country": "Japan", "subcountry": "Ishikawa"}, "Tsubame": {"country": "Japan", "subcountry": "Niigata"}, "Tsu": {"country": "Japan", "subcountry": "Mie"}, "Toyota": {"country": "Japan", "subcountry": "Aichi"}, "Toyoshina": {"country": "Japan", "subcountry": "Nagano"}, "Toyooka": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Toyonaka": {"country": "Japan", "subcountry": "\u014csaka"}, "Toyokawa": {"country": "Japan", "subcountry": "Aichi"}, "Toyohashi": {"country": "Japan", "subcountry": "Aichi"}, "Toyohama": {"country": "Japan", "subcountry": "Aichi"}, "Toyama": {"country": "Japan", "subcountry": "Toyama"}, "Tottori": {"country": "Japan", "subcountry": "Tottori"}, "Tosu": {"country": "Japan", "subcountry": "Saga Prefecture"}, "Tonosh\u014d": {"country": "Japan", "subcountry": "Kagawa"}, "Tondabayashich\u014d": {"country": "Japan", "subcountry": "\u014csaka"}, "Tomioka": {"country": "Japan", "subcountry": "Gunma"}, "Tomigusuku": {"country": "Japan", "subcountry": "Okinawa"}, "Tokyo": {"country": "Japan", "subcountry": "Tokyo"}, "Tokuyama": {"country": "Japan", "subcountry": "Yamaguchi"}, "Tokushima": {"country": "Japan", "subcountry": "Tokushima"}, "Tokorozawa": {"country": "Japan", "subcountry": "Saitama"}, "Tokoname": {"country": "Japan", "subcountry": "Aichi"}, "Toki": {"country": "Japan", "subcountry": "Gifu"}, "T\u014dkamachi": {"country": "Japan", "subcountry": "Niigata"}, "Togitsu": {"country": "Japan", "subcountry": "Nagasaki"}, "Tochio-Honch\u014d": {"country": "Japan", "subcountry": "Niigata"}, "Tochigi": {"country": "Japan", "subcountry": "Tochigi"}, "Toba": {"country": "Japan", "subcountry": "Mie"}, "Tenri": {"country": "Japan", "subcountry": "Nara"}, "Tenn\u014d": {"country": "Japan", "subcountry": "Akita"}, "Tawaramoto": {"country": "Japan", "subcountry": "Nara"}, "Tatsuno": {"country": "Japan", "subcountry": "Nagano"}, "Tatsunoch\u014d-Tominaga": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Tateyama": {"country": "Japan", "subcountry": "Chiba"}, "Tatebayashi": {"country": "Japan", "subcountry": "Gunma"}, "Tarumizu": {"country": "Japan", "subcountry": "Kagoshima"}, "Tarui": {"country": "Japan", "subcountry": "Gifu"}, "Tanushimarumachi-Toyoki": {"country": "Japan", "subcountry": "Fukuoka"}, "Tanuma": {"country": "Japan", "subcountry": "Tochigi"}, "Nishi-Tokyo-Shi": {"country": "Japan", "subcountry": "Tokyo"}, "Tanashich\u014d": {"country": "Japan", "subcountry": "Tokyo"}, "Tanabe": {"country": "Japan", "subcountry": "Wakayama"}, "Tamano": {"country": "Japan", "subcountry": "Okayama"}, "Tamana": {"country": "Japan", "subcountry": "Kumamoto"}, "Tamamura": {"country": "Japan", "subcountry": "Gunma"}, "Taketoyo": {"country": "Japan", "subcountry": "Aichi"}, "Takeoch\u014d-Takeo": {"country": "Japan", "subcountry": "Saga Prefecture"}, "Takehara": {"country": "Japan", "subcountry": "Hiroshima"}, "Takefu": {"country": "Japan", "subcountry": "Fukui"}, "Takedamachi": {"country": "Japan", "subcountry": "Oita"}, "Takayama": {"country": "Japan", "subcountry": "Gifu"}, "Takatsuki": {"country": "Japan", "subcountry": "\u014csaka"}, "Takasaki": {"country": "Japan", "subcountry": "Gunma"}, "Takarazuka": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Takaoka": {"country": "Japan", "subcountry": "Toyama"}, "Takanabe": {"country": "Japan", "subcountry": "Miyazaki"}, "Takamatsu": {"country": "Japan", "subcountry": "Kagawa"}, "Takaishi": {"country": "Japan", "subcountry": "\u014csaka"}, "Takahashi": {"country": "Japan", "subcountry": "Okayama"}, "Takahama": {"country": "Japan", "subcountry": "Aichi"}, "Bungo-Takada-Shi": {"country": "Japan", "subcountry": "Oita"}, "Tajimi": {"country": "Japan", "subcountry": "Gifu"}, "Tahara": {"country": "Japan", "subcountry": "Aichi"}, "Tagawa": {"country": "Japan", "subcountry": "Fukuoka"}, "Tadotsu": {"country": "Japan", "subcountry": "Kagawa"}, "Suzuka": {"country": "Japan", "subcountry": "Mie"}, "Suzaka": {"country": "Japan", "subcountry": "Nagano"}, "Suwa": {"country": "Japan", "subcountry": "Nagano"}, "Susaki": {"country": "Japan", "subcountry": "Kochi"}, "Sumoto": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Sukumo": {"country": "Japan", "subcountry": "Kochi"}, "Suita": {"country": "Japan", "subcountry": "\u014csaka"}, "Suibara": {"country": "Japan", "subcountry": "Niigata"}, "Sugito": {"country": "Japan", "subcountry": "Saitama"}, "Sueyoshich\u014d-Ninokata": {"country": "Japan", "subcountry": "Kagoshima"}, "S\u014dka": {"country": "Japan", "subcountry": "Saitama"}, "S\u014dja": {"country": "Japan", "subcountry": "Okayama"}, "Sobue": {"country": "Japan", "subcountry": "Aichi"}, "Sh\u014dbu": {"country": "Japan", "subcountry": "Saitama"}, "Sh\u014dbara": {"country": "Japan", "subcountry": "Hiroshima"}, "Shizuoka": {"country": "Japan", "subcountry": "Shizuoka"}, "Shirone": {"country": "Japan", "subcountry": "Niigata"}, "Shiraoka": {"country": "Japan", "subcountry": "Saitama"}, "Shirahamach\u014d-Usazakiminami": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Shiozawa": {"country": "Japan", "subcountry": "Niigata"}, "Shiojiri": {"country": "Japan", "subcountry": "Nagano"}, "Shinshiro": {"country": "Japan", "subcountry": "Aichi"}, "Shin\u2019Ichi": {"country": "Japan", "subcountry": "Hiroshima"}, "Shimonoseki": {"country": "Japan", "subcountry": "Yamaguchi"}, "Shimodate": {"country": "Japan", "subcountry": "Ibaraki"}, "Shimoda": {"country": "Japan", "subcountry": "Shizuoka"}, "Minato": {"country": "Japan", "subcountry": "Wakayama"}, "Nishishinminato": {"country": "Japan", "subcountry": "Toyama"}, "Shimada": {"country": "Japan", "subcountry": "Shizuoka"}, "Shimabara": {"country": "Japan", "subcountry": "Nagasaki"}, "Shiki": {"country": "Japan", "subcountry": "Saitama"}, "Shido": {"country": "Japan", "subcountry": "Kagawa"}, "Shibushi": {"country": "Japan", "subcountry": "Kagoshima"}, "Shibukawa": {"country": "Japan", "subcountry": "Gunma"}, "Shibata": {"country": "Japan", "subcountry": "Niigata"}, "Seto": {"country": "Japan", "subcountry": "Aichi"}, "Setakamachi-Takayanagi": {"country": "Japan", "subcountry": "Fukuoka"}, "Satsumasendai": {"country": "Japan", "subcountry": "Kagoshima"}, "Satte": {"country": "Japan", "subcountry": "Saitama"}, "Sasebo": {"country": "Japan", "subcountry": "Nagasaki"}, "Sasayama": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Sasaguri": {"country": "Japan", "subcountry": "Fukuoka"}, "Sano": {"country": "Japan", "subcountry": "Tochigi"}, "Sanj\u014d": {"country": "Japan", "subcountry": "Niigata"}, "Sandach\u014d": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Sakurai": {"country": "Japan", "subcountry": "Nara"}, "Saku": {"country": "Japan", "subcountry": "Nagano"}, "Sakata": {"country": "Japan", "subcountry": "Yamagata"}, "Sakaiminato": {"country": "Japan", "subcountry": "Shimane"}, "Sakaidech\u014d": {"country": "Japan", "subcountry": "Kagawa"}, "Sakai-Nakajima": {"country": "Japan", "subcountry": "Gunma"}, "Sakai": {"country": "Japan", "subcountry": "\u014csaka"}, "Sakado": {"country": "Japan", "subcountry": "Saitama"}, "Saiki": {"country": "Japan", "subcountry": "Oita"}, "Sagara": {"country": "Japan", "subcountry": "Shizuoka"}, "Saga": {"country": "Japan", "subcountry": "Saga Prefecture"}, "Sabae": {"country": "Japan", "subcountry": "Fukui"}, "Ry\u016b\u014d": {"country": "Japan", "subcountry": "Yamanashi"}, "Ry\u014dtsu-Minato": {"country": "Japan", "subcountry": "Niigata"}, "\u014czu": {"country": "Japan", "subcountry": "Ehime"}, "Oyama": {"country": "Japan", "subcountry": "Tochigi"}, "\u014cyama": {"country": "Japan", "subcountry": "Shizuoka"}, "Owase": {"country": "Japan", "subcountry": "Mie"}, "\u014ctsuki": {"country": "Japan", "subcountry": "Yamanashi"}, "\u014ctsu": {"country": "Japan", "subcountry": "Shiga Prefecture"}, "\u014ctake": {"country": "Japan", "subcountry": "Yamaguchi"}, "\u014cta": {"country": "Japan", "subcountry": "Gunma"}, "Osaka": {"country": "Japan", "subcountry": "\u014csaka"}, "Onomichi": {"country": "Japan", "subcountry": "Hiroshima"}, "Onoda": {"country": "Japan", "subcountry": "Yamaguchi"}, "Ono": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "\u014cno-Hara": {"country": "Japan", "subcountry": "Hiroshima"}, "\u014cmuta": {"country": "Japan", "subcountry": "Fukuoka"}, "\u014cmura": {"country": "Japan", "subcountry": "Nagasaki"}, "\u014cme": {"country": "Japan", "subcountry": "Tokyo"}, "\u014cmamach\u014d-\u014cmama": {"country": "Japan", "subcountry": "Gunma"}, "\u014cmachi": {"country": "Japan", "subcountry": "Nagano"}, "\u014ckuchi-Shinohara": {"country": "Japan", "subcountry": "Kagoshima"}, "Okegawa": {"country": "Japan", "subcountry": "Saitama"}, "Okazaki": {"country": "Japan", "subcountry": "Aichi"}, "Okayama": {"country": "Japan", "subcountry": "Okayama"}, "Okaya": {"country": "Japan", "subcountry": "Nagano"}, "\u014ckawa": {"country": "Japan", "subcountry": "Saga Prefecture"}, "Ojiya": {"country": "Japan", "subcountry": "Niigata"}, "\u014cita": {"country": "Japan", "subcountry": "Oita"}, "\u014ciso": {"country": "Japan", "subcountry": "Kanagawa"}, "\u014ci": {"country": "Japan", "subcountry": "Saitama"}, "Og\u014dri-Shimog\u014d": {"country": "Japan", "subcountry": "Yamaguchi"}, "Ogawa": {"country": "Japan", "subcountry": "Saitama"}, "\u014cgaki": {"country": "Japan", "subcountry": "Gifu"}, "Odawara": {"country": "Japan", "subcountry": "Kanagawa"}, "\u014cdach\u014d-\u014cda": {"country": "Japan", "subcountry": "Shimane"}, "\u014cbu": {"country": "Japan", "subcountry": "Aichi"}, "Obita": {"country": "Japan", "subcountry": "Nagasaki"}, "Obama": {"country": "Japan", "subcountry": "Fukui"}, "Ny\u016bzen": {"country": "Japan", "subcountry": "Toyama"}, "Numazu": {"country": "Japan", "subcountry": "Shizuoka"}, "Numata": {"country": "Japan", "subcountry": "Gunma"}, "Nonoichi": {"country": "Japan", "subcountry": "Ishikawa"}, "N\u014dgata": {"country": "Japan", "subcountry": "Fukuoka"}, "Noda": {"country": "Japan", "subcountry": "Chiba"}, "Nobeoka": {"country": "Japan", "subcountry": "Miyazaki"}, "Nishiwaki": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Nishio": {"country": "Japan", "subcountry": "Aichi"}, "Nishinoomote": {"country": "Japan", "subcountry": "Kagoshima"}, "Nishinomiya-Hama": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Nirasaki": {"country": "Japan", "subcountry": "Yamanashi"}, "Ninomiya": {"country": "Japan", "subcountry": "Kanagawa"}, "Nikk\u014d": {"country": "Japan", "subcountry": "Tochigi"}, "Niitsu-Honch\u014d": {"country": "Japan", "subcountry": "Niigata"}, "Niimi": {"country": "Japan", "subcountry": "Okayama"}, "Niihama": {"country": "Japan", "subcountry": "Ehime"}, "Niigata": {"country": "Japan", "subcountry": "Niigata"}, "Nichinan": {"country": "Japan", "subcountry": "Miyazaki"}, "Naze": {"country": "Japan", "subcountry": "Kagoshima"}, "Narutoch\u014d-Mitsuishi": {"country": "Japan", "subcountry": "Tokushima"}, "Nara-Shi": {"country": "Japan", "subcountry": "Nara"}, "Nanao": {"country": "Japan", "subcountry": "Ishikawa"}, "Namerikawa": {"country": "Japan", "subcountry": "Toyama"}, "Nakatsugawa": {"country": "Japan", "subcountry": "Gifu"}, "Nakatsu": {"country": "Japan", "subcountry": "Fukuoka"}, "Nakanoj\u014dmachi": {"country": "Japan", "subcountry": "Gunma"}, "Nakano": {"country": "Japan", "subcountry": "Nagano"}, "Nakamura": {"country": "Japan", "subcountry": "Kochi"}, "Nakama": {"country": "Japan", "subcountry": "Fukuoka"}, "Naha": {"country": "Japan", "subcountry": "Okinawa"}, "Nagoya": {"country": "Japan", "subcountry": "Aichi"}, "Nago": {"country": "Japan", "subcountry": "Okinawa"}, "Nagasaki": {"country": "Japan", "subcountry": "Nagasaki"}, "Nagareyama": {"country": "Japan", "subcountry": "Chiba"}, "Nagaoka": {"country": "Japan", "subcountry": "Niigata"}, "Nagano": {"country": "Japan", "subcountry": "Nagano"}, "Nagahama": {"country": "Japan", "subcountry": "Shiga Prefecture"}, "Nabari": {"country": "Japan", "subcountry": "Mie"}, "Musashino": {"country": "Japan", "subcountry": "Tokyo"}, "Muroto-Misakicho": {"country": "Japan", "subcountry": "Kochi"}, "Muramatsu": {"country": "Japan", "subcountry": "Niigata"}, "Murakami": {"country": "Japan", "subcountry": "Niigata"}, "Muk\u014d": {"country": "Japan", "subcountry": "Kyoto"}, "Muikamachi": {"country": "Japan", "subcountry": "Niigata"}, "Morohong\u014d": {"country": "Japan", "subcountry": "Saitama"}, "Moriyama": {"country": "Japan", "subcountry": "Shiga Prefecture"}, "Moriguchi": {"country": "Japan", "subcountry": "\u014csaka"}, "Mori": {"country": "Japan", "subcountry": "Shizuoka"}, "Mizunami": {"country": "Japan", "subcountry": "Gifu"}, "Miyoshi": {"country": "Japan", "subcountry": "Hiroshima"}, "Miyazu": {"country": "Japan", "subcountry": "Kyoto"}, "Miyazaki": {"country": "Japan", "subcountry": "Miyazaki"}, "Miyakonoj\u014d": {"country": "Japan", "subcountry": "Miyazaki"}, "Miyata": {"country": "Japan", "subcountry": "Fukuoka"}, "Mitsuke": {"country": "Japan", "subcountry": "Niigata"}, "Mitsukaid\u014d": {"country": "Japan", "subcountry": "Ibaraki"}, "Mitake": {"country": "Japan", "subcountry": "Gifu"}, "Mitaka-Shi": {"country": "Japan", "subcountry": "Tokyo"}, "Mishima": {"country": "Japan", "subcountry": "Shizuoka"}, "Mino": {"country": "Japan", "subcountry": "Gifu"}, "Minamirinkan": {"country": "Japan", "subcountry": "Kanagawa"}, "Minamata": {"country": "Japan", "subcountry": "Kumamoto"}, "Minakuchich\u014d-Matoba": {"country": "Japan", "subcountry": "Shiga Prefecture"}, "Mikuni": {"country": "Japan", "subcountry": "Fukui"}, "Miki": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Mihara": {"country": "Japan", "subcountry": "Hiroshima"}, "Mibu": {"country": "Japan", "subcountry": "Tochigi"}, "Menuma": {"country": "Japan", "subcountry": "Saitama"}, "Matsut\u014d": {"country": "Japan", "subcountry": "Ishikawa"}, "Matsumoto": {"country": "Japan", "subcountry": "Nagano"}, "Matsue": {"country": "Japan", "subcountry": "Shimane"}, "Matsudo": {"country": "Japan", "subcountry": "Chiba"}, "Matsubase": {"country": "Japan", "subcountry": "Kumamoto"}, "Matsubara": {"country": "Japan", "subcountry": "\u014csaka"}, "Masuda": {"country": "Japan", "subcountry": "Shimane"}, "Maruoka": {"country": "Japan", "subcountry": "Fukui"}, "Kamimaruko": {"country": "Japan", "subcountry": "Nagano"}, "Marugame": {"country": "Japan", "subcountry": "Kagawa"}, "Makurazaki": {"country": "Japan", "subcountry": "Kagoshima"}, "Maki": {"country": "Japan", "subcountry": "Niigata"}, "Maizuru": {"country": "Japan", "subcountry": "Kyoto"}, "Maebashi": {"country": "Japan", "subcountry": "Gunma"}, "Maebaru-Ch\u016b\u014d": {"country": "Japan", "subcountry": "Fukuoka"}, "Machida": {"country": "Japan", "subcountry": "Tokyo"}, "Kyoto": {"country": "Japan", "subcountry": "Kyoto"}, "Kushikino": {"country": "Japan", "subcountry": "Kagoshima"}, "Kusatsu": {"country": "Japan", "subcountry": "Shiga Prefecture"}, "Kurume": {"country": "Japan", "subcountry": "Fukuoka"}, "Kuroda": {"country": "Japan", "subcountry": "Aichi"}, "Kurihashi": {"country": "Japan", "subcountry": "Saitama"}, "Kure": {"country": "Japan", "subcountry": "Hiroshima"}, "Kurayoshi": {"country": "Japan", "subcountry": "Tottori"}, "Kurashiki": {"country": "Japan", "subcountry": "Okayama"}, "Kumamoto": {"country": "Japan", "subcountry": "Kumamoto"}, "Kumagaya": {"country": "Japan", "subcountry": "Saitama"}, "Kukich\u016b\u014d": {"country": "Japan", "subcountry": "Saitama"}, "Kudamatsu": {"country": "Japan", "subcountry": "Yamaguchi"}, "Kozakai-Ch\u014d": {"country": "Japan", "subcountry": "Aichi"}, "Koshigaya": {"country": "Japan", "subcountry": "Saitama"}, "Kosai-Shi": {"country": "Japan", "subcountry": "Shizuoka"}, "K\u014dnosu": {"country": "Japan", "subcountry": "Saitama"}, "K\u014dnan": {"country": "Japan", "subcountry": "Aichi"}, "Komoro": {"country": "Japan", "subcountry": "Nagano"}, "Komono": {"country": "Japan", "subcountry": "Mie"}, "Komatsushimach\u014d": {"country": "Japan", "subcountry": "Tokushima"}, "Komatsu": {"country": "Japan", "subcountry": "Ishikawa"}, "Komaki": {"country": "Japan", "subcountry": "Aichi"}, "Kokubunji": {"country": "Japan", "subcountry": "Tokyo"}, "Kokubu-Matsuki": {"country": "Japan", "subcountry": "Kagoshima"}, "Koga": {"country": "Japan", "subcountry": "Fukuoka"}, "K\u014dfu": {"country": "Japan", "subcountry": "Yamanashi"}, "Kodamach\u014d-Kodamaminami": {"country": "Japan", "subcountry": "Saitama"}, "Kochi": {"country": "Japan", "subcountry": "Kochi"}, "Kobe": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Kobayashi": {"country": "Japan", "subcountry": "Miyazaki"}, "Kitsuki": {"country": "Japan", "subcountry": "Oita"}, "Kitakyushu": {"country": "Japan", "subcountry": "Fukuoka"}, "Kitakata": {"country": "Japan", "subcountry": "Fukushima"}, "Kitahama": {"country": "Japan", "subcountry": "Shiga Prefecture"}, "Kishiwada": {"country": "Japan", "subcountry": "\u014csaka"}, "Kisarazu": {"country": "Japan", "subcountry": "Chiba"}, "Kisai": {"country": "Japan", "subcountry": "Saitama"}, "Kiry\u016b": {"country": "Japan", "subcountry": "Gunma"}, "Kikuchi": {"country": "Japan", "subcountry": "Kumamoto"}, "Kazo": {"country": "Japan", "subcountry": "Saitama"}, "Kawasaki": {"country": "Japan", "subcountry": "Fukuoka"}, "Kawanishi": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Kawaguchi": {"country": "Japan", "subcountry": "Saitama"}, "Kawagoe": {"country": "Japan", "subcountry": "Saitama"}, "Katsuyama": {"country": "Japan", "subcountry": "Fukui"}, "Kasukabe": {"country": "Japan", "subcountry": "Saitama"}, "Kasugai": {"country": "Japan", "subcountry": "Aichi"}, "Kashiwazaki": {"country": "Japan", "subcountry": "Niigata"}, "Kashiwa": {"country": "Japan", "subcountry": "Chiba"}, "Kashima": {"country": "Japan", "subcountry": "Saga Prefecture"}, "Kashihara-Shi": {"country": "Japan", "subcountry": "Nara"}, "Kashihara": {"country": "Japan", "subcountry": "\u014csaka"}, "Kaseda-Shirakame": {"country": "Japan", "subcountry": "Kagoshima"}, "Kasaoka": {"country": "Japan", "subcountry": "Okayama"}, "Kasamatsuch\u014d": {"country": "Japan", "subcountry": "Gifu"}, "Kariya": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Karatsu": {"country": "Japan", "subcountry": "Saga Prefecture"}, "Kanzakimachi-Kanzaki": {"country": "Japan", "subcountry": "Saga Prefecture"}, "Kanuma": {"country": "Japan", "subcountry": "Tochigi"}, "Kanoya": {"country": "Japan", "subcountry": "Kagoshima"}, "Kan\u2019Onjich\u014d": {"country": "Japan", "subcountry": "Kagawa"}, "Kannabech\u014d-Yahiro": {"country": "Japan", "subcountry": "Hiroshima"}, "Kanie": {"country": "Japan", "subcountry": "Aichi"}, "Kanekomachi": {"country": "Japan", "subcountry": "Gunma"}, "Kanda": {"country": "Japan", "subcountry": "Fukuoka"}, "Kanazawa": {"country": "Japan", "subcountry": "Ishikawa"}, "Kanaya": {"country": "Japan", "subcountry": "Shizuoka"}, "Kamojimach\u014d-J\u014dgejima": {"country": "Japan", "subcountry": "Tokushima"}, "Kamogatach\u014d-Kamogata": {"country": "Japan", "subcountry": "Okayama"}, "Kamo": {"country": "Japan", "subcountry": "Niigata"}, "Kamirenjaku": {"country": "Japan", "subcountry": "Tokyo"}, "Kaminokawa": {"country": "Japan", "subcountry": "Tochigi"}, "Kamiichi": {"country": "Japan", "subcountry": "Toyama"}, "Kameyama": {"country": "Japan", "subcountry": "Mie"}, "Kameoka": {"country": "Japan", "subcountry": "Kyoto"}, "Kameda-Honch\u014d": {"country": "Japan", "subcountry": "Niigata"}, "Kamakura": {"country": "Japan", "subcountry": "Kanagawa"}, "Kakogawach\u014d-Honmachi": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Kakegawa": {"country": "Japan", "subcountry": "Shizuoka"}, "Kakamigahara": {"country": "Japan", "subcountry": "Gifu"}, "Kashima-Shi": {"country": "Japan", "subcountry": "Ibaraki"}, "Kajiki": {"country": "Japan", "subcountry": "Kagoshima"}, "Kaizuka": {"country": "Japan", "subcountry": "\u014csaka"}, "Kainan": {"country": "Japan", "subcountry": "Wakayama"}, "Kagoshima": {"country": "Japan", "subcountry": "Kagoshima"}, "Kadoma": {"country": "Zimbabwe", "subcountry": "Mashonaland West"}, "Izumo": {"country": "Japan", "subcountry": "Shimane"}, "Izumi\u014dtsu": {"country": "Japan", "subcountry": "\u014csaka"}, "Izumi": {"country": "Japan", "subcountry": "Kagoshima"}, "Iwatsuki": {"country": "Japan", "subcountry": "Saitama"}, "Iwata": {"country": "Japan", "subcountry": "Shizuoka"}, "Iwakura": {"country": "Japan", "subcountry": "Aichi"}, "Iwakuni": {"country": "Japan", "subcountry": "Yamaguchi"}, "Iwai": {"country": "Japan", "subcountry": "Ibaraki"}, "Iwade": {"country": "Japan", "subcountry": "Wakayama"}, "Itsukaichi": {"country": "Japan", "subcountry": "Tokyo"}, "Itoman": {"country": "Japan", "subcountry": "Okinawa"}, "Itoigawa": {"country": "Japan", "subcountry": "Niigata"}, "It\u014d": {"country": "Japan", "subcountry": "Shizuoka"}, "Itami": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Ishiki": {"country": "Japan", "subcountry": "Aichi"}, "Ishikawa": {"country": "Japan", "subcountry": "Fukushima"}, "Ishii": {"country": "Japan", "subcountry": "Tokushima"}, "Ishige": {"country": "Japan", "subcountry": "Ibaraki"}, "Ishigaki": {"country": "Japan", "subcountry": "Okinawa"}, "Isesaki": {"country": "Japan", "subcountry": "Gunma"}, "Isehara": {"country": "Japan", "subcountry": "Kanagawa"}, "Ise": {"country": "Japan", "subcountry": "Mie"}, "Isawa": {"country": "Japan", "subcountry": "Yamanashi"}, "Isahaya": {"country": "Japan", "subcountry": "Nagasaki"}, "Inuyama": {"country": "Japan", "subcountry": "Gifu"}, "Ino": {"country": "Japan", "subcountry": "Kochi"}, "Innoshima": {"country": "Japan", "subcountry": "Hiroshima"}, "Inazawa": {"country": "Japan", "subcountry": "Aichi"}, "Ina": {"country": "Japan", "subcountry": "Nagano"}, "Imarich\u014d-K\u014d": {"country": "Japan", "subcountry": "Saga Prefecture"}, "Imaichi": {"country": "Japan", "subcountry": "Tochigi"}, "Ikoma": {"country": "Japan", "subcountry": "Nara"}, "Ikeda": {"country": "Japan", "subcountry": "\u014csaka"}, "Ikedach\u014d": {"country": "Japan", "subcountry": "Tokushima"}, "Ij\u016bin": {"country": "Japan", "subcountry": "Kagoshima"}, "Iizuka": {"country": "Japan", "subcountry": "Fukuoka"}, "Iiyama": {"country": "Japan", "subcountry": "Nagano"}, "Iida": {"country": "Japan", "subcountry": "Nagano"}, "Ichinomiya": {"country": "Japan", "subcountry": "Aichi"}, "Ibusuki": {"country": "Japan", "subcountry": "Kagoshima"}, "Ibaraki": {"country": "Japan", "subcountry": "\u014csaka"}, "Ibara": {"country": "Japan", "subcountry": "Okayama"}, "Hotaka": {"country": "Japan", "subcountry": "Nagano"}, "Honj\u014d": {"country": "Japan", "subcountry": "Saitama"}, "Hondo": {"country": "Japan", "subcountry": "Kumamoto"}, "H\u014dfu": {"country": "Japan", "subcountry": "Yamaguchi"}, "Hitoyoshi": {"country": "Japan", "subcountry": "Kumamoto"}, "Hita": {"country": "Japan", "subcountry": "Oita"}, "Hisai-Motomachi": {"country": "Japan", "subcountry": "Mie"}, "Hiroshima": {"country": "Japan", "subcountry": "Hiroshima"}, "Hiratsuka": {"country": "Japan", "subcountry": "Kanagawa"}, "Hiratach\u014d": {"country": "Japan", "subcountry": "Shimane"}, "Hirara": {"country": "Japan", "subcountry": "Okinawa"}, "Hirakata": {"country": "Japan", "subcountry": "\u014csaka"}, "Hirado": {"country": "Japan", "subcountry": "Nagasaki"}, "Hino": {"country": "Japan", "subcountry": "Shiga Prefecture"}, "Himimachi": {"country": "Japan", "subcountry": "Toyama"}, "Himeji": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Hikone": {"country": "Japan", "subcountry": "Shiga Prefecture"}, "Hiji": {"country": "Japan", "subcountry": "Oita"}, "Hekinan": {"country": "Japan", "subcountry": "Aichi"}, "Hayama": {"country": "Japan", "subcountry": "Kanagawa"}, "Hatsukaichi": {"country": "Japan", "subcountry": "Hiroshima"}, "Hatogaya-Honch\u014d": {"country": "Japan", "subcountry": "Saitama"}, "Hashimoto": {"country": "Japan", "subcountry": "Wakayama"}, "Hany\u016b": {"country": "Japan", "subcountry": "Saitama"}, "Hann\u014d": {"country": "Japan", "subcountry": "Saitama"}, "Handa": {"country": "Japan", "subcountry": "Aichi"}, "Hamanoichi": {"country": "Japan", "subcountry": "Kagoshima"}, "Hamamatsu": {"country": "Japan", "subcountry": "Shizuoka"}, "Hamakita": {"country": "Japan", "subcountry": "Shizuoka"}, "Hamada": {"country": "Japan", "subcountry": "Shimane"}, "Hakui": {"country": "Japan", "subcountry": "Ishikawa"}, "Haibara-Akanedai": {"country": "Japan", "subcountry": "Nara"}, "Hagi": {"country": "Japan", "subcountry": "Yamaguchi"}, "Katsuren-Haebaru": {"country": "Japan", "subcountry": "Okinawa"}, "Hadano": {"country": "Japan", "subcountry": "Kanagawa"}, "Hachi\u014dji": {"country": "Japan", "subcountry": "Tokyo"}, "\u014cmihachiman": {"country": "Japan", "subcountry": "Shiga Prefecture"}, "Gy\u014dda": {"country": "Japan", "subcountry": "Saitama"}, "Gushikawa": {"country": "Japan", "subcountry": "Okinawa"}, "G\u014dtsuch\u014d": {"country": "Japan", "subcountry": "Shimane"}, "Gotenba": {"country": "Japan", "subcountry": "Shizuoka"}, "Gosen": {"country": "Japan", "subcountry": "Niigata"}, "Gose": {"country": "Japan", "subcountry": "Nara"}, "Goj\u014d": {"country": "Japan", "subcountry": "Nara"}, "G\u014ddo": {"country": "Japan", "subcountry": "Gifu"}, "Gob\u014d": {"country": "Japan", "subcountry": "Wakayama"}, "Ginowan": {"country": "Japan", "subcountry": "Okinawa"}, "Gifu-Shi": {"country": "Japan", "subcountry": "Gifu"}, "Gamag\u014dri": {"country": "Japan", "subcountry": "Aichi"}, "Futtsu": {"country": "Japan", "subcountry": "Chiba"}, "Honch\u014d": {"country": "Japan", "subcountry": "Chiba"}, "Fukuyama": {"country": "Japan", "subcountry": "Hiroshima"}, "Fukuroi": {"country": "Japan", "subcountry": "Shizuoka"}, "Fukura": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Fukuoka": {"country": "Japan", "subcountry": "Fukuoka"}, "Fukumitsu": {"country": "Japan", "subcountry": "Toyama"}, "Nishifukuma": {"country": "Japan", "subcountry": "Fukuoka"}, "Fukui-Shi": {"country": "Japan", "subcountry": "Fukui"}, "Fukuech\u014d": {"country": "Japan", "subcountry": "Nagasaki"}, "Fukuchiyama": {"country": "Japan", "subcountry": "Kyoto"}, "Fukiage-Fujimi": {"country": "Japan", "subcountry": "Saitama"}, "Fukayach\u014d": {"country": "Japan", "subcountry": "Saitama"}, "Fujisawa": {"country": "Japan", "subcountry": "Kanagawa"}, "Fujioka": {"country": "Japan", "subcountry": "Gunma"}, "Fujinomiya": {"country": "Japan", "subcountry": "Shizuoka"}, "Fujieda": {"country": "Japan", "subcountry": "Shizuoka"}, "Fuji": {"country": "Japan", "subcountry": "Shizuoka"}, "Fuch\u016bch\u014d": {"country": "Japan", "subcountry": "Hiroshima"}, "Enzan": {"country": "Japan", "subcountry": "Yamanashi"}, "Dait\u014dch\u014d": {"country": "Japan", "subcountry": "\u014csaka"}, "Ch\u014dfugaoka": {"country": "Japan", "subcountry": "Tokyo"}, "Chiry\u016b": {"country": "Japan", "subcountry": "Aichi"}, "Chino": {"country": "United States", "subcountry": "California"}, "Chikushino-Shi": {"country": "Japan", "subcountry": "Fukuoka"}, "Chigasaki": {"country": "Japan", "subcountry": "Kanagawa"}, "Chichibu": {"country": "Japan", "subcountry": "Saitama"}, "Chatan": {"country": "Japan", "subcountry": "Okinawa"}, "Beppu": {"country": "Japan", "subcountry": "Oita"}, "Ayabe": {"country": "Japan", "subcountry": "Kyoto"}, "Atami": {"country": "Japan", "subcountry": "Shizuoka"}, "Ashiya": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Ashikaga": {"country": "Japan", "subcountry": "Tochigi"}, "Arai": {"country": "Japan", "subcountry": "Niigata"}, "Annaka": {"country": "Japan", "subcountry": "Gunma"}, "Anj\u014d": {"country": "Japan", "subcountry": "Aichi"}, "Anan": {"country": "Japan", "subcountry": "Tokushima"}, "Amagi": {"country": "Japan", "subcountry": "Fukuoka"}, "Amagasaki": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Akune": {"country": "Japan", "subcountry": "Kagoshima"}, "Aki": {"country": "Japan", "subcountry": "Kochi"}, "Aioi": {"country": "Japan", "subcountry": "Hy\u014dgo"}, "Ageoshimo": {"country": "Japan", "subcountry": "Saitama"}, "Okinawa": {"country": "Japan", "subcountry": "Okinawa"}, "Kushima": {"country": "Japan", "subcountry": "Miyazaki"}, "Hikari": {"country": "Japan", "subcountry": "Yamaguchi"}, "Nagato": {"country": "Japan", "subcountry": "Yamaguchi"}, "Hasuda": {"country": "Japan", "subcountry": "Saitama"}, "Kamifukuoka": {"country": "Japan", "subcountry": "Saitama"}, "Sayama": {"country": "Japan", "subcountry": "Saitama"}, "Fussa": {"country": "Japan", "subcountry": "Tokyo"}, "Asaka": {"country": "Uzbekistan", "subcountry": "Andijon"}, "Wako": {"country": "Japan", "subcountry": "Saitama"}, "Shimotoda": {"country": "Japan", "subcountry": "Saitama"}, "Kimitsu": {"country": "Japan", "subcountry": "Chiba"}, "Miura": {"country": "Japan", "subcountry": "Kanagawa"}, "Wakayama": {"country": "Japan", "subcountry": "Wakayama"}, "Iyo": {"country": "Japan", "subcountry": "Ehime"}, "Uwajima": {"country": "Japan", "subcountry": "Ehime"}, "Saij\u014d": {"country": "Japan", "subcountry": "Ehime"}, "Matsuyama": {"country": "Japan", "subcountry": "Ehime"}, "Masaki-Ch\u014d": {"country": "Japan", "subcountry": "Ehime"}, "Kawanoech\u014d": {"country": "Japan", "subcountry": "Ehime"}, "H\u014dj\u014d": {"country": "Japan", "subcountry": "Ehime"}, "Yuzawa": {"country": "Japan", "subcountry": "Akita"}, "Yotsukaid\u014d": {"country": "Japan", "subcountry": "Chiba"}, "Yonezawa": {"country": "Japan", "subcountry": "Yamagata"}, "Yokotemachi": {"country": "Japan", "subcountry": "Akita"}, "Y\u014dkaichiba": {"country": "Japan", "subcountry": "Chiba"}, "Yanagawamachi-Saiwaich\u014d": {"country": "Japan", "subcountry": "Fukushima"}, "Yamoto": {"country": "Japan", "subcountry": "Miyagi"}, "Yamagata": {"country": "Japan", "subcountry": "Yamagata"}, "Yamada": {"country": "Japan", "subcountry": "Iwate"}, "Yachimata": {"country": "Japan", "subcountry": "Chiba"}, "Watari": {"country": "Japan", "subcountry": "Miyagi"}, "Wakuya": {"country": "Japan", "subcountry": "Miyagi"}, "Ushiku": {"country": "Japan", "subcountry": "Ibaraki"}, "Tsukuba": {"country": "Japan", "subcountry": "Ibaraki"}, "Toride": {"country": "Japan", "subcountry": "Ibaraki"}, "T\u014dno": {"country": "Japan", "subcountry": "Iwate"}, "Tomobe": {"country": "Japan", "subcountry": "Ibaraki"}, "Tomiya": {"country": "Japan", "subcountry": "Miyagi"}, "T\u014dgane": {"country": "Japan", "subcountry": "Chiba"}, "Tend\u014d": {"country": "Japan", "subcountry": "Yamagata"}, "Takahata": {"country": "Japan", "subcountry": "Yamagata"}, "Takahagi": {"country": "Japan", "subcountry": "Ibaraki"}, "Sukagawa": {"country": "Japan", "subcountry": "Fukushima"}, "Shizukuishi": {"country": "Japan", "subcountry": "Iwate"}, "Shisui": {"country": "Japan", "subcountry": "Chiba"}, "Shiroishi": {"country": "Japan", "subcountry": "Miyagi"}, "Shiroi": {"country": "Japan", "subcountry": "Chiba"}, "Shiogama": {"country": "Japan", "subcountry": "Miyagi"}, "Shinj\u014d": {"country": "Japan", "subcountry": "Yamagata"}, "Sendai": {"country": "Japan", "subcountry": "Miyagi"}, "Sawara": {"country": "Japan", "subcountry": "Chiba"}, "Sakura": {"country": "Japan", "subcountry": "Chiba"}, "Sagae": {"country": "Japan", "subcountry": "Yamagata"}, "Ry\u016bgasaki": {"country": "Japan", "subcountry": "Ibaraki"}, "Rifu": {"country": "Japan", "subcountry": "Miyagi"}, "\u014ctsuchi": {"country": "Japan", "subcountry": "Iwate"}, "\u014ctawara": {"country": "Japan", "subcountry": "Tochigi"}, "\u014cmiya": {"country": "Japan", "subcountry": "Ibaraki"}, "Omigawa": {"country": "Japan", "subcountry": "Chiba"}, "\u014cmagari": {"country": "Japan", "subcountry": "Akita"}, "Okunoya": {"country": "Japan", "subcountry": "Ibaraki"}, "\u014ckawara": {"country": "Japan", "subcountry": "Miyagi"}, "\u014chara": {"country": "Japan", "subcountry": "Chiba"}, "\u014cfunato": {"country": "Japan", "subcountry": "Iwate"}, "Obanazawa": {"country": "Japan", "subcountry": "Yamagata"}, "\u014carai": {"country": "Japan", "subcountry": "Ibaraki"}, "\u014cami": {"country": "Japan", "subcountry": "Chiba"}, "Nihommatsu": {"country": "Japan", "subcountry": "Fukushima"}, "Narut\u014d": {"country": "Japan", "subcountry": "Chiba"}, "Narita": {"country": "Japan", "subcountry": "Chiba"}, "Namie": {"country": "Japan", "subcountry": "Fukushima"}, "Naka": {"country": "Japan", "subcountry": "Ibaraki"}, "Nagai": {"country": "Japan", "subcountry": "Yamagata"}, "Motomiya": {"country": "Japan", "subcountry": "Fukushima"}, "Motegi": {"country": "Japan", "subcountry": "Tochigi"}, "Moriya": {"country": "Japan", "subcountry": "Ibaraki"}, "Morioka": {"country": "Japan", "subcountry": "Iwate"}, "Mooka": {"country": "Japan", "subcountry": "Tochigi"}, "Mobara": {"country": "Japan", "subcountry": "Chiba"}, "Mizusawa": {"country": "Japan", "subcountry": "Iwate"}, "Miyako": {"country": "Japan", "subcountry": "Iwate"}, "Mito": {"country": "Japan", "subcountry": "Ibaraki"}, "Miharu": {"country": "Japan", "subcountry": "Fukushima"}, "Matsushima": {"country": "Japan", "subcountry": "Miyagi"}, "Mashiko": {"country": "Japan", "subcountry": "Tochigi"}, "Marumori": {"country": "Japan", "subcountry": "Miyagi"}, "Makabe": {"country": "Japan", "subcountry": "Ibaraki"}, "Kuroiso": {"country": "Japan", "subcountry": "Tochigi"}, "K\u014driyama": {"country": "Japan", "subcountry": "Fukushima"}, "Kogota": {"country": "Japan", "subcountry": "Miyagi"}, "Kitakami": {"country": "Japan", "subcountry": "Iwate"}, "Kitaibaraki": {"country": "Japan", "subcountry": "Ibaraki"}, "Kamogawa": {"country": "Japan", "subcountry": "Chiba"}, "Katsuura": {"country": "Japan", "subcountry": "Chiba"}, "Katsuta": {"country": "Japan", "subcountry": "Ibaraki"}, "Katori-Shi": {"country": "Japan", "subcountry": "Chiba"}, "Kasama": {"country": "Zambia", "subcountry": "Northern"}, "Karasuyama": {"country": "Japan", "subcountry": "Tochigi"}, "Kaminoyama": {"country": "Japan", "subcountry": "Yamagata"}, "Kamaishi": {"country": "Japan", "subcountry": "Iwate"}, "Kakuda": {"country": "Japan", "subcountry": "Miyagi"}, "Iwase": {"country": "Japan", "subcountry": "Ibaraki"}, "Iwanuma": {"country": "Japan", "subcountry": "Miyagi"}, "Iwaki": {"country": "Japan", "subcountry": "Fukushima"}, "Itako": {"country": "Japan", "subcountry": "Ibaraki"}, "Ishioka": {"country": "Japan", "subcountry": "Ibaraki"}, "Ishinomaki": {"country": "Japan", "subcountry": "Miyagi"}, "Inawashiro": {"country": "Japan", "subcountry": "Fukushima"}, "Ichinoseki": {"country": "Japan", "subcountry": "Iwate"}, "Ichihara": {"country": "Japan", "subcountry": "Chiba"}, "Hobaramachi": {"country": "Japan", "subcountry": "Fukushima"}, "Hitachi": {"country": "Japan", "subcountry": "Ibaraki"}, "Higashine": {"country": "Japan", "subcountry": "Yamagata"}, "Hasaki": {"country": "Japan", "subcountry": "Chiba"}, "Hanamaki": {"country": "Japan", "subcountry": "Iwate"}, "Furukawa": {"country": "Japan", "subcountry": "Miyagi"}, "Funehikimachi-Funehiki": {"country": "Japan", "subcountry": "Fukushima"}, "Funaishikawa": {"country": "Japan", "subcountry": "Ibaraki"}, "Fukushima": {"country": "Japan", "subcountry": "Fukushima"}, "Fujishiro": {"country": "Japan", "subcountry": "Ibaraki"}, "Edosaki": {"country": "Japan", "subcountry": "Ibaraki"}, "Daigo": {"country": "Japan", "subcountry": "Ibaraki"}, "Chiba": {"country": "Japan", "subcountry": "Chiba"}, "Asahi": {"country": "Japan", "subcountry": "Chiba"}, "Ami": {"country": "Japan", "subcountry": "Ibaraki"}, "Akita": {"country": "Japan", "subcountry": "Akita"}, "Abiko": {"country": "Japan", "subcountry": "Chiba"}, "Akitashi": {"country": "Japan", "subcountry": "Akita"}, "Bihoro": {"country": "Japan", "subcountry": "Hokkaido"}, "Wakkanai": {"country": "Japan", "subcountry": "Hokkaido"}, "Tomakomai": {"country": "Japan", "subcountry": "Hokkaido"}, "T\u014dbetsu": {"country": "Japan", "subcountry": "Hokkaido"}, "Mutsu": {"country": "Japan", "subcountry": "Aomori"}, "Takikawa": {"country": "Japan", "subcountry": "Hokkaido"}, "Takanosu": {"country": "Japan", "subcountry": "Akita"}, "Sunagawa": {"country": "Japan", "subcountry": "Hokkaido"}, "Shizunai-Furukawach\u014d": {"country": "Japan", "subcountry": "Hokkaido"}, "Shiraoi": {"country": "Japan", "subcountry": "Hokkaido"}, "Shimo-Furano": {"country": "Japan", "subcountry": "Hokkaido"}, "Shibetsu": {"country": "Japan", "subcountry": "Hokkaido"}, "Sapporo": {"country": "Japan", "subcountry": "Hokkaido"}, "Rumoi": {"country": "Japan", "subcountry": "Hokkaido"}, "Otofuke": {"country": "Japan", "subcountry": "Hokkaido"}, "Otaru": {"country": "Japan", "subcountry": "Hokkaido"}, "\u014cdate": {"country": "Japan", "subcountry": "Akita"}, "Obihiro": {"country": "Japan", "subcountry": "Hokkaido"}, "Noshiro": {"country": "Japan", "subcountry": "Akita"}, "Nemuro": {"country": "Japan", "subcountry": "Hokkaido"}, "Nayoro": {"country": "Japan", "subcountry": "Hokkaido"}, "Nanae": {"country": "Japan", "subcountry": "Hokkaido"}, "Namioka": {"country": "Japan", "subcountry": "Aomori"}, "Muroran": {"country": "Japan", "subcountry": "Hokkaido"}, "Mombetsu": {"country": "Japan", "subcountry": "Hokkaido"}, "Misawa": {"country": "Japan", "subcountry": "Aomori"}, "Yoichi": {"country": "Japan", "subcountry": "Hokkaido"}, "Makubetsu": {"country": "Japan", "subcountry": "Hokkaido"}, "Kushiro": {"country": "Japan", "subcountry": "Hokkaido"}, "Kuroishi": {"country": "Japan", "subcountry": "Aomori"}, "Shimokizukuri": {"country": "Japan", "subcountry": "Aomori"}, "Kitami": {"country": "Japan", "subcountry": "Hokkaido"}, "Kamiiso": {"country": "Japan", "subcountry": "Hokkaido"}, "Iwanai": {"country": "Japan", "subcountry": "Hokkaido"}, "Iwamizawa": {"country": "Japan", "subcountry": "Hokkaido"}, "Ishikari": {"country": "Japan", "subcountry": "Hokkaido"}, "Ichinohe": {"country": "Japan", "subcountry": "Iwate"}, "Kitahiroshima": {"country": "Japan", "subcountry": "Hokkaido"}, "Hirosaki": {"country": "Japan", "subcountry": "Aomori"}, "Hanawa": {"country": "Japan", "subcountry": "Akita"}, "Hakodate": {"country": "Japan", "subcountry": "Hokkaido"}, "Hachinohe": {"country": "Japan", "subcountry": "Aomori"}, "Fukagawa": {"country": "Japan", "subcountry": "Hokkaido"}, "Ebetsu": {"country": "Japan", "subcountry": "Hokkaido"}, "Date": {"country": "Japan", "subcountry": "Hokkaido"}, "Chitose": {"country": "Japan", "subcountry": "Hokkaido"}, "Bibai": {"country": "Japan", "subcountry": "Hokkaido"}, "Ashibetsu": {"country": "Japan", "subcountry": "Hokkaido"}, "Asahikawa": {"country": "Japan", "subcountry": "Hokkaido"}, "Aomorishi": {"country": "Japan", "subcountry": "Aomori"}, "Abashiri": {"country": "Japan", "subcountry": "Hokkaido"}, "Goshogawara": {"country": "Japan", "subcountry": "Aomori"}, "Aso": {"country": "Japan", "subcountry": "Kumamoto"}, "Nanto-Shi": {"country": "Japan", "subcountry": "Toyama"}, "Kawage": {"country": "Japan", "subcountry": "Mie"}, "Neyagawa": {"country": "Japan", "subcountry": "\u014csaka"}, "Hitachi-Naka": {"country": "Japan", "subcountry": "Ibaraki"}, "Inashiki": {"country": "Japan", "subcountry": "Ibaraki"}, "\u014cnoj\u014d": {"country": "Japan", "subcountry": "Fukuoka"}, "Minokamo": {"country": "Japan", "subcountry": "Gifu"}, "Guj\u014d": {"country": "Japan", "subcountry": "Gifu"}, "J\u014detsu": {"country": "Japan", "subcountry": "Niigata"}, "Saitama": {"country": "Japan", "subcountry": "Saitama"}, "Higashimurayama-Shi": {"country": "Japan", "subcountry": "Tokyo"}, "Fujikawaguchiko": {"country": "Japan", "subcountry": "Yamanashi"}, "Dazaifu": {"country": "Japan", "subcountry": "Fukuoka"}, "Kamigy\u014d-Ku": {"country": "Japan", "subcountry": "Kyoto"}, "Buzen": {"country": "Japan", "subcountry": "Fukuoka"}, "Webuye": {"country": "Kenya", "subcountry": "Bungoma"}, "Wajir": {"country": "Kenya", "subcountry": "Wajir"}, "Voi": {"country": "Kenya", "subcountry": "Taita Taveta"}, "Thika": {"country": "Kenya", "subcountry": "Nairobi Area"}, "Rongai": {"country": "Kenya", "subcountry": "Nakuru"}, "Pumwani": {"country": "Kenya", "subcountry": "Nairobi Area"}, "Nyeri": {"country": "Kenya", "subcountry": "Nyeri"}, "Nyahururu": {"country": "Kenya", "subcountry": "Laikipia"}, "Narok": {"country": "Kenya", "subcountry": "Narok"}, "Nanyuki": {"country": "Kenya", "subcountry": "Laikipia"}, "Nakuru": {"country": "Kenya", "subcountry": "Nakuru"}, "Naivasha": {"country": "Kenya", "subcountry": "Nakuru"}, "Nairobi": {"country": "Kenya", "subcountry": "Nairobi Area"}, "Mumias": {"country": "Kenya", "subcountry": "Kakamega"}, "Muhoroni": {"country": "Kenya", "subcountry": "Kisumu"}, "Moyale": {"country": "Kenya", "subcountry": "Marsabit"}, "Mombasa": {"country": "Kenya", "subcountry": "Mombasa"}, "Molo": {"country": "Kenya", "subcountry": "Nakuru"}, "Migori": {"country": "Kenya", "subcountry": "Migori"}, "Meru": {"country": "Kenya", "subcountry": "Meru"}, "Mbale": {"country": "Uganda", "subcountry": "Eastern Region"}, "Marsabit": {"country": "Kenya", "subcountry": "Marsabit"}, "Maralal": {"country": "Kenya", "subcountry": "Samburu"}, "Mandera": {"country": "Kenya", "subcountry": "Mandera"}, "Malindi": {"country": "Kenya", "subcountry": "Kilifi"}, "Makueni": {"country": "Kenya", "subcountry": "Makueni"}, "Machakos": {"country": "Kenya", "subcountry": "Machakos"}, "Lugulu": {"country": "Kenya", "subcountry": "Busia"}, "Lodwar": {"country": "Kenya", "subcountry": "Turkana"}, "Lamu": {"country": "Kenya", "subcountry": "Lamu"}, "Kitui": {"country": "Kenya", "subcountry": "Kitui"}, "Kitale": {"country": "Kenya", "subcountry": "Trans Nzoia"}, "Kisumu": {"country": "Kenya", "subcountry": "Kisumu"}, "Kisii": {"country": "Kenya", "subcountry": "Kisii"}, "Kilifi": {"country": "Kenya", "subcountry": "Kilifi"}, "Kiambu": {"country": "Kenya", "subcountry": "Kiambu"}, "Keruguya": {"country": "Kenya", "subcountry": "Kirinyaga"}, "Kericho": {"country": "Kenya", "subcountry": "Kericho"}, "Karuri": {"country": "Kenya", "subcountry": "Murang'A"}, "Kapenguria": {"country": "Kenya", "subcountry": "West Pokot"}, "Kakamega": {"country": "Kenya", "subcountry": "Kakamega"}, "Kabarnet": {"country": "Kenya", "subcountry": "Baringo"}, "Isiolo": {"country": "Kenya", "subcountry": "Isiolo"}, "Homa Bay": {"country": "Kenya", "subcountry": "Homa Bay"}, "Garissa": {"country": "Kenya", "subcountry": "Garissa"}, "Eldoret": {"country": "Kenya", "subcountry": "Uasin Gishu"}, "Busia": {"country": "Uganda", "subcountry": "Eastern Region"}, "Bungoma": {"country": "Kenya", "subcountry": "Bungoma"}, "Athi River": {"country": "Kenya", "subcountry": "Machakos"}, "Siaya": {"country": "Kenya", "subcountry": "Siaya"}, "Ol Kalou": {"country": "Kenya", "subcountry": "Nyandarua"}, "Suluktu": {"country": "Kyrgyzstan", "subcountry": "Batken"}, "Isfana": {"country": "Kyrgyzstan", "subcountry": "Batken"}, "Balykchy": {"country": "Kyrgyzstan", "subcountry": "Ysyk-K\u00f6l"}, "Tokmok": {"country": "Kyrgyzstan", "subcountry": "Ch\u00fcy"}, "Tash-Kumyr": {"country": "Kyrgyzstan", "subcountry": "Jalal-Abad"}, "Talas": {"country": "Turkey", "subcountry": "Kayseri"}, "Kyzyl-Suu": {"country": "Kyrgyzstan", "subcountry": "Ysyk-K\u00f6l"}, "Uzgen": {"country": "Kyrgyzstan", "subcountry": "Osh"}, "Osh": {"country": "Kyrgyzstan", "subcountry": "Osh"}, "Naryn": {"country": "Kyrgyzstan", "subcountry": "Naryn"}, "Kyzyl-Kyya": {"country": "Kyrgyzstan", "subcountry": "Batken"}, "Kara Suu": {"country": "Kyrgyzstan", "subcountry": "Osh"}, "Karakol": {"country": "Kyrgyzstan", "subcountry": "Ysyk-K\u00f6l"}, "Kara-Balta": {"country": "Kyrgyzstan", "subcountry": "Ch\u00fcy"}, "Kant": {"country": "Kyrgyzstan", "subcountry": "Ch\u00fcy"}, "Jalal-Abad": {"country": "Kyrgyzstan", "subcountry": "Jalal-Abad"}, "Iradan": {"country": "Kyrgyzstan", "subcountry": "Batken"}, "Cholpon-Ata": {"country": "Kyrgyzstan", "subcountry": "Ysyk-K\u00f6l"}, "Bishkek": {"country": "Kyrgyzstan", "subcountry": "Bishkek"}, "Bazar-Korgon": {"country": "Kyrgyzstan", "subcountry": "Jalal-Abad"}, "At-Bashi": {"country": "Kyrgyzstan", "subcountry": "Naryn"}, "Toktogul": {"country": "Kyrgyzstan", "subcountry": "Jalal-Abad"}, "Osh City": {"country": "Kyrgyzstan", "subcountry": "Osh City"}, "Phnom Penh": {"country": "Cambodia", "subcountry": "Phnom Penh"}, "Ta Khmau": {"country": "Cambodia", "subcountry": "Kandal"}, "Takeo": {"country": "Cambodia", "subcountry": "Takeo"}, "Svay Rieng": {"country": "Cambodia", "subcountry": "Svay Rieng"}, "Stung Treng": {"country": "Cambodia", "subcountry": "Stung Treng"}, "Sis\u014fph\u014fn": {"country": "Cambodia", "subcountry": "Banteay Meanchey"}, "Siem Reap": {"country": "Cambodia", "subcountry": "Siem Reap"}, "Prey Veng": {"country": "Cambodia", "subcountry": "Prey Veng"}, "Pursat": {"country": "Cambodia", "subcountry": "Pursat"}, "Phum\u012d V\u00e9al Sr\u00ea": {"country": "Cambodia", "subcountry": "Takeo"}, "S\u00e2mra\u00f4ng": {"country": "Cambodia", "subcountry": "\u014et\u00e2r M\u00e9anchey"}, "Tb\u00eang M\u00e9anchey": {"country": "Cambodia", "subcountry": "Preah Vihear"}, "Pa\u00f4y P\u00eat": {"country": "Cambodia", "subcountry": "Banteay Meanchey"}, "Pailin": {"country": "Cambodia", "subcountry": "Pailin"}, "Lumph\u0103t": {"country": "Cambodia", "subcountry": "Ratanakiri"}, "Koh Kong": {"country": "Cambodia", "subcountry": "Koh Kong"}, "Krati\u00e9": {"country": "Cambodia", "subcountry": "Kratie"}, "Kampot": {"country": "Cambodia", "subcountry": "Kampot"}, "Kampong Thom": {"country": "Cambodia", "subcountry": "Kampong Thom"}, "Kampong Speu": {"country": "Cambodia", "subcountry": "Kampong Speu"}, "Sihanoukville": {"country": "Cambodia", "subcountry": "Preah Sihanouk"}, "Kampong Chhnang": {"country": "Cambodia", "subcountry": "Kampong Chhnang"}, "Kampong Cham": {"country": "Cambodia", "subcountry": "Kampong Cham"}, "Ban L\u016dng": {"country": "Cambodia", "subcountry": "Ratanakiri"}, "Battambang": {"country": "Cambodia", "subcountry": "Battambang"}, "Smach Mean Chey": {"country": "Cambodia", "subcountry": "Koh Kong"}, "Tarawa": {"country": "Kiribati", "subcountry": "Gilbert Islands"}, "Moutsamoudou": {"country": "Comoros", "subcountry": "Anjouan"}, "Moroni": {"country": "Comoros", "subcountry": "Grande Comore"}, "Basseterre": {"country": "Saint Kitts and Nevis", "subcountry": "Saint George Basseterre"}, "Y\u014fnan-\u016cp": {"country": "North Korea", "subcountry": "Hwanghae-namdo"}, "W\u014fnsan": {"country": "North Korea", "subcountry": "Kangw\u014fn-do"}, "T\u2019Ongch\u2019\u014en-\u016cp": {"country": "North Korea", "subcountry": "Kangw\u014fn-do"}, "S\u016dngho 1-Tong": {"country": "North Korea", "subcountry": "Pyongyang"}, "Sunan": {"country": "North Korea", "subcountry": "Pyongyang"}, "Songnim": {"country": "North Korea", "subcountry": "Hwanghae-bukto"}, "Sil-Li": {"country": "North Korea", "subcountry": "P'y\u014fngan-namdo"}, "Sinmak": {"country": "North Korea", "subcountry": "Hwanghae-bukto"}, "Sinanju": {"country": "North Korea", "subcountry": "P'y\u014fngan-namdo"}, "Sariw\u014fn": {"country": "North Korea", "subcountry": "Hwanghae-bukto"}, "Samho-Rodongjagu": {"country": "North Korea", "subcountry": "Hamgy\u014fng-namdo"}, "Pyongyang": {"country": "North Korea", "subcountry": "Pyongyang"}, "P\u2019Y\u014fngs\u014fng": {"country": "North Korea", "subcountry": "P'y\u014fngan-namdo"}, "Ongjin": {"country": "North Korea", "subcountry": "Hwanghae-namdo"}, "Namp\u2019O": {"country": "North Korea", "subcountry": "P'y\u014fngan-namdo"}, "Kus\u014fng": {"country": "North Korea", "subcountry": "P'y\u014fngan-bukto"}, "Kujang-\u016cp": {"country": "North Korea", "subcountry": "P'y\u014fngan-bukto"}, "Kow\u014fn-\u016cp": {"country": "North Korea", "subcountry": "Hamgy\u014fng-namdo"}, "Kosan": {"country": "North Korea", "subcountry": "Kangw\u014fn-do"}, "Kangdong-\u016cp": {"country": "North Korea", "subcountry": "Pyongyang"}, "Kaes\u014fng": {"country": "North Korea", "subcountry": "Hwanghae-namdo"}, "Hwangju-\u016cp": {"country": "North Korea", "subcountry": "Hwanghae-bukto"}, "H\u016dngnam": {"country": "North Korea", "subcountry": "Hamgy\u014fng-namdo"}, "H\u016dkkyo-Ri": {"country": "North Korea", "subcountry": "Hwanghae-bukto"}, "Hoeyang": {"country": "North Korea", "subcountry": "Kangw\u014fn-do"}, "Hamh\u016dng": {"country": "North Korea", "subcountry": "Hamgy\u014fng-namdo"}, "Haeju": {"country": "North Korea", "subcountry": "Hwanghae-namdo"}, "Chunghwa": {"country": "North Korea", "subcountry": "Pyongyang"}, "Ch\u014fngju": {"country": "North Korea", "subcountry": "P'y\u014fngan-bukto"}, "Changy\u014fn": {"country": "North Korea", "subcountry": "Hwanghae-namdo"}, "Chaery\u014fng-\u016cp": {"country": "North Korea", "subcountry": "Hwanghae-namdo"}, "Ayang-Ni": {"country": "North Korea", "subcountry": "Hwanghae-namdo"}, "Anju": {"country": "North Korea", "subcountry": "P'y\u014fngan-namdo"}, "Anby\u014fn-\u016cp": {"country": "North Korea", "subcountry": "Kangw\u014fn-do"}, "Anak": {"country": "North Korea", "subcountry": "Hwanghae-bukto"}, "Yuktae-Dong": {"country": "North Korea", "subcountry": "Hamgy\u014fng-namdo"}, "\u016ciju": {"country": "North Korea", "subcountry": "P'y\u014fngan-bukto"}, "S\u014fnbong": {"country": "North Korea", "subcountry": "Rason"}, "Sin\u016diju": {"country": "North Korea", "subcountry": "P'y\u014fngan-bukto"}, "Sakchu-\u016cp": {"country": "North Korea", "subcountry": "P'y\u014fngan-bukto"}, "Y\u014fnggwang-\u016cp": {"country": "North Korea", "subcountry": "Hamgy\u014fng-namdo"}, "Ons\u014fng": {"country": "North Korea", "subcountry": "Hamgy\u014fng-bukto"}, "Nanam": {"country": "North Korea", "subcountry": "Hamgy\u014fng-bukto"}, "Namyang-Dong": {"country": "North Korea", "subcountry": "Hamgy\u014fng-bukto"}, "Najin": {"country": "North Korea", "subcountry": "Rason"}, "Musan-\u016cp": {"country": "North Korea", "subcountry": "Hamgy\u014fng-bukto"}, "Ky\u014fngs\u014fng": {"country": "North Korea", "subcountry": "Hamgy\u014fng-bukto"}, "Kilju": {"country": "North Korea", "subcountry": "Hamgy\u014fng-bukto"}, "Kapsan-\u016cp": {"country": "North Korea", "subcountry": "Yanggang-do"}, "Kanggye-Si": {"country": "North Korea", "subcountry": "Chagang-do"}, "Iw\u014fn-\u016cp": {"country": "North Korea", "subcountry": "Hamgy\u014fng-namdo"}, "Hyesan-Dong": {"country": "North Korea", "subcountry": "Yanggang-do"}, "Hyesan-Si": {"country": "North Korea", "subcountry": "Yanggang-do"}, "Hongw\u014fn": {"country": "North Korea", "subcountry": "Hamgy\u014fng-namdo"}, "Hoery\u014fng": {"country": "North Korea", "subcountry": "Hamgy\u014fng-bukto"}, "Chongjin": {"country": "North Korea", "subcountry": "Hamgy\u014fng-bukto"}, "Aoji-Ri": {"country": "North Korea", "subcountry": "Hamgy\u014fng-bukto"}, "Heung-Hai": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Enjitsu": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Neietsu": {"country": "South Korea", "subcountry": "Gangwon-do"}, "Eisen": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Reiko": {"country": "South Korea", "subcountry": "Jeollanam-do"}, "Y\u014fng-Dong": {"country": "South Korea", "subcountry": "Chungcheongbuk-do"}, "Yeoju": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Yesan": {"country": "South Korea", "subcountry": "Chungcheongnam-do"}, "Yangsan": {"country": "South Korea", "subcountry": "Gyeongsangnam-do"}, "Yangp'Y\u014fng": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Yangju": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "W\u014fnju": {"country": "South Korea", "subcountry": "Gangwon-do"}, "Wanju": {"country": "South Korea", "subcountry": "Jeollabuk-do"}, "Waegwan": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Ulsan": {"country": "South Korea", "subcountry": "Ulsan"}, "Uijeongbu-Si": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Tangjin": {"country": "South Korea", "subcountry": "Chungcheongnam-do"}, "Taesal-Li": {"country": "South Korea", "subcountry": "Chungcheongnam-do"}, "Daejeon": {"country": "South Korea", "subcountry": "Daejeon"}, "Daegu": {"country": "South Korea", "subcountry": "Daegu"}, "Taisen-Ri": {"country": "South Korea", "subcountry": "Chungcheongnam-do"}, "T\u2019Aebaek": {"country": "South Korea", "subcountry": "Gangwon-do"}, "Suwon-Si": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Suncheon": {"country": "South Korea", "subcountry": "Jeollanam-do"}, "Seoul": {"country": "South Korea", "subcountry": "Seoul"}, "Suisan": {"country": "South Korea", "subcountry": "Chungcheongnam-do"}, "Jenzan": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Seonghwan": {"country": "South Korea", "subcountry": "Chungcheongnam-do"}, "Sokcho": {"country": "South Korea", "subcountry": "Gangwon-do"}, "Sangju": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Santyoku": {"country": "South Korea", "subcountry": "Gangwon-do"}, "Fuyo": {"country": "South Korea", "subcountry": "Chungcheongnam-do"}, "Busan": {"country": "South Korea", "subcountry": "Busan"}, "Bucheon-Si": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Puan": {"country": "South Korea", "subcountry": "Jeollabuk-do"}, "Beolgyo": {"country": "South Korea", "subcountry": "Jeollanam-do"}, "Pohang": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Osan": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Asan": {"country": "South Korea", "subcountry": "Chungcheongnam-do"}, "Okcheon": {"country": "South Korea", "subcountry": "Chungcheongbuk-do"}, "Kosong": {"country": "South Korea", "subcountry": "Gangwon-do"}, "Nonsan": {"country": "South Korea", "subcountry": "Chungcheongnam-do"}, "Nangen": {"country": "South Korea", "subcountry": "Jeollabuk-do"}, "Naju": {"country": "South Korea", "subcountry": "Jeollanam-do"}, "Munsan": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Mungyeong": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Muan": {"country": "South Korea", "subcountry": "Jeollanam-do"}, "Moppo": {"country": "South Korea", "subcountry": "Jeollanam-do"}, "Miryang": {"country": "South Korea", "subcountry": "Gyeongsangnam-do"}, "Gyeongsan-Si": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Kyonju": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Kwangyang": {"country": "South Korea", "subcountry": "Jeollanam-do"}, "Gwangju": {"country": "South Korea", "subcountry": "Gwangju"}, "Kurye": {"country": "South Korea", "subcountry": "Jeollanam-do"}, "Guri-Si": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Kunwi": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Kunsan": {"country": "South Korea", "subcountry": "Jeollabuk-do"}, "Kinzan": {"country": "South Korea", "subcountry": "Chungcheongnam-do"}, "Gumi": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Goyang-Si": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Goseong": {"country": "South Korea", "subcountry": "Gyeongsangnam-do"}, "Gongju": {"country": "South Korea", "subcountry": "Chungcheongnam-do"}, "Kyosai": {"country": "South Korea", "subcountry": "Gyeongsangnam-do"}, "Koesan": {"country": "South Korea", "subcountry": "Chungcheongbuk-do"}, "Koch'Ang": {"country": "South Korea", "subcountry": "Jeollabuk-do"}, "Kimje": {"country": "South Korea", "subcountry": "Jeollabuk-do"}, "Kimhae": {"country": "South Korea", "subcountry": "Gyeongsangnam-do"}, "Gimcheon": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Gijang": {"country": "South Korea", "subcountry": "Busan"}, "Gapyeong": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Kang-Neung": {"country": "South Korea", "subcountry": "Gangwon-do"}, "Ganghwa-Gun": {"country": "South Korea", "subcountry": "Incheon"}, "Iksan": {"country": "South Korea", "subcountry": "Jeollabuk-do"}, "Incheon": {"country": "South Korea", "subcountry": "Incheon"}, "Imsil": {"country": "South Korea", "subcountry": "Jeollabuk-do"}, "Icheon-Si": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Hwasun": {"country": "South Korea", "subcountry": "Jeollanam-do"}, "Hwaseong-Si": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Hwacheon": {"country": "South Korea", "subcountry": "Gangwon-do"}, "Hongsung": {"country": "South Korea", "subcountry": "Chungcheongnam-do"}, "Hongch\u2019\u014en": {"country": "South Korea", "subcountry": "Gangwon-do"}, "Hayang": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Haenam": {"country": "South Korea", "subcountry": "Jeollanam-do"}, "Chuncheon": {"country": "South Korea", "subcountry": "Gangwon-do"}, "Jeonju": {"country": "South Korea", "subcountry": "Jeollabuk-do"}, "Cheongsong Gun": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Cheongju-Si": {"country": "South Korea", "subcountry": "Chungcheongbuk-do"}, "Cheonan": {"country": "South Korea", "subcountry": "Chungcheongnam-do"}, "Chinju": {"country": "South Korea", "subcountry": "Gyeongsangnam-do"}, "Chinch'\u014en": {"country": "South Korea", "subcountry": "Chungcheongbuk-do"}, "Jinan-Gun": {"country": "South Korea", "subcountry": "Jeollabuk-do"}, "Jeju City": {"country": "South Korea", "subcountry": "Jeju-do"}, "Changwon": {"country": "South Korea", "subcountry": "Gyeongsangnam-do"}, "Changsu": {"country": "South Korea", "subcountry": "Jeollabuk-do"}, "Anyang-Si": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Anseong": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Ansan-Si": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Andong": {"country": "South Korea", "subcountry": "Gyeongsangbuk-do"}, "Gaigeturi": {"country": "South Korea", "subcountry": "Jeju-do"}, "Sinhyeon": {"country": "South Korea", "subcountry": "Gyeongsangnam-do"}, "Yeosu": {"country": "South Korea", "subcountry": "Jeollanam-do"}, "Y\u014fnmu": {"country": "South Korea", "subcountry": "Chungcheongnam-do"}, "Tonghae": {"country": "South Korea", "subcountry": "Gangwon-do"}, "Pubal": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Seongnam-Si": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Hanam": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Hwado": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Namyangju": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Ungsang": {"country": "South Korea", "subcountry": "Gyeongsangnam-do"}, "Wabu": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Naes\u014f": {"country": "South Korea", "subcountry": "Gyeongsangnam-do"}, "Hwaw\u014fn": {"country": "South Korea", "subcountry": "Daegu"}, "Kwangmy\u014fng": {"country": "South Korea", "subcountry": "Gyeonggi-do"}, "Sinan": {"country": "South Korea", "subcountry": "Jeollanam-do"}, "Seogwipo": {"country": "South Korea", "subcountry": "Jeju-do"}, "Changnyeong": {"country": "South Korea", "subcountry": "Gyeongsangnam-do"}, "Jan\u016bb As Surrah": {"country": "Kuwait", "subcountry": "Al Farwaniyah"}, "\u1e28awall\u012b": {"country": "Kuwait", "subcountry": "Mu\u1e29\u0101faz\u0327at \u1e28awall\u012b"}, "Bay\u0101n": {"country": "Kuwait", "subcountry": "N/A"}, "As S\u0101lim\u012byah": {"country": "Kuwait", "subcountry": "Mu\u1e29\u0101faz\u0327at \u1e28awall\u012b"}, "Ar Rumayth\u012byah": {"country": "Kuwait", "subcountry": "Mu\u1e29\u0101faz\u0327at \u1e28awall\u012b"}, "Ar Riqqah": {"country": "Kuwait", "subcountry": "Al A\u1e29mad\u012b"}, "Al Manqaf": {"country": "Kuwait", "subcountry": "Al A\u1e29mad\u012b"}, "Al Mahb\u016blah": {"country": "Kuwait", "subcountry": "Al A\u1e29mad\u012b"}, "Kuwait City": {"country": "Kuwait", "subcountry": "Al Asimah"}, "Al Jahr\u0101\u2019": {"country": "Kuwait", "subcountry": "Al Jahr\u0101\u02bc"}, "Al Fa\u1e29\u0101\u1e29\u012bl": {"country": "Kuwait", "subcountry": "Al A\u1e29mad\u012b"}, "Al Fin\u0163\u0101s": {"country": "Kuwait", "subcountry": "Al A\u1e29mad\u012b"}, "Al Farw\u0101n\u012byah": {"country": "Kuwait", "subcountry": "Al Farwaniyah"}, "Al A\u1e29mad\u012b": {"country": "Kuwait", "subcountry": "Al A\u1e29mad\u012b"}, "Ad Dasmah": {"country": "Kuwait", "subcountry": "Al Asimah"}, "Salw\u00e1": {"country": "Kuwait", "subcountry": "Mu\u1e29\u0101faz\u0327at \u1e28awall\u012b"}, "Ar R\u0101biyah": {"country": "Kuwait", "subcountry": "Al Asimah"}, "\u015eab\u0101\u1e29 As S\u0101lim": {"country": "Kuwait", "subcountry": "Mub\u0101rak al Kab\u012br"}, "George Town": {"country": "Malaysia", "subcountry": "Penang"}, "Zhanaozen": {"country": "Kazakhstan", "subcountry": "Mangghysta\u016b"}, "Shalqar": {"country": "Kazakhstan", "subcountry": "Aqt\u00f6be"}, "Shalkar": {"country": "Kazakhstan", "subcountry": "Atyra\u016b"}, "Oral": {"country": "Kazakhstan", "subcountry": "Batys Qazaqstan"}, "Kandyagash": {"country": "Kazakhstan", "subcountry": "Aqt\u00f6be"}, "Qulsary": {"country": "Kazakhstan", "subcountry": "Atyra\u016b"}, "Khromtau": {"country": "Kazakhstan", "subcountry": "Aqt\u00f6be"}, "Karagandy": {"country": "Kazakhstan", "subcountry": "Qaraghandy"}, "Embi": {"country": "Kazakhstan", "subcountry": "Aqt\u00f6be"}, "Balyqshy": {"country": "Kazakhstan", "subcountry": "Atyra\u016b"}, "Atyrau": {"country": "Kazakhstan", "subcountry": "Atyra\u016b"}, "Aqt\u00f6be": {"country": "Kazakhstan", "subcountry": "Aqt\u00f6be"}, "Aktau": {"country": "Kazakhstan", "subcountry": "Mangghysta\u016b"}, "Aqsay": {"country": "Kazakhstan", "subcountry": "Batys Qazaqstan"}, "Zyryanovsk": {"country": "Kazakhstan", "subcountry": "East Kazakhstan"}, "Zhosaly": {"country": "Kazakhstan", "subcountry": "Qyzylorda"}, "Zhezqazghan": {"country": "Kazakhstan", "subcountry": "Qaraghandy"}, "Dzhetygara": {"country": "Kazakhstan", "subcountry": "Qostanay"}, "Zhangatas": {"country": "Kazakhstan", "subcountry": "Zhambyl"}, "Ayteke Bi": {"country": "Kazakhstan", "subcountry": "Qyzylorda"}, "Taraz": {"country": "Kazakhstan", "subcountry": "Zhambyl"}, "Zaysan": {"country": "Kazakhstan", "subcountry": "East Kazakhstan"}, "Yanykurgan": {"country": "Kazakhstan", "subcountry": "Qyzylorda"}, "Vannovka": {"country": "Kazakhstan", "subcountry": "Ongt\u00fcstik Qazaqstan"}, "Ush-Tyube": {"country": "Kazakhstan", "subcountry": "Almaty Oblysy"}, "Turkestan": {"country": "Kazakhstan", "subcountry": "Ongt\u00fcstik Qazaqstan"}, "Temirtau": {"country": "Kazakhstan", "subcountry": "Qaraghandy"}, "Tekeli": {"country": "Kazakhstan", "subcountry": "Almaty Oblysy"}, "Tasb\u00f6get": {"country": "Kazakhstan", "subcountry": "Qyzylorda"}, "Talghar": {"country": "Kazakhstan", "subcountry": "Almaty Oblysy"}, "Taldykorgan": {"country": "Kazakhstan", "subcountry": "Almaty Oblysy"}, "Taldyqorghan": {"country": "Kazakhstan", "subcountry": "Almaty Oblysy"}, "Shymkent": {"country": "Kazakhstan", "subcountry": "Ongt\u00fcstik Qazaqstan"}, "Chu": {"country": "Kazakhstan", "subcountry": "Zhambyl"}, "Shemona\u012bkha": {"country": "Kazakhstan", "subcountry": "East Kazakhstan"}, "Shch\u016bch\u012bnsk": {"country": "Kazakhstan", "subcountry": "Solt\u00fcstik Qazaqstan"}, "Semey": {"country": "Kazakhstan", "subcountry": "East Kazakhstan"}, "Saryaghash": {"country": "Kazakhstan", "subcountry": "Ongt\u00fcstik Qazaqstan"}, "Sarkand": {"country": "Kazakhstan", "subcountry": "Almaty Oblysy"}, "Sorang": {"country": "Kazakhstan", "subcountry": "Qaraghandy"}, "Rudnyy": {"country": "Kazakhstan", "subcountry": "Qostanay"}, "Kyzylorda": {"country": "Kazakhstan", "subcountry": "Qyzylorda"}, "Kostanay": {"country": "Kazakhstan", "subcountry": "Qostanay"}, "Karatau": {"country": "Kazakhstan", "subcountry": "Zhambyl"}, "Kapshagay": {"country": "Kazakhstan", "subcountry": "Almaty Oblysy"}, "Petropavl": {"country": "Kazakhstan", "subcountry": "Solt\u00fcstik Qazaqstan"}, "Pavlodar": {"country": "Kazakhstan", "subcountry": "Pavlodar"}, "Zharkent": {"country": "Kazakhstan", "subcountry": "Almaty Oblysy"}, "Ust-Kamenogorsk": {"country": "Kazakhstan", "subcountry": "East Kazakhstan"}, "Sarykemer": {"country": "Kazakhstan", "subcountry": "Zhambyl"}, "Merke": {"country": "Kazakhstan", "subcountry": "Zhambyl"}, "Mak\u012bnsk": {"country": "Kazakhstan", "subcountry": "Aqmola"}, "Lisakovsk": {"country": "Kazakhstan", "subcountry": "Qostanay"}, "Baykonyr": {"country": "Kazakhstan", "subcountry": "Bayqongyr Qalasy"}, "Ridder": {"country": "Kazakhstan", "subcountry": "East Kazakhstan"}, "Lenger": {"country": "Kazakhstan", "subcountry": "Ongt\u00fcstik Qazaqstan"}, "Kokshetau": {"country": "Kazakhstan", "subcountry": "Aqmola"}, "Kentau": {"country": "Kazakhstan", "subcountry": "Ongt\u00fcstik Qazaqstan"}, "Esik": {"country": "Kazakhstan", "subcountry": "Almaty Oblysy"}, "Georg\u012bevka": {"country": "Kazakhstan", "subcountry": "East Kazakhstan"}, "Aksu": {"country": "Kazakhstan", "subcountry": "Ongt\u00fcstik Qazaqstan"}, "Otegen Batyra": {"country": "Kazakhstan", "subcountry": "Almaty Oblysy"}, "Ekibastuz": {"country": "Kazakhstan", "subcountry": "Pavlodar"}, "Sh\u012beli": {"country": "Kazakhstan", "subcountry": "Qyzylorda"}, "Shardara": {"country": "Kazakhstan", "subcountry": "Ongt\u00fcstik Qazaqstan"}, "Burunday": {"country": "Kazakhstan", "subcountry": "Almaty Oblysy"}, "Balqash": {"country": "Kazakhstan", "subcountry": "Qaraghandy"}, "Ayagoz": {"country": "Kazakhstan", "subcountry": "East Kazakhstan"}, "Atbasar": {"country": "Kazakhstan", "subcountry": "Aqmola"}, "Arys": {"country": "Kazakhstan", "subcountry": "Ongt\u00fcstik Qazaqstan"}, "Arkalyk": {"country": "Kazakhstan", "subcountry": "Qostanay"}, "Astana": {"country": "Kazakhstan", "subcountry": "Astana Qalasy"}, "Almaty": {"country": "Kazakhstan", "subcountry": "Almaty Qalasy"}, "Akkol\u2019": {"country": "Kazakhstan", "subcountry": "Aqmola"}, "Abay": {"country": "Kazakhstan", "subcountry": "Qaraghandy"}, "Stepnogorsk": {"country": "Kazakhstan", "subcountry": "Aqmola"}, "Kyzyl-Orda": {"country": "Kazakhstan", "subcountry": "Qyzylorda"}, "Vientiane": {"country": "Laos", "subcountry": "Vientiane"}, "Xam Nua": {"country": "Laos", "subcountry": "Houaphan"}, "Savannakh\u00e9t": {"country": "Laos", "subcountry": "Savannahkh\u00e9t"}, "Pakx\u00e9": {"country": "Laos", "subcountry": "Champasak"}, "Muang Xay": {"country": "Laos", "subcountry": "Oud\u00f4mxai"}, "Vangviang": {"country": "Laos", "subcountry": "Vientiane Province"}, "Muang Ph\u00f4nsavan": {"country": "Laos", "subcountry": "Xiangkhoang"}, "Muang Pakxan": {"country": "Laos", "subcountry": "Bolikhamsai Province"}, "Thakh\u00e8k": {"country": "Laos", "subcountry": "Khammouan"}, "Luang Prabang": {"country": "Laos", "subcountry": "Louangphabang"}, "Ban Houakhoua": {"country": "Laos", "subcountry": "Bokeo Province"}, "Phonsavan": {"country": "Laos", "subcountry": "Xiangkhoang"}, "Zahl\u00e9": {"country": "Lebanon", "subcountry": "B\u00e9qaa"}, "Tripoli": {"country": "Libya", "subcountry": "Tripoli"}, "Tyre": {"country": "Lebanon", "subcountry": "Liban-Sud"}, "Sidon": {"country": "Lebanon", "subcountry": "Liban-Sud"}, "Ra\u2019S Bayr\u016bt": {"country": "Lebanon", "subcountry": "Beyrouth"}, "Djounie": {"country": "Lebanon", "subcountry": "Mont-Liban"}, "Jba\u00efl": {"country": "Lebanon", "subcountry": "Mont-Liban"}, "Habbo\u00fbch": {"country": "Lebanon", "subcountry": "Nabat\u00eey\u00e9"}, "Bcharr\u00e9": {"country": "Lebanon", "subcountry": "Liban-Nord"}, "Beirut": {"country": "Lebanon", "subcountry": "Beyrouth"}, "Baalbek": {"country": "Lebanon", "subcountry": "Baalbek-Hermel"}, "En N\u00e2qo\u00fbra": {"country": "Lebanon", "subcountry": "Liban-Sud"}, "Nabat\u00eey\u00e9 Et Tahta": {"country": "Lebanon", "subcountry": "Nabat\u00eey\u00e9"}, "Castries": {"country": "Saint Lucia", "subcountry": "Castries Quarter"}, "Vaduz": {"country": "Liechtenstein", "subcountry": "Vaduz"}, "Welisara": {"country": "Sri Lanka", "subcountry": "Western"}, "Weligama": {"country": "Sri Lanka", "subcountry": "Southern"}, "Wattala": {"country": "Sri Lanka", "subcountry": "Western"}, "Vavuniya": {"country": "Sri Lanka", "subcountry": "Northern Province"}, "Valvedditturai": {"country": "Sri Lanka", "subcountry": "Northern Province"}, "Trincomalee": {"country": "Sri Lanka", "subcountry": "Eastern Province"}, "Ratnapura": {"country": "Sri Lanka", "subcountry": "Sabaragamuwa"}, "Puttalam": {"country": "Sri Lanka", "subcountry": "North Western"}, "Point Pedro": {"country": "Sri Lanka", "subcountry": "Northern Province"}, "Pita Kotte": {"country": "Sri Lanka", "subcountry": "Western"}, "Peliyagoda": {"country": "Sri Lanka", "subcountry": "Western"}, "Panadura": {"country": "Sri Lanka", "subcountry": "Western"}, "Nuwara Eliya": {"country": "Sri Lanka", "subcountry": "Central"}, "Negombo": {"country": "Sri Lanka", "subcountry": "Western"}, "Mulleriyawa": {"country": "Sri Lanka", "subcountry": "Western"}, "Dehiwala-Mount Lavinia": {"country": "Sri Lanka", "subcountry": "Western"}, "Moratuwa": {"country": "Sri Lanka", "subcountry": "Western"}, "Matara": {"country": "Sri Lanka", "subcountry": "Southern"}, "Maharagama": {"country": "Sri Lanka", "subcountry": "Western"}, "Kurunegala": {"country": "Sri Lanka", "subcountry": "North Western"}, "Sri Jayewardenepura Kotte": {"country": "Sri Lanka", "subcountry": "Western"}, "Kotikawatta": {"country": "Sri Lanka", "subcountry": "Western"}, "Kolonnawa": {"country": "Sri Lanka", "subcountry": "Western"}, "Kelaniya": {"country": "Sri Lanka", "subcountry": "Western"}, "Katunayaka": {"country": "Sri Lanka", "subcountry": "Western"}, "Kandy": {"country": "Sri Lanka", "subcountry": "Central"}, "Kandana": {"country": "Sri Lanka", "subcountry": "Western"}, "Kalutara": {"country": "Sri Lanka", "subcountry": "Western"}, "Kalmunai": {"country": "Sri Lanka", "subcountry": "Eastern Province"}, "Jaffna": {"country": "Sri Lanka", "subcountry": "Northern Province"}, "Ja Ela": {"country": "Sri Lanka", "subcountry": "Western"}, "Homagama": {"country": "Sri Lanka", "subcountry": "Western"}, "Hendala": {"country": "Sri Lanka", "subcountry": "Western"}, "Hatton": {"country": "Sri Lanka", "subcountry": "Central"}, "Hanwella Ihala": {"country": "Sri Lanka", "subcountry": "Western"}, "Gampola": {"country": "Sri Lanka", "subcountry": "Central"}, "Galle": {"country": "Sri Lanka", "subcountry": "Southern"}, "Galkissa": {"country": "Sri Lanka", "subcountry": "Western"}, "Eravur Town": {"country": "Sri Lanka", "subcountry": "Eastern Province"}, "Dambulla": {"country": "Sri Lanka", "subcountry": "Central"}, "Chilaw": {"country": "Sri Lanka", "subcountry": "North Western"}, "Beruwala": {"country": "Sri Lanka", "subcountry": "Western"}, "Bentota": {"country": "Sri Lanka", "subcountry": "Southern"}, "Batticaloa": {"country": "Sri Lanka", "subcountry": "Eastern Province"}, "Battaramulla South": {"country": "Sri Lanka", "subcountry": "Western"}, "Badulla": {"country": "Sri Lanka", "subcountry": "Uva"}, "Anuradhapura": {"country": "Sri Lanka", "subcountry": "North Central"}, "Ampara": {"country": "Sri Lanka", "subcountry": "Eastern Province"}, "Ambalangoda": {"country": "Sri Lanka", "subcountry": "Southern"}, "Shanjeev Home": {"country": "Sri Lanka", "subcountry": "Eastern Province"}, "Mount Lavinia": {"country": "Sri Lanka", "subcountry": "Western"}, "Zwedru": {"country": "Liberia", "subcountry": "Grand Gedeh"}, "New Yekepa": {"country": "Liberia", "subcountry": "Nimba"}, "Voinjama": {"country": "Liberia", "subcountry": "Lofa"}, "Monrovia": {"country": "United States", "subcountry": "California"}, "Kakata": {"country": "Liberia", "subcountry": "Margibi"}, "Harper": {"country": "Liberia", "subcountry": "Maryland"}, "Greenville": {"country": "United States", "subcountry": "Texas"}, "Gbarnga": {"country": "Liberia", "subcountry": "Bong"}, "Buchanan": {"country": "Liberia", "subcountry": "Grand Bassa"}, "Bensonville": {"country": "Liberia", "subcountry": "Montserrado"}, "Quthing": {"country": "Lesotho", "subcountry": "Quthing"}, "Qacha\u2019S Nek": {"country": "Lesotho", "subcountry": "Qacha\u02bcs Nek"}, "Mohale\u2019S Hoek": {"country": "Lesotho", "subcountry": "Mohale\u02bcs Hoek"}, "Maseru": {"country": "Lesotho", "subcountry": "Maseru"}, "Maputsoe": {"country": "Lesotho", "subcountry": "Leribe"}, "Mafeteng": {"country": "Lesotho", "subcountry": "Mafeteng"}, "Leribe": {"country": "Lesotho", "subcountry": "Leribe"}, "Butha-Buthe": {"country": "Lesotho", "subcountry": "Butha-Buthe"}, "Visaginas": {"country": "Lithuania", "subcountry": "Utenos apskritis"}, "Vilnius": {"country": "Lithuania", "subcountry": "Vilnius County"}, "Utena": {"country": "Lithuania", "subcountry": "Utenos apskritis"}, "Ukmerge": {"country": "Lithuania", "subcountry": "Vilnius County"}, "Telsiai": {"country": "Lithuania", "subcountry": "Tel\u0161i\u0173 apskritis"}, "Taurage": {"country": "Lithuania", "subcountry": "Taurag\u0117s apskritis"}, "Silute": {"country": "Lithuania", "subcountry": "Klaip\u0117dos apskritis"}, "\u0160iauliai": {"country": "Lithuania", "subcountry": "\u0160iauli\u0173 apskritis"}, "Roki\u0161kis": {"country": "Lithuania", "subcountry": "Panev\u0117\u017eys"}, "Radviliskis": {"country": "Lithuania", "subcountry": "\u0160iauli\u0173 apskritis"}, "Plunge": {"country": "Lithuania", "subcountry": "Tel\u0161i\u0173 apskritis"}, "Panev\u0117\u017eys": {"country": "Lithuania", "subcountry": "Panev\u0117\u017eys"}, "Palanga": {"country": "Lithuania", "subcountry": "Klaip\u0117dos apskritis"}, "Fabijoni\u0161k\u0117s": {"country": "Lithuania", "subcountry": "Vilnius County"}, "Mazeikiai": {"country": "Lithuania", "subcountry": "Tel\u0161i\u0173 apskritis"}, "Marijampol\u0117": {"country": "Lithuania", "subcountry": "Marijampol\u0117s apskritis"}, "Kretinga": {"country": "Lithuania", "subcountry": "Klaip\u0117dos apskritis"}, "Klaip\u0117da": {"country": "Lithuania", "subcountry": "Klaip\u0117dos apskritis"}, "K\u0117dainiai": {"country": "Lithuania", "subcountry": "Kauno apskritis"}, "Kaunas": {"country": "Lithuania", "subcountry": "Kauno apskritis"}, "Jonava": {"country": "Lithuania", "subcountry": "Kauno apskritis"}, "Garg\u017edai": {"country": "Lithuania", "subcountry": "Klaip\u0117dos apskritis"}, "Druskininkai": {"country": "Lithuania", "subcountry": "Alytaus apskritis"}, "Alytus": {"country": "Lithuania", "subcountry": "Alytaus apskritis"}, "Aleksotas": {"country": "Lithuania", "subcountry": "Kauno apskritis"}, "Dainava (Kaunas)": {"country": "Lithuania", "subcountry": "Kauno apskritis"}, "\u0160ilainiai": {"country": "Lithuania", "subcountry": "Kauno apskritis"}, "Eiguliai": {"country": "Lithuania", "subcountry": "Kauno apskritis"}, "Pa\u0161ilai\u010diai": {"country": "Lithuania", "subcountry": "Vilnius County"}, "Pilait\u0117": {"country": "Lithuania", "subcountry": "Vilnius County"}, "Justini\u0161k\u0117s": {"country": "Lithuania", "subcountry": "Vilnius County"}, "\u0160e\u0161kin\u0117": {"country": "Lithuania", "subcountry": "Vilnius County"}, "Lazdynai": {"country": "Lithuania", "subcountry": "Vilnius County"}, "Vilkp\u0117d\u0117": {"country": "Lithuania", "subcountry": "Vilnius County"}, "Naujamiestis": {"country": "Lithuania", "subcountry": "Vilnius County"}, "Luxembourg": {"country": "Luxembourg", "subcountry": "Luxembourg"}, "Esch-Sur-Alzette": {"country": "Luxembourg", "subcountry": "Luxembourg"}, "Dudelange": {"country": "Luxembourg", "subcountry": "Luxembourg"}, "Valmiera": {"country": "Latvia", "subcountry": "Valmieras Rajons"}, "Ventspils": {"country": "Latvia", "subcountry": "Ventspils"}, "Vec-Liep\u0101ja": {"country": "Latvia", "subcountry": "Liep\u0101ja"}, "Tukums": {"country": "Latvia", "subcountry": "Tukuma Rajons"}, "Salaspils": {"country": "Latvia", "subcountry": "Salaspils"}, "Riga": {"country": "Latvia", "subcountry": "Riga"}, "R\u0113zekne": {"country": "Latvia", "subcountry": "R\u0113zekne"}, "Ogre": {"country": "Latvia", "subcountry": "Ogre"}, "Liep\u0101ja": {"country": "Latvia", "subcountry": "Liep\u0101ja"}, "J\u016brmala": {"country": "Latvia", "subcountry": "J\u016brmala"}, "Jelgava": {"country": "Latvia", "subcountry": "Jelgava"}, "J\u0113kabpils": {"country": "Latvia", "subcountry": "J\u0113kabpils Municipality"}, "Daugavpils": {"country": "Latvia", "subcountry": "Daugavpils municipality"}, "C\u0113sis": {"country": "Latvia", "subcountry": "C\u0113su Rajons"}, "Tobruk": {"country": "Libya", "subcountry": "Sha\u2018b\u012byat al Bu\u0163n\u0101n"}, "Sul\u016bq": {"country": "Libya", "subcountry": "Bangh\u0101z\u012b"}, "Darnah": {"country": "Libya", "subcountry": "Darnah"}, "Benghazi": {"country": "Libya", "subcountry": "Bangh\u0101z\u012b"}, "Az Zuwayt\u012bnah": {"country": "Libya", "subcountry": "Sha\u2018b\u012byat al W\u0101\u1e29\u0101t"}, "At T\u0101j": {"country": "Libya", "subcountry": "Al Kufrah"}, "T\u016bkrah": {"country": "Libya", "subcountry": "Al Marj"}, "Al Qubbah": {"country": "Libya", "subcountry": "Darnah"}, "Al Marj": {"country": "Libya", "subcountry": "Al Marj"}, "Al Jawf": {"country": "Libya", "subcountry": "Al Kufrah"}, "Al Bay\u1e11\u0101\u2019": {"country": "Yemen", "subcountry": "Al Bay\u1e11\u0101\u02bc"}, "Al Aby\u0101r": {"country": "Libya", "subcountry": "Al Marj"}, "Ajdabiya": {"country": "Libya", "subcountry": "Sha\u2018b\u012byat al W\u0101\u1e29\u0101t"}, "Zuw\u0101rah": {"country": "Libya", "subcountry": "An Nuq\u0101\u0163 al Khams"}, "Zliten": {"country": "Libya", "subcountry": "Mi\u015fr\u0101tah"}, "Zal\u0163an": {"country": "Libya", "subcountry": "An Nuq\u0101\u0163 al Khams"}, "Yafran": {"country": "Libya", "subcountry": "Sha\u2018b\u012byat al Jabal al Gharb\u012b"}, "Wadd\u0101n": {"country": "Libya", "subcountry": "Al Jufrah"}, "Tarhuna": {"country": "Libya", "subcountry": "Al Marqab"}, "Tagiura": {"country": "Libya", "subcountry": "Tripoli"}, "Sirte": {"country": "Libya", "subcountry": "Surt"}, "\u015eurm\u0101n": {"country": "Libya", "subcountry": "Az Z\u0101wiyah"}, "\u015eabr\u0101tah": {"country": "Libya", "subcountry": "Az Z\u0101wiyah"}, "Sabh\u0101": {"country": "Libya", "subcountry": "Sabh\u0101"}, "N\u0101l\u016bt": {"country": "Libya", "subcountry": "Sha\u2018b\u012byat N\u0101l\u016bt"}, "Murzuq": {"country": "Libya", "subcountry": "Murzuq"}, "Mizdah": {"country": "Libya", "subcountry": "Sha\u2018b\u012byat al Jabal al Gharb\u012b"}, "Mi\u015fr\u0101tah": {"country": "Libya", "subcountry": "Mi\u015fr\u0101tah"}, "Masall\u0101tah": {"country": "Libya", "subcountry": "Al Marqab"}, "H\u016bn": {"country": "Libya", "subcountry": "Al Jufrah"}, "Zawiya": {"country": "Libya", "subcountry": "Az Z\u0101wiyah"}, "Ghat": {"country": "Libya", "subcountry": "Sha\u2018b\u012byat Gh\u0101t"}, "Gharyan": {"country": "Libya", "subcountry": "Sha\u2018b\u012byat al Jabal al Gharb\u012b"}, "Brak": {"country": "Libya", "subcountry": "Ash Sh\u0101\u0163i\u02bc"}, "Ban\u012b Wal\u012bd": {"country": "Libya", "subcountry": "Mi\u015fr\u0101tah"}, "Az Zint\u0101n": {"country": "Libya", "subcountry": "Sha\u2018b\u012byat al Jabal al Gharb\u012b"}, "Az Z\u0101w\u012byah": {"country": "Libya", "subcountry": "Az Z\u0101wiyah"}, "Awb\u0101r\u012b": {"country": "Libya", "subcountry": "Sha\u2018b\u012byat W\u0101d\u012b al \u1e28ay\u0101t"}, "Al Khums": {"country": "Libya", "subcountry": "Al Marqab"}, "Al Jad\u012bd": {"country": "Libya", "subcountry": "Sabh\u0101"}, "Za\u00efo": {"country": "Morocco", "subcountry": "Oriental"}, "Zagora": {"country": "Morocco", "subcountry": "Souss-Massa-Dr\u00e2a"}, "Youssoufia": {"country": "Morocco", "subcountry": "Doukkala-Abda"}, "Tiznit": {"country": "Morocco", "subcountry": "Souss-Massa-Dr\u00e2a"}, "Tirhanim\u00eene": {"country": "Morocco", "subcountry": "Taza-Al Hoceima-Taounate"}, "Tinghir": {"country": "Morocco", "subcountry": "Souss-Massa-Dr\u00e2a"}, "Tiflet": {"country": "Morocco", "subcountry": "Rabat-Sal\u00e9-Zemmour-Za\u00ebr"}, "T\u00e9touan": {"country": "Morocco", "subcountry": "Tanger-T\u00e9touan"}, "Taza": {"country": "Morocco", "subcountry": "Taza-Al Hoceima-Taounate"}, "Taroudant": {"country": "Morocco", "subcountry": "Souss-Massa-Dr\u00e2a"}, "Taourirt": {"country": "Morocco", "subcountry": "Oriental"}, "Taounate": {"country": "Morocco", "subcountry": "Taza-Al Hoceima-Taounate"}, "Tan-Tan": {"country": "Morocco", "subcountry": "Guelmim-Es Smara"}, "Tangier": {"country": "Morocco", "subcountry": "Tanger-T\u00e9touan"}, "Tahla": {"country": "Morocco", "subcountry": "Taza-Al Hoceima-Taounate"}, "Souq Larb\u2019A Al Gharb": {"country": "Morocco", "subcountry": "Gharb-Chrarda-Beni Hssen"}, "Sidi Yahia El Gharb": {"country": "Morocco", "subcountry": "Gharb-Chrarda-Beni Hssen"}, "Sidi Slimane": {"country": "Morocco", "subcountry": "Gharb-Chrarda-Beni Hssen"}, "Sidi Qacem": {"country": "Morocco", "subcountry": "Gharb-Chrarda-Beni Hssen"}, "Sidi Ifni": {"country": "Morocco", "subcountry": "Souss-Massa-Dr\u00e2a"}, "Sidi Bennour": {"country": "Morocco", "subcountry": "Doukkala-Abda"}, "Settat": {"country": "Morocco", "subcountry": "Chaouia-Ouardigha"}, "Sefrou": {"country": "Morocco", "subcountry": "F\u00e8s-Boulemane"}, "Rabat": {"country": "Morocco", "subcountry": "Rabat-Sal\u00e9-Zemmour-Za\u00ebr"}, "Oulad Te\u00efma": {"country": "Morocco", "subcountry": "Souss-Massa-Dr\u00e2a"}, "Oujda": {"country": "Morocco", "subcountry": "Oriental"}, "Oued Zem": {"country": "Morocco", "subcountry": "Chaouia-Ouardigha"}, "Ouezzane": {"country": "Morocco", "subcountry": "Gharb-Chrarda-Beni Hssen"}, "Ouarzazat": {"country": "Morocco", "subcountry": "Souss-Massa-Dr\u00e2a"}, "Nador": {"country": "Morocco", "subcountry": "Oriental"}, "Mohammedia": {"country": "Morocco", "subcountry": "Grand Casablanca"}, "Midelt": {"country": "Morocco", "subcountry": "Mekn\u00e8s-Tafilalet"}, "Mekn\u00e8s": {"country": "Morocco", "subcountry": "Mekn\u00e8s-Tafilalet"}, "Mechraa Bel Ksiri": {"country": "Morocco", "subcountry": "Gharb-Chrarda-Beni Hssen"}, "Martil": {"country": "Morocco", "subcountry": "Tanger-T\u00e9touan"}, "Marrakesh": {"country": "Morocco", "subcountry": "Marrakech-Tensift-Al Haouz"}, "Larache": {"country": "Morocco", "subcountry": "Tanger-T\u00e9touan"}, "Ksar El Kebir": {"country": "Morocco", "subcountry": "Tanger-T\u00e9touan"}, "Khouribga": {"country": "Morocco", "subcountry": "Chaouia-Ouardigha"}, "Khenifra": {"country": "Morocco", "subcountry": "Mekn\u00e8s-Tafilalet"}, "Kenitra": {"country": "Morocco", "subcountry": "Gharb-Chrarda-Beni Hssen"}, "Kasba Tadla": {"country": "Morocco", "subcountry": "Tadla-Azilal"}, "Jerada": {"country": "Morocco", "subcountry": "Oriental"}, "Imzo\u00fbrene": {"country": "Morocco", "subcountry": "Taza-Al Hoceima-Taounate"}, "Guercif": {"country": "Morocco", "subcountry": "Taza-Al Hoceima-Taounate"}, "Guelmim": {"country": "Morocco", "subcountry": "Guelmim-Es Smara"}, "Fkih Ben Salah": {"country": "Morocco", "subcountry": "Tadla-Azilal"}, "F\u00e8s Al Bali": {"country": "Morocco", "subcountry": "F\u00e8s-Boulemane"}, "Fes": {"country": "Morocco", "subcountry": "F\u00e8s-Boulemane"}, "Essaouira": {"country": "Morocco", "subcountry": "Marrakech-Tensift-Al Haouz"}, "El Jadida": {"country": "Morocco", "subcountry": "Doukkala-Abda"}, "El Hajeb": {"country": "Morocco", "subcountry": "Mekn\u00e8s-Tafilalet"}, "El A\u00efoun": {"country": "Morocco", "subcountry": "Oriental"}, "Chefchaouene": {"country": "Morocco", "subcountry": "Tanger-T\u00e9touan"}, "Casablanca": {"country": "Morocco", "subcountry": "Grand Casablanca"}, "Bouznika": {"country": "Morocco", "subcountry": "Chaouia-Ouardigha"}, "Berkane": {"country": "Morocco", "subcountry": "Oriental"}, "Beni Mellal": {"country": "Morocco", "subcountry": "Tadla-Azilal"}, "Berrechid": {"country": "Morocco", "subcountry": "Chaouia-Ouardigha"}, "Azrou": {"country": "Morocco", "subcountry": "Mekn\u00e8s-Tafilalet"}, "Azemmour": {"country": "Morocco", "subcountry": "Doukkala-Abda"}, "Asilah": {"country": "Morocco", "subcountry": "Tanger-T\u00e9touan"}, "Khemisset": {"country": "Morocco", "subcountry": "Rabat-Sal\u00e9-Zemmour-Za\u00ebr"}, "Al Hoce\u00efma": {"country": "Morocco", "subcountry": "Taza-Al Hoceima-Taounate"}, "Ahfir": {"country": "Morocco", "subcountry": "Oriental"}, "Agadir": {"country": "Morocco", "subcountry": "Souss-Massa-Dr\u00e2a"}, "Skhirate": {"country": "Morocco", "subcountry": "Rabat-Sal\u00e9-Zemmour-Za\u00ebr"}, "Boujniba": {"country": "Morocco", "subcountry": "Chaouia-Ouardigha"}, "Monte-Carlo": {"country": "Monaco", "subcountry": null}, "Monaco": {"country": "Monaco", "subcountry": null}, "Edine\u0163": {"country": "Moldova", "subcountry": "Raionul Edine\u0163"}, "Ungheni": {"country": "Moldova", "subcountry": "Ungheni"}, "Tiraspolul": {"country": "Moldova", "subcountry": "St\u00eenga Nistrului"}, "Stra\u015feni": {"country": "Moldova", "subcountry": "Str\u0103\u0219eni"}, "Bilicenii Vechi": {"country": "Moldova", "subcountry": "S\u00eengerei"}, "Soroca": {"country": "Moldova", "subcountry": "Raionul Soroca"}, "Slobozia": {"country": "Romania", "subcountry": "Ialomi\u0163a"}, "R\u00eebni\u0163a": {"country": "Moldova", "subcountry": "St\u00eenga Nistrului"}, "Orhei": {"country": "Moldova", "subcountry": "Orhei"}, "H\u00eence\u015fti": {"country": "Moldova", "subcountry": "H\u00eence\u015fti"}, "C\u0103u\u015feni": {"country": "Moldova", "subcountry": "C\u0103u\u015feni"}, "Flore\u015fti": {"country": "Moldova", "subcountry": "Flore\u015fti"}, "Dub\u0103sari": {"country": "Moldova", "subcountry": "Telene\u015fti"}, "Drochia": {"country": "Moldova", "subcountry": "Drochia"}, "Comrat": {"country": "Moldova", "subcountry": "G\u0103g\u0103uzia"}, "Chi\u015fin\u0103u": {"country": "Moldova", "subcountry": "Chi\u015fin\u0103u"}, "Cead\u00eer-Lunga": {"country": "Moldova", "subcountry": "G\u0103g\u0103uzia"}, "Cahul": {"country": "Moldova", "subcountry": "Cahul"}, "Bender": {"country": "Moldova", "subcountry": "Bender"}, "B\u0103l\u0163i": {"country": "Moldova", "subcountry": "B\u0103l\u0163i"}, "Podgorica": {"country": "Montenegro", "subcountry": "Podgorica"}, "Pljevlja": {"country": "Montenegro", "subcountry": "Pljevlja"}, "Nik\u0161i\u0107": {"country": "Montenegro", "subcountry": "Op\u0161tina Nik\u0161i\u0107"}, "Herceg-Novi": {"country": "Montenegro", "subcountry": "Herceg Novi"}, "Cetinje": {"country": "Montenegro", "subcountry": "Cetinje"}, "Budva": {"country": "Montenegro", "subcountry": "Budva"}, "Bijelo Polje": {"country": "Montenegro", "subcountry": "Bijelo Polje"}, "Bar": {"country": "Ukraine", "subcountry": "Vinnyts'ka"}, "Marigot": {"country": "Saint Martin", "subcountry": "N/A"}, "Toamasina": {"country": "Madagascar", "subcountry": "Atsinanana"}, "Vondrozo": {"country": "Madagascar", "subcountry": "Atsimo-Atsinanana"}, "Vohipaho": {"country": "Madagascar", "subcountry": "Atsimo-Atsinanana"}, "Vohibinany": {"country": "Madagascar", "subcountry": "Atsinanana"}, "Vavatenina": {"country": "Madagascar", "subcountry": "Analanjirofo"}, "Vangaindrano": {"country": "Madagascar", "subcountry": "Atsimo-Atsinanana"}, "Tsiroanomandidy": {"country": "Madagascar", "subcountry": "Bongolava"}, "Tsiombe": {"country": "Madagascar", "subcountry": "Androy"}, "Tsaratanana": {"country": "Madagascar", "subcountry": "Betsiboka"}, "Toliara": {"country": "Madagascar", "subcountry": "Atsimo-Andrefana"}, "Fort Dauphin": {"country": "Madagascar", "subcountry": "Anosy"}, "Soavinandriana": {"country": "Madagascar", "subcountry": "Itasy"}, "Soanindrariny": {"country": "Madagascar", "subcountry": "Vakinankaratra"}, "Soanierana Ivongo": {"country": "Madagascar", "subcountry": "Analanjirofo"}, "Sitampiky": {"country": "Madagascar", "subcountry": "Boeny"}, "Sambava": {"country": "Madagascar", "subcountry": "Sava"}, "Sakaraha": {"country": "Madagascar", "subcountry": "Atsimo-Andrefana"}, "Sahavato": {"country": "Madagascar", "subcountry": "Vatovavy Fitovinany"}, "Sadabe": {"country": "Madagascar", "subcountry": "Analamanga"}, "Nosy Varika": {"country": "Madagascar", "subcountry": "Vatovavy Fitovinany"}, "Morondava": {"country": "Madagascar", "subcountry": "Menabe"}, "Moramanga": {"country": "Madagascar", "subcountry": "Alaotra Mangoro"}, "Miandrivazo": {"country": "Madagascar", "subcountry": "Menabe"}, "Miandrarivo": {"country": "Madagascar", "subcountry": "Vakinankaratra"}, "Marovoay": {"country": "Madagascar", "subcountry": "Boeny"}, "Marolambo": {"country": "Madagascar", "subcountry": "Atsinanana"}, "Maroantsetra": {"country": "Madagascar", "subcountry": "Analanjirofo"}, "Manjakandriana": {"country": "Madagascar", "subcountry": "Analamanga"}, "Mananjary": {"country": "Madagascar", "subcountry": "Vatovavy Fitovinany"}, "Mananara": {"country": "Madagascar", "subcountry": "Analanjirofo"}, "Manakara": {"country": "Madagascar", "subcountry": "Vatovavy Fitovinany"}, "Maintirano": {"country": "Madagascar", "subcountry": "Melaky"}, "Mahanoro": {"country": "Madagascar", "subcountry": "Atsinanana"}, "Mahajanga": {"country": "Madagascar", "subcountry": "Boeny"}, "Maevatanana": {"country": "Madagascar", "subcountry": "Betsiboka"}, "Ikongo": {"country": "Madagascar", "subcountry": "Vatovavy Fitovinany"}, "Ikalamavony": {"country": "Madagascar", "subcountry": "Upper Matsiatra"}, "Ihosy": {"country": "Madagascar", "subcountry": "Ihorombe"}, "Ifanadiana": {"country": "Madagascar", "subcountry": "Vatovavy Fitovinany"}, "Fianarantsoa": {"country": "Madagascar", "subcountry": "Upper Matsiatra"}, "Fenoarivo Be": {"country": "Madagascar", "subcountry": "Bongolava"}, "Fenoarivo Atsinanana": {"country": "Madagascar", "subcountry": "Analanjirofo"}, "Faratsiho": {"country": "Madagascar", "subcountry": "Vakinankaratra"}, "Farafangana": {"country": "Madagascar", "subcountry": "Atsimo-Atsinanana"}, "Fandriana": {"country": "Madagascar", "subcountry": "Amoron'i Mania"}, "Betioky": {"country": "Madagascar", "subcountry": "Atsimo-Andrefana"}, "Betafo": {"country": "Madagascar", "subcountry": "Vakinankaratra"}, "Beroroha": {"country": "Madagascar", "subcountry": "Atsimo-Andrefana"}, "Belo Sur Tsiribihina": {"country": "Madagascar", "subcountry": "Menabe"}, "Beloha": {"country": "Madagascar", "subcountry": "Androy"}, "Bealanana": {"country": "Madagascar", "subcountry": "Sofia"}, "Arivonimamo": {"country": "Madagascar", "subcountry": "Itasy"}, "Antsohimbondrona": {"country": "Madagascar", "subcountry": "Diana"}, "Antsohihy": {"country": "Madagascar", "subcountry": "Sofia"}, "Antsiranana": {"country": "Madagascar", "subcountry": "Diana"}, "Antsirabe": {"country": "Madagascar", "subcountry": "Vakinankaratra"}, "Antanifotsy": {"country": "Madagascar", "subcountry": "Vakinankaratra"}, "Antananarivo": {"country": "Madagascar", "subcountry": "Analamanga"}, "Antalaha": {"country": "Madagascar", "subcountry": "Sava"}, "Ankazondandy": {"country": "Madagascar", "subcountry": "Analamanga"}, "Ankazobe": {"country": "Madagascar", "subcountry": "Analamanga"}, "Ankazoabo": {"country": "Madagascar", "subcountry": "Atsimo-Andrefana"}, "Anjozorobe": {"country": "Madagascar", "subcountry": "Analamanga"}, "Hell-Ville": {"country": "Madagascar", "subcountry": "Diana"}, "Andilamena": {"country": "Madagascar", "subcountry": "Alaotra Mangoro"}, "Andapa": {"country": "Madagascar", "subcountry": "Sava"}, "Ampasimanolotra": {"country": "Madagascar", "subcountry": "Atsinanana"}, "Amparafaravola": {"country": "Madagascar", "subcountry": "Alaotra Mangoro"}, "Ampanihy": {"country": "Madagascar", "subcountry": "Atsimo-Andrefana"}, "Ampahana": {"country": "Madagascar", "subcountry": "Sava"}, "Ambovombe": {"country": "Madagascar", "subcountry": "Androy"}, "Ambositra": {"country": "Madagascar", "subcountry": "Amoron'i Mania"}, "Ambohitrolomahitsy": {"country": "Madagascar", "subcountry": "Analamanga"}, "Amboasary": {"country": "Madagascar", "subcountry": "Anosy"}, "Amboanjo": {"country": "Madagascar", "subcountry": "Vatovavy Fitovinany"}, "Ambilobe": {"country": "Madagascar", "subcountry": "Diana"}, "Ambatondrazaka": {"country": "Madagascar", "subcountry": "Alaotra Mangoro"}, "Ambatolampy": {"country": "Madagascar", "subcountry": "Vakinankaratra"}, "Ambatofinandrahana": {"country": "Madagascar", "subcountry": "Amoron'i Mania"}, "Ambato Boeny": {"country": "Madagascar", "subcountry": "Boeny"}, "Ambarakaraka": {"country": "Madagascar", "subcountry": "Diana"}, "Ambanja": {"country": "Madagascar", "subcountry": "Diana"}, "Ambalavao": {"country": "Madagascar", "subcountry": "Upper Matsiatra"}, "Alarobia": {"country": "Madagascar", "subcountry": "Analamanga"}, "Majuro": {"country": "Marshall Islands", "subcountry": "Majuro Atoll"}, "Rmi Capitol": {"country": "Marshall Islands", "subcountry": "Majuro Atoll"}, "\u0416\u0435\u043b\u0438\u043d\u043e": {"country": "Macedonia", "subcountry": "\u017delino"}, "Vinica": {"country": "Macedonia", "subcountry": "Vinica"}, "Veles": {"country": "Macedonia", "subcountry": "Veles"}, "Tetovo": {"country": "Macedonia", "subcountry": "Tetovo"}, "\u0422\u0435\u0430\u0440\u0446\u0435": {"country": "Macedonia", "subcountry": "Tearce"}, "\u0421\u0442\u0443\u0434\u0435\u043d\u0438\u0447\u0430\u043d\u0438": {"country": "Macedonia", "subcountry": "Studeni\u010dani"}, "Strumica": {"country": "Macedonia", "subcountry": "Strumica"}, "Struga": {"country": "Macedonia", "subcountry": "Struga"}, "Shtip": {"country": "Macedonia", "subcountry": "\u0160tip"}, "Skopje": {"country": "Macedonia", "subcountry": "Karpo\u0161"}, "\u0421\u0430\u0440\u0430\u0458": {"country": "Macedonia", "subcountry": "Saraj"}, "\u0420\u0435\u0441\u0435\u043d": {"country": "Macedonia", "subcountry": "Resen"}, "\u0420\u0430\u0434\u043e\u0432\u0438\u0448": {"country": "Macedonia", "subcountry": "Radovi\u0161"}, "Prilep": {"country": "Macedonia", "subcountry": "Prilep"}, "Ohrid": {"country": "Macedonia", "subcountry": "Ohrid"}, "\u041d\u0435\u0433\u043e\u0442\u0438\u043d\u043e": {"country": "Macedonia", "subcountry": "Vrap\u010di\u0161te"}, "Negotino": {"country": "Macedonia", "subcountry": "Negotino"}, "\u041b\u0438\u043f\u043a\u043e\u0432\u043e": {"country": "Macedonia", "subcountry": "Opstina Lipkovo"}, "Kumanovo": {"country": "Macedonia", "subcountry": "Kumanovo"}, "\u041a\u0440\u0438\u0432\u0430 \u041f\u0430\u043b\u0430\u043d\u043a\u0430": {"country": "Macedonia", "subcountry": "Kriva Palanka"}, "Kochani": {"country": "Macedonia", "subcountry": "Ko\u010dani"}, "Ki\u010devo": {"country": "Macedonia", "subcountry": "Ki\u010devo"}, "Kavadarci": {"country": "Macedonia", "subcountry": "Kavadarci"}, "Kamenjane": {"country": "Macedonia", "subcountry": "Bogovinje"}, "Gostivar": {"country": "Macedonia", "subcountry": "Gostivar"}, "Gevgelija": {"country": "Macedonia", "subcountry": "Gevgelija"}, "Delcevo": {"country": "Macedonia", "subcountry": "Del\u010devo"}, "Debar": {"country": "Macedonia", "subcountry": "Debar"}, "Brvenica": {"country": "Macedonia", "subcountry": "Brvenica"}, "Bogovinje": {"country": "Macedonia", "subcountry": "Bogovinje"}, "Bitola": {"country": "Macedonia", "subcountry": "Bitola"}, "\u0160uto Orizare": {"country": "Macedonia", "subcountry": "\u0160uto Orizari"}, "Butel": {"country": "Macedonia", "subcountry": "Butel"}, "\u010cair": {"country": "Macedonia", "subcountry": "\u010cair"}, "Ilinden": {"country": "Macedonia", "subcountry": "Ilinden"}, "Kisela Voda": {"country": "Macedonia", "subcountry": "Kisela Voda"}, "Centar \u017dupa": {"country": "Macedonia", "subcountry": "Centar \u017dupa"}, "Yorosso": {"country": "Mali", "subcountry": "Sikasso"}, "Timbuktu": {"country": "Mali", "subcountry": "Tombouctou"}, "Sikasso": {"country": "Mali", "subcountry": "Sikasso"}, "S\u00e9gou": {"country": "Mali", "subcountry": "S\u00e9gou"}, "San": {"country": "Mali", "subcountry": "S\u00e9gou"}, "Sagalo": {"country": "Mali", "subcountry": "Kayes"}, "Mopti": {"country": "Mali", "subcountry": "Mopti"}, "Markala": {"country": "Mali", "subcountry": "S\u00e9gou"}, "Koutiala": {"country": "Mali", "subcountry": "Sikasso"}, "Koulikoro": {"country": "Mali", "subcountry": "Koulikoro"}, "Kolokani": {"country": "Mali", "subcountry": "Koulikoro"}, "Kati": {"country": "Mali", "subcountry": "Koulikoro"}, "Kangaba": {"country": "Mali", "subcountry": "Koulikoro"}, "Gao": {"country": "Mali", "subcountry": "Gao"}, "Dj\u00e9nn\u00e9": {"country": "Mali", "subcountry": "Mopti"}, "Bougouni": {"country": "Mali", "subcountry": "Sikasso"}, "Banamba": {"country": "Mali", "subcountry": "Koulikoro"}, "Bamako": {"country": "Mali", "subcountry": "Bamako"}, "Bafoulab\u00e9": {"country": "Mali", "subcountry": "Kayes"}, "Yenangyaung": {"country": "Myanmar", "subcountry": "Magway"}, "Nyaungdon": {"country": "Myanmar", "subcountry": "Ayeyarwady"}, "Yamethin": {"country": "Myanmar", "subcountry": "Mandalay"}, "Wakema": {"country": "Myanmar", "subcountry": "Ayeyarwady"}, "Twante": {"country": "Myanmar", "subcountry": "Yangon"}, "Taungoo": {"country": "Myanmar", "subcountry": "Bago"}, "Thongwa": {"country": "Myanmar", "subcountry": "Yangon"}, "Thayetmyo": {"country": "Myanmar", "subcountry": "Magway"}, "Thaton": {"country": "Myanmar", "subcountry": "Mon"}, "Tharyarwady": {"country": "Myanmar", "subcountry": "Bago"}, "Thanatpin": {"country": "Myanmar", "subcountry": "Bago"}, "Dawei": {"country": "Myanmar", "subcountry": "Tanintharyi"}, "Taunggyi": {"country": "Myanmar", "subcountry": "Shan"}, "Taungdwingyi": {"country": "Myanmar", "subcountry": "Magway"}, "Syriam": {"country": "Myanmar", "subcountry": "Yangon"}, "Sittwe": {"country": "Myanmar", "subcountry": "Rakhine"}, "Shwebo": {"country": "Myanmar", "subcountry": "Sagain"}, "Sagaing": {"country": "Myanmar", "subcountry": "Sagain"}, "Yangon": {"country": "Myanmar", "subcountry": "Yangon"}, "Pyu": {"country": "Myanmar", "subcountry": "Bago"}, "Pyinmana": {"country": "Myanmar", "subcountry": "Mandalay"}, "Pyay": {"country": "Myanmar", "subcountry": "Bago"}, "Pyapon": {"country": "Myanmar", "subcountry": "Ayeyarwady"}, "Bago": {"country": "Myanmar", "subcountry": "Bago"}, "Paungde": {"country": "Myanmar", "subcountry": "Bago"}, "Pakokku": {"country": "Myanmar", "subcountry": "Magway"}, "Hpa-An": {"country": "Myanmar", "subcountry": "Kayin"}, "Nyaunglebin": {"country": "Myanmar", "subcountry": "Bago"}, "Myitkyina": {"country": "Myanmar", "subcountry": "Kachin"}, "Myingyan": {"country": "Myanmar", "subcountry": "Mandalay"}, "Myawadi": {"country": "Myanmar", "subcountry": "Kayin"}, "Myanaung": {"country": "Myanmar", "subcountry": "Ayeyarwady"}, "Mudon": {"country": "Myanmar", "subcountry": "Mon"}, "Mawlamyinegyunn": {"country": "Myanmar", "subcountry": "Ayeyarwady"}, "Mawlamyine": {"country": "Myanmar", "subcountry": "Mon"}, "Monywa": {"country": "Myanmar", "subcountry": "Sagain"}, "Mogok": {"country": "Myanmar", "subcountry": "Mandalay"}, "Minbu": {"country": "Myanmar", "subcountry": "Magway"}, "Myeik": {"country": "Myanmar", "subcountry": "Tanintharyi"}, "Meiktila": {"country": "Myanmar", "subcountry": "Mandalay"}, "Pyin Oo Lwin": {"country": "Myanmar", "subcountry": "Mandalay"}, "Mawlaik": {"country": "Myanmar", "subcountry": "Sagain"}, "Maubin": {"country": "Myanmar", "subcountry": "Ayeyarwady"}, "Martaban": {"country": "Myanmar", "subcountry": "Mon"}, "Mandalay": {"country": "Myanmar", "subcountry": "Mandalay"}, "Magway": {"country": "Myanmar", "subcountry": "Magway"}, "Loikaw": {"country": "Myanmar", "subcountry": "Kayah"}, "Letpandan": {"country": "Myanmar", "subcountry": "Bago"}, "Lashio": {"country": "Myanmar", "subcountry": "Shan"}, "Kyaukse": {"country": "Myanmar", "subcountry": "Mandalay"}, "Kyaikto": {"country": "Myanmar", "subcountry": "Mon"}, "Kyaiklat": {"country": "Myanmar", "subcountry": "Ayeyarwady"}, "Kyaikkami": {"country": "Myanmar", "subcountry": "Mon"}, "Kayan": {"country": "Myanmar", "subcountry": "Yangon"}, "Kanbe": {"country": "Myanmar", "subcountry": "Yangon"}, "Hinthada": {"country": "Myanmar", "subcountry": "Ayeyarwady"}, "Hakha": {"country": "Myanmar", "subcountry": "Chin"}, "Chauk": {"country": "Myanmar", "subcountry": "Magway"}, "Bogale": {"country": "Myanmar", "subcountry": "Ayeyarwady"}, "Bhamo": {"country": "Myanmar", "subcountry": "Kachin"}, "Pathein": {"country": "Myanmar", "subcountry": "Ayeyarwady"}, "Myaydo": {"country": "Myanmar", "subcountry": "Magway"}, "Nay Pyi Taw": {"country": "Myanmar", "subcountry": "Mandalay"}, "Uliastay": {"country": "Mongolia", "subcountry": "Dzabkhan"}, "Ulaangom": {"country": "Mongolia", "subcountry": "Uvs"}, "\u00d6lgiy": {"country": "Mongolia", "subcountry": "Bayan-\u00d6lgiy"}, "Khovd": {"country": "Mongolia", "subcountry": "Hovd"}, "Altai": {"country": "Mongolia", "subcountry": "Gov\u012d-Altay"}, "Ulan Bator": {"country": "Mongolia", "subcountry": "Ulaanbaatar"}, "S\u00fchbaatar": {"country": "Mongolia", "subcountry": "Selenge"}, "Murun-Kuren": {"country": "Mongolia", "subcountry": "H\u00f6vsg\u00f6l"}, "Mandalgovi": {"country": "Mongolia", "subcountry": "Middle Gov\u012d"}, "Hovd": {"country": "Mongolia", "subcountry": "\u00d6v\u00f6rhangay"}, "Erdenet": {"country": "Mongolia", "subcountry": "Orhon"}, "Dz\u00fc\u00fcnharaa": {"country": "Mongolia", "subcountry": "Selenge"}, "Darhan": {"country": "Mongolia", "subcountry": "Darhan Uul"}, "Dalandzadgad": {"country": "Mongolia", "subcountry": "\u00d6mn\u00f6gov\u012d"}, "Saynshand": {"country": "Mongolia", "subcountry": "East Gobi Aymag"}, "Bulgan": {"country": "Mongolia", "subcountry": "Bulgan"}, "Bayanhongor": {"country": "Mongolia", "subcountry": "Bayanhongor"}, "Baruun-Urt": {"country": "Mongolia", "subcountry": "S\u00fchbaatar"}, "Arvayheer": {"country": "Mongolia", "subcountry": "\u00d6v\u00f6rhangay"}, "\u0417\u0443\u0443\u043d\u043c\u043e\u0434": {"country": "Mongolia", "subcountry": "Central Aimak"}, "Saipan": {"country": "Northern Mariana Islands", "subcountry": "Saipan"}, "Saint-Joseph": {"country": "Reunion", "subcountry": "R\u00e9union"}, "Sainte-Marie": {"country": "Reunion", "subcountry": "R\u00e9union"}, "Petite Rivi\u00e8re Sal\u00e9e": {"country": "Martinique", "subcountry": "Martinique"}, "Le Robert": {"country": "Martinique", "subcountry": "Martinique"}, "Le Lamentin": {"country": "Martinique", "subcountry": "Martinique"}, "Le Fran\u00e7ois": {"country": "Martinique", "subcountry": "Martinique"}, "La Trinit\u00e9": {"country": "Martinique", "subcountry": "Martinique"}, "Fort-De-France": {"country": "Martinique", "subcountry": "Martinique"}, "Ducos": {"country": "Martinique", "subcountry": "Martinique"}, "Zouerate": {"country": "Mauritania", "subcountry": "Tiris Zemmour"}, "T\u00e9kane": {"country": "Mauritania", "subcountry": "Trarza"}, "S\u00e9libaby": {"country": "Mauritania", "subcountry": "Guidimaka"}, "Rosso": {"country": "Mauritania", "subcountry": "Trarza"}, "Nouakchott": {"country": "Mauritania", "subcountry": "Nouakchott"}, "Nou\u00e2dhibou": {"country": "Mauritania", "subcountry": "Dakhlet Nouadhibou"}, "N\u00e9ma": {"country": "Mauritania", "subcountry": "Hodh ech Chargui"}, "Kiffa": {"country": "Mauritania", "subcountry": "Assaba"}, "Ka\u00e9di": {"country": "Mauritania", "subcountry": "Gorgol"}, "Atar": {"country": "Mauritania", "subcountry": "Adrar"}, "Aleg": {"country": "Mauritania", "subcountry": "Brakna"}, "Brades": {"country": "Montserrat", "subcountry": "Saint Peter"}, "\u017babbar": {"country": "Malta", "subcountry": "\u0126a\u017c-\u017babbar"}, "Valletta": {"country": "Malta", "subcountry": "Il-Belt Valletta"}, "Qormi": {"country": "Malta", "subcountry": "Qormi"}, "Mosta": {"country": "Malta", "subcountry": "Il-Mosta"}, "Birkirkara": {"country": "Malta", "subcountry": "Birkirkara"}, "Vacoas": {"country": "Mauritius", "subcountry": "Plaines Wilhems"}, "Triolet": {"country": "Mauritius", "subcountry": "Pamplemousses"}, "Saint Pierre": {"country": "Mauritius", "subcountry": "Moka"}, "Quatre Bornes": {"country": "Mauritius", "subcountry": "Plaines Wilhems"}, "Port Louis": {"country": "Mauritius", "subcountry": "Port Louis"}, "Mah\u00e9bourg": {"country": "Mauritius", "subcountry": "Grand Port"}, "Goodlands": {"country": "Mauritius", "subcountry": "Rivi\u00e8re du Rempart"}, "Curepipe": {"country": "Mauritius", "subcountry": "Plaines Wilhems"}, "Centre De Flacq": {"country": "Mauritius", "subcountry": "Flacq"}, "Bel Air Rivi\u00e8re S\u00e8che": {"country": "Mauritius", "subcountry": "Flacq"}, "Le Hochet": {"country": "Mauritius", "subcountry": "Pamplemousses"}, "Male": {"country": "Maldives", "subcountry": "Kaafu Atoll"}, "Karonga": {"country": "Malawi", "subcountry": "Northern Region"}, "Zomba": {"country": "Malawi", "subcountry": "Southern Region"}, "Salima": {"country": "Malawi", "subcountry": "Central Region"}, "Rumphi": {"country": "Malawi", "subcountry": "Northern Region"}, "Nsanje": {"country": "Malawi", "subcountry": "Southern Region"}, "Nkhotakota": {"country": "Malawi", "subcountry": "Central Region"}, "Mzuzu": {"country": "Malawi", "subcountry": "Northern Region"}, "Mzimba": {"country": "Malawi", "subcountry": "Northern Region"}, "Mulanje": {"country": "Malawi", "subcountry": "Southern Region"}, "Mchinji": {"country": "Malawi", "subcountry": "Central Region"}, "Mangochi": {"country": "Malawi", "subcountry": "Southern Region"}, "Liwonde": {"country": "Malawi", "subcountry": "Southern Region"}, "Lilongwe": {"country": "Malawi", "subcountry": "Central Region"}, "Kasungu": {"country": "Malawi", "subcountry": "Central Region"}, "Dedza": {"country": "Malawi", "subcountry": "Central Region"}, "Blantyre": {"country": "Malawi", "subcountry": "Southern Region"}, "Balaka": {"country": "Malawi", "subcountry": "Southern Region"}, "Gustavo A. Madero": {"country": "Mexico", "subcountry": "Mexico City"}, "Zumpango": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Zumpango Del R\u00edo": {"country": "Mexico", "subcountry": "Guerrero"}, "Zacualtip\u00e1n": {"country": "Mexico", "subcountry": "Hidalgo"}, "Zacatl\u00e1n": {"country": "Mexico", "subcountry": "Puebla"}, "Zacatepec": {"country": "Mexico", "subcountry": "Morelos"}, "Yecapixtla": {"country": "Mexico", "subcountry": "Morelos"}, "Yautepec": {"country": "Mexico", "subcountry": "Morelos"}, "Xoxocotla": {"country": "Mexico", "subcountry": "Morelos"}, "Xonacatl\u00e1n": {"country": "Mexico", "subcountry": "Morelos"}, "Xochitepec": {"country": "Mexico", "subcountry": "Morelos"}, "Xochimilco": {"country": "Mexico", "subcountry": "Mexico City"}, "Xicotepec De Ju\u00e1rez": {"country": "Mexico", "subcountry": "Puebla"}, "Xico": {"country": "Mexico", "subcountry": "Veracruz"}, "San Miguel Xico Viejo": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "\u00c1lvaro Obreg\u00f3n": {"country": "Mexico", "subcountry": "Mexico City"}, "Villahermosa": {"country": "Mexico", "subcountry": "Tabasco"}, "Villa Cuauht\u00e9moc Otzolotepec": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Veracruz": {"country": "Panama", "subcountry": "Panam\u00e1"}, "Venustiano Carranza": {"country": "Mexico", "subcountry": "Mexico City"}, "Valle Hermoso": {"country": "Mexico", "subcountry": "Tamaulipas"}, "Uman": {"country": "Mexico", "subcountry": "Yucat\u00e1n"}, "Tuxtla Guti\u00e9rrez": {"country": "Mexico", "subcountry": "Chiapas"}, "Tuxpan De Rodr\u00edguez Cano": {"country": "Mexico", "subcountry": "Veracruz"}, "Tultitl\u00e1n": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Tultepec": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Tulancingo": {"country": "Mexico", "subcountry": "Hidalgo"}, "Tula De Allende": {"country": "Mexico", "subcountry": "Hidalgo"}, "Toluca": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Tlazcalancingo": {"country": "Mexico", "subcountry": "Puebla"}, "Tlaquiltenango": {"country": "Mexico", "subcountry": "Morelos"}, "Tlapa De Comonfort": {"country": "Mexico", "subcountry": "Guerrero"}, "Tlapacoyan": {"country": "Mexico", "subcountry": "Veracruz"}, "Tlalpan": {"country": "Mexico", "subcountry": "Mexico City"}, "Tlalnepantla": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Tlahuac": {"country": "Mexico", "subcountry": "Mexico City"}, "Tizim\u00edn": {"country": "Mexico", "subcountry": "Yucat\u00e1n"}, "Tizayuca": {"country": "Mexico", "subcountry": "Morelos"}, "Tixtla De Guerrero": {"country": "Mexico", "subcountry": "Guerrero"}, "Ticul": {"country": "Mexico", "subcountry": "Yucat\u00e1n"}, "Santiago T\u00edanguistenco": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Tezontepec De Aldama": {"country": "Mexico", "subcountry": "Hidalgo"}, "Teziutlan": {"country": "Mexico", "subcountry": "Puebla"}, "Texcoco De Mora": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Tequixquiac": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Tequisquiapan": {"country": "Mexico", "subcountry": "Quer\u00e9taro"}, "Cuautitl\u00e1n Izcalli": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Tepoztl\u00e1n": {"country": "Mexico", "subcountry": "Morelos"}, "Tepotzotl\u00e1n": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Tepeji De Ocampo": {"country": "Mexico", "subcountry": "Hidalgo"}, "Tepeaca": {"country": "Mexico", "subcountry": "Puebla"}, "Tepatlaxco De Hidalgo": {"country": "Mexico", "subcountry": "Puebla"}, "Teoloyucan": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Tenosique De Pino Su\u00e1rez": {"country": "Mexico", "subcountry": "Tabasco"}, "Tenango De Arista": {"country": "Mexico", "subcountry": "Morelos"}, "Temixco": {"country": "Mexico", "subcountry": "Morelos"}, "Temapache": {"country": "Mexico", "subcountry": "Veracruz"}, "Teloloapan": {"country": "Mexico", "subcountry": "Guerrero"}, "Tecax": {"country": "Mexico", "subcountry": "Yucat\u00e1n"}, "Tehuac\u00e1n": {"country": "Mexico", "subcountry": "Puebla"}, "Tecamachalco": {"country": "Mexico", "subcountry": "Puebla"}, "Teapa": {"country": "Mexico", "subcountry": "Tabasco"}, "Taxco De Alarc\u00f3n": {"country": "Mexico", "subcountry": "Guerrero"}, "Tapachula": {"country": "Mexico", "subcountry": "Chiapas"}, "Tantoyuca": {"country": "Mexico", "subcountry": "Veracruz"}, "Tampico": {"country": "Mexico", "subcountry": "Tamaulipas"}, "Tamazunchale": {"country": "Mexico", "subcountry": "San Luis Potos\u00ed"}, "Santo Domingo Tehuantepec": {"country": "Mexico", "subcountry": "Oaxaca"}, "Santiago Tuxtla": {"country": "Mexico", "subcountry": "Veracruz"}, "Santiago Pinotepa Nacional": {"country": "Mexico", "subcountry": "Oaxaca"}, "Santiago Tulantepec": {"country": "Mexico", "subcountry": "Hidalgo"}, "Moyotzingo": {"country": "Mexico", "subcountry": "Puebla"}, "Santa Mar\u00eda Chimalhuac\u00e1n": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Santa Cruz Xoxocotl\u00e1n": {"country": "Mexico", "subcountry": "Oaxaca"}, "Tecamac De Felipe Villanueva": {"country": "Mexico", "subcountry": "Morelos"}, "Chiautempan": {"country": "Mexico", "subcountry": "Tlaxcala"}, "San Salvador El Seco": {"country": "Mexico", "subcountry": "Puebla"}, "San Salvador Atenco": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "San Pablo De Las Salinas": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "San Pablo Autopan": {"country": "Mexico", "subcountry": "Morelos"}, "San Miguel Zinacantepec": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Coatlinch\u00e1n": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "San Mateo Atenco": {"country": "Mexico", "subcountry": "Morelos"}, "San Martin Texmelucan De Labastida": {"country": "Mexico", "subcountry": "Puebla"}, "Teolocholco": {"country": "Mexico", "subcountry": "Tlaxcala"}, "Teotihuac\u00e1n De Arista": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "San Juan Del R\u00edo": {"country": "Mexico", "subcountry": "Quer\u00e9taro"}, "Tuxtepec": {"country": "Mexico", "subcountry": "Oaxaca"}, "San Francisco Acuautla": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Sanctorum": {"country": "Mexico", "subcountry": "Puebla"}, "San Crist\u00f3bal De Las Casas": {"country": "Mexico", "subcountry": "Chiapas"}, "San Andres Tuxtla": {"country": "Mexico", "subcountry": "Veracruz"}, "Salina Cruz": {"country": "Mexico", "subcountry": "Oaxaca"}, "R\u00edo Verde": {"country": "Mexico", "subcountry": "San Luis Potos\u00ed"}, "R\u00edo Bravo": {"country": "Mexico", "subcountry": "Tamaulipas"}, "R\u00edo Blanco": {"country": "Nicaragua", "subcountry": "Matagalpa"}, "Reynosa": {"country": "Mexico", "subcountry": "Tamaulipas"}, "Puerto Escondido": {"country": "Mexico", "subcountry": "Oaxaca"}, "Puente De Ixtla": {"country": "Mexico", "subcountry": "Morelos"}, "Puebla": {"country": "Mexico", "subcountry": "Puebla"}, "Progreso De Alvaro Obregon": {"country": "Mexico", "subcountry": "Hidalgo"}, "Progreso De Castro": {"country": "Mexico", "subcountry": "Yucat\u00e1n"}, "Poza Rica De Hidalgo": {"country": "Mexico", "subcountry": "Veracruz"}, "Polanco": {"country": "Mexico", "subcountry": "Mexico City"}, "Playa Del Carmen": {"country": "Mexico", "subcountry": "Quintana Roo"}, "Pijijiapan": {"country": "Mexico", "subcountry": "Chiapas"}, "Peto": {"country": "Mexico", "subcountry": "Yucat\u00e1n"}, "Perote": {"country": "Mexico", "subcountry": "Veracruz"}, "Paraiso": {"country": "Philippines", "subcountry": "Western Visayas"}, "Papantla De Olarte": {"country": "Mexico", "subcountry": "Veracruz"}, "P\u00e1nuco": {"country": "Mexico", "subcountry": "Veracruz"}, "Palmarito Tochap\u00e1n": {"country": "Mexico", "subcountry": "Puebla"}, "Palenque": {"country": "Mexico", "subcountry": "Chiapas"}, "Pachuca De Soto": {"country": "Mexico", "subcountry": "Hidalgo"}, "Ozumba De Alzate": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Oxkutzkab": {"country": "Mexico", "subcountry": "Yucat\u00e1n"}, "Orizaba": {"country": "Mexico", "subcountry": "Veracruz"}, "Ometepec": {"country": "Mexico", "subcountry": "Guerrero"}, "Ocozocoautla De Espinosa": {"country": "Mexico", "subcountry": "Chiapas"}, "Ocoyoacac": {"country": "Mexico", "subcountry": "Morelos"}, "Ocosingo": {"country": "Mexico", "subcountry": "Chiapas"}, "Oaxaca De Ju\u00e1rez": {"country": "Mexico", "subcountry": "Oaxaca"}, "Nuevo Laredo": {"country": "Mexico", "subcountry": "Tamaulipas"}, "Nogales": {"country": "United States", "subcountry": "Arizona"}, "Nicol\u00e1s Romero": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Naucalpan De Ju\u00e1rez": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Naranjos": {"country": "Mexico", "subcountry": "Veracruz"}, "Villa Nanchital": {"country": "Mexico", "subcountry": "Veracruz"}, "Motul": {"country": "Mexico", "subcountry": "Yucat\u00e1n"}, "Motozintla": {"country": "Mexico", "subcountry": "Chiapas"}, "Montemorelos": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Santiago Momoxpan": {"country": "Mexico", "subcountry": "Puebla"}, "Mixquiahuala De Juarez": {"country": "Mexico", "subcountry": "Hidalgo"}, "Misantla": {"country": "Mexico", "subcountry": "Veracruz"}, "Miramar": {"country": "United States", "subcountry": "Florida"}, "Minatitlan": {"country": "Mexico", "subcountry": "Veracruz"}, "Milpa Alta": {"country": "Mexico", "subcountry": "Mexico City"}, "Miahuatl\u00e1n De Porfirio D\u00edaz": {"country": "Mexico", "subcountry": "Oaxaca"}, "Metepec": {"country": "Mexico", "subcountry": "Morelos"}, "Mat\u00edas Romero": {"country": "Mexico", "subcountry": "Oaxaca"}, "Heroica Matamoros": {"country": "Mexico", "subcountry": "Tamaulipas"}, "Mart\u00ednez De La Torre": {"country": "Mexico", "subcountry": "Veracruz"}, "Mapastepec": {"country": "Mexico", "subcountry": "Chiapas"}, "Malinaltepec": {"country": "Mexico", "subcountry": "Guerrero"}, "Magdalena Contreras": {"country": "Mexico", "subcountry": "Mexico City"}, "Macuspana": {"country": "Mexico", "subcountry": "Tabasco"}, "Reyes Acozac": {"country": "Mexico", "subcountry": "Morelos"}, "Los Reyes La Paz": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Lerma De Villada": {"country": "Mexico", "subcountry": "Morelos"}, "Lerdo De Tejada": {"country": "Mexico", "subcountry": "Veracruz"}, "Las Margaritas": {"country": "Mexico", "subcountry": "Chiapas"}, "Las Choapas": {"country": "Mexico", "subcountry": "Veracruz"}, "La Isla": {"country": "Mexico", "subcountry": "Veracruz"}, "Kanas\u00edn": {"country": "Mexico", "subcountry": "Yucat\u00e1n"}, "Juchit\u00e1n De Zaragoza": {"country": "Mexico", "subcountry": "Oaxaca"}, "Jojutla": {"country": "Mexico", "subcountry": "Morelos"}, "Jiutepec": {"country": "Mexico", "subcountry": "Morelos"}, "Jalpa De M\u00e9ndez": {"country": "Mexico", "subcountry": "Tabasco"}, "Xalapa De Enr\u00edquez": {"country": "Mexico", "subcountry": "Veracruz"}, "Iz\u00facar De Matamoros": {"country": "Mexico", "subcountry": "Puebla"}, "San Jer\u00f3nimo Ixtepec": {"country": "Mexico", "subcountry": "Oaxaca"}, "Ixtapan De La Sal": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Ixtapaluca": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Iztapalapa": {"country": "Mexico", "subcountry": "Mexico City"}, "Ixtac Zoquitl\u00e1n": {"country": "Mexico", "subcountry": "Veracruz"}, "Iztacalco": {"country": "Mexico", "subcountry": "Mexico City"}, "Ixmiquilpan": {"country": "Mexico", "subcountry": "Hidalgo"}, "Iguala De La Independencia": {"country": "Mexico", "subcountry": "Guerrero"}, "Hunucm\u00e1": {"country": "Mexico", "subcountry": "Yucat\u00e1n"}, "Huixtla": {"country": "Mexico", "subcountry": "Chiapas"}, "Huitzuco De Los Figueroa": {"country": "Mexico", "subcountry": "Guerrero"}, "Huimanguillo": {"country": "Mexico", "subcountry": "Tabasco"}, "Huejutla De Reyes": {"country": "Mexico", "subcountry": "Hidalgo"}, "Huejotzingo": {"country": "Mexico", "subcountry": "Puebla"}, "Huauchinango": {"country": "Mexico", "subcountry": "Puebla"}, "Huatusco De Chicuellar": {"country": "Mexico", "subcountry": "Veracruz"}, "Ciudad De Huajuapan De Le\u00f3n": {"country": "Mexico", "subcountry": "Oaxaca"}, "Frontera Comalapa": {"country": "Mexico", "subcountry": "Chiapas"}, "Frontera": {"country": "Mexico", "subcountry": "Tabasco"}, "Fort\u00edn De Las Flores": {"country": "Mexico", "subcountry": "Veracruz"}, "Felipe Carrillo Puerto": {"country": "Mexico", "subcountry": "Quintana Roo"}, "Esc\u00e1rcega": {"country": "Mexico", "subcountry": "Campeche"}, "Emiliano Zapata": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Ciudad Mante": {"country": "Mexico", "subcountry": "Tamaulipas"}, "Ecatepec": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Cunduac\u00e1n": {"country": "Mexico", "subcountry": "Tabasco"}, "Cuernavaca": {"country": "Mexico", "subcountry": "Morelos"}, "Cuautlancingo": {"country": "Mexico", "subcountry": "Puebla"}, "Cuautla Morelos": {"country": "Mexico", "subcountry": "Morelos"}, "Cuautitl\u00e1n": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Cuautepec De Hinojosa": {"country": "Mexico", "subcountry": "Hidalgo"}, "Cuajimalpa": {"country": "Mexico", "subcountry": "Mexico City"}, "San Miguel De Cozumel": {"country": "Mexico", "subcountry": "Quintana Roo"}, "Coyotepec": {"country": "Mexico", "subcountry": "Morelos"}, "Coyoac\u00e1n": {"country": "Mexico", "subcountry": "Mexico City"}, "Cosoleacaque": {"country": "Mexico", "subcountry": "Veracruz"}, "Cosamaloapan De Carpio": {"country": "Mexico", "subcountry": "Veracruz"}, "San Bernardino Contla": {"country": "Mexico", "subcountry": "Tlaxcala"}, "Comit\u00e1n": {"country": "Mexico", "subcountry": "Chiapas"}, "Comalcalco": {"country": "Mexico", "subcountry": "Tabasco"}, "Coatzintla": {"country": "Mexico", "subcountry": "Veracruz"}, "Coatzacoalcos": {"country": "Mexico", "subcountry": "Veracruz"}, "Coatepec": {"country": "Mexico", "subcountry": "Veracruz"}, "Coacalco": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Ciudad Victoria": {"country": "Mexico", "subcountry": "Tamaulipas"}, "Ciudad Valles": {"country": "Mexico", "subcountry": "San Luis Potos\u00ed"}, "Ciudad Serd\u00e1n": {"country": "Mexico", "subcountry": "Puebla"}, "Ciudad Sahagun": {"country": "Mexico", "subcountry": "Hidalgo"}, "Ciudad Nezahualcoyotl": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Ciudad Miguel Alem\u00e1n": {"country": "Mexico", "subcountry": "Tamaulipas"}, "Ciudad Mendoza": {"country": "Mexico", "subcountry": "Veracruz"}, "Ciudad Madero": {"country": "Mexico", "subcountry": "Tamaulipas"}, "Ciudad Fern\u00e1ndez": {"country": "Mexico", "subcountry": "San Luis Potos\u00ed"}, "Mexico City": {"country": "Mexico", "subcountry": "Mexico City"}, "Ciudad Del Carmen": {"country": "Mexico", "subcountry": "Campeche"}, "Cintalapa De Figueroa": {"country": "Mexico", "subcountry": "Chiapas"}, "Cholula": {"country": "Mexico", "subcountry": "Puebla"}, "Chilpancingo De Los Bravos": {"country": "Mexico", "subcountry": "Guerrero"}, "Chilapa De Alvarez": {"country": "Mexico", "subcountry": "Guerrero"}, "Chignahuapan": {"country": "Mexico", "subcountry": "Puebla"}, "Chiconcuac": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "San Vicente Chicoloapan": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Chich\u00e9n-Itz\u00e1": {"country": "Mexico", "subcountry": "Yucat\u00e1n"}, "Chiautla": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Chiapa De Corzo": {"country": "Mexico", "subcountry": "Chiapas"}, "Chetumal": {"country": "Mexico", "subcountry": "Quintana Roo"}, "Champot\u00f3n": {"country": "Mexico", "subcountry": "Campeche"}, "Chalco De D\u00edaz Covarrubias": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Cerro Azul": {"country": "Mexico", "subcountry": "Veracruz"}, "Catemaco": {"country": "Mexico", "subcountry": "Veracruz"}, "Carlos A. Carrillo": {"country": "Mexico", "subcountry": "Veracruz"}, "Cardenas": {"country": "Mexico", "subcountry": "San Luis Potos\u00ed"}, "Capulhuac": {"country": "Mexico", "subcountry": "Morelos"}, "Canc\u00fan": {"country": "Mexico", "subcountry": "Quintana Roo"}, "Campeche": {"country": "Mexico", "subcountry": "Campeche"}, "Calpulalpan": {"country": "Mexico", "subcountry": "Hidalgo"}, "Cadereyta": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Berrioz\u00e1bal": {"country": "Mexico", "subcountry": "Chiapas"}, "Banderilla": {"country": "Mexico", "subcountry": "Veracruz"}, "Azcapotzalco": {"country": "Mexico", "subcountry": "Mexico City"}, "Axochiapan": {"country": "Mexico", "subcountry": "Morelos"}, "Atlixco": {"country": "Mexico", "subcountry": "Puebla"}, "Atlacomulco": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Ciudad L\u00f3pez Mateos": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Apizaco": {"country": "Mexico", "subcountry": "Tlaxcala"}, "Apan": {"country": "Mexico", "subcountry": "Hidalgo"}, "Amozoc De Mota": {"country": "Mexico", "subcountry": "Puebla"}, "Amecameca": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Heroica Alvarado": {"country": "Mexico", "subcountry": "Veracruz"}, "Altotonga": {"country": "Mexico", "subcountry": "Veracruz"}, "Altepexi": {"country": "Mexico", "subcountry": "Puebla"}, "Allende": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "\u00c1lamo": {"country": "Mexico", "subcountry": "Veracruz"}, "Ajalpan": {"country": "Mexico", "subcountry": "Puebla"}, "Agua Dulce": {"country": "Mexico", "subcountry": "Veracruz"}, "Actopan": {"country": "Mexico", "subcountry": "Hidalgo"}, "Acayucan": {"country": "Mexico", "subcountry": "Veracruz"}, "Acatzingo De Hidalgo": {"country": "Mexico", "subcountry": "Puebla"}, "Acatl\u00e1n De Osorio": {"country": "Mexico", "subcountry": "Puebla"}, "Acapulco De Ju\u00e1rez": {"country": "Mexico", "subcountry": "Guerrero"}, "Acajete": {"country": "Mexico", "subcountry": "Puebla"}, "San Antonio De La Cal": {"country": "Mexico", "subcountry": "Oaxaca"}, "Hidalgo": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "R\u00edo De Teapa": {"country": "Mexico", "subcountry": "Tabasco"}, "Huamantla": {"country": "Mexico", "subcountry": "Tlaxcala"}, "Zacatelco": {"country": "Mexico", "subcountry": "Tlaxcala"}, "Tlaxcala De Xicohtencatl": {"country": "Mexico", "subcountry": "Tlaxcala"}, "Papalotla": {"country": "Mexico", "subcountry": "Tlaxcala"}, "Vicente Guerrero": {"country": "Mexico", "subcountry": "Tlaxcala"}, "Tonal\u00e1": {"country": "Mexico", "subcountry": "Jalisco"}, "Arriaga": {"country": "Mexico", "subcountry": "Chiapas"}, "San Andr\u00e9s Cholula": {"country": "Mexico", "subcountry": "Puebla"}, "Alto Lucero": {"country": "Mexico", "subcountry": "Veracruz"}, "San Mateo Otzacatipan": {"country": "Mexico", "subcountry": "Morelos"}, "Santa Mar\u00eda Totoltepec": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "San Lorenzo Acopilco": {"country": "Mexico", "subcountry": "Mexico City"}, "Benito Juarez": {"country": "Mexico", "subcountry": "Mexico City"}, "Miguel Hidalgo": {"country": "Mexico", "subcountry": "Mexico City"}, "Cuauht\u00e9moc": {"country": "Mexico", "subcountry": "Chihuahua"}, "Huixquilucan": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Melchor Ocampo": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Huilango": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Santiago Teyahualco": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Ojo De Agua": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Buenavista": {"country": "Philippines", "subcountry": "Caraga"}, "Miguel Alem\u00e1n (La Doce)": {"country": "Mexico", "subcountry": "Sonora"}, "Leyva Solano": {"country": "Mexico", "subcountry": "Sinaloa"}, "Cihuatl\u00e1n": {"country": "Mexico", "subcountry": "Jalisco"}, "Guadalupe Victoria": {"country": "Mexico", "subcountry": "Baja California"}, "Ixtapa-Zihuatanejo": {"country": "Mexico", "subcountry": "Guerrero"}, "Zapotlanejo": {"country": "Mexico", "subcountry": "Jalisco"}, "Zapotiltic": {"country": "Mexico", "subcountry": "Jalisco"}, "Zapopan": {"country": "Mexico", "subcountry": "Jalisco"}, "Zacoalco De Torres": {"country": "Mexico", "subcountry": "Jalisco"}, "Zacatecas": {"country": "Mexico", "subcountry": "Zacatecas"}, "Zacap\u00fa": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Yuriria": {"country": "Mexico", "subcountry": "Guanajuato"}, "Yur\u00e9cuaro": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Villagr\u00e1n": {"country": "Mexico", "subcountry": "Guanajuato"}, "Ciudad Frontera": {"country": "Mexico", "subcountry": "Coahuila"}, "Garc\u00eda": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Ciudad De Villa De \u00c1lvarez": {"country": "Mexico", "subcountry": "Colima"}, "Valle De Santiago": {"country": "Mexico", "subcountry": "Guanajuato"}, "Valle De Bravo": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Uruapan": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Uriangato": {"country": "Mexico", "subcountry": "Guanajuato"}, "Tuxpan": {"country": "Mexico", "subcountry": "Jalisco"}, "Torreon": {"country": "Mexico", "subcountry": "Coahuila"}, "Tlaquepaque": {"country": "Mexico", "subcountry": "Jalisco"}, "Tlajomulco De Z\u00fa\u00f1iga": {"country": "Mexico", "subcountry": "Jalisco"}, "Tijuana": {"country": "Mexico", "subcountry": "Baja California"}, "Tesist\u00e1n": {"country": "Mexico", "subcountry": "Jalisco"}, "Tequila": {"country": "Mexico", "subcountry": "Jalisco"}, "Tepic": {"country": "Mexico", "subcountry": "Nayarit"}, "Tepatitl\u00e1n De Morelos": {"country": "Mexico", "subcountry": "Jalisco"}, "Tepalcatepec": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Teocaltiche": {"country": "Mexico", "subcountry": "Jalisco"}, "Tejupilco De Hidalgo": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Tecoman": {"country": "Mexico", "subcountry": "Colima"}, "Tecate": {"country": "Mexico", "subcountry": "Baja California"}, "Tanganc\u00edcuaro De Arista": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Tamazula De Gordiano": {"country": "Mexico", "subcountry": "Jalisco"}, "Tala": {"country": "Mexico", "subcountry": "Jalisco"}, "Tac\u00e1mbaro De Codallos": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Sombrerete": {"country": "Mexico", "subcountry": "Zacatecas"}, "Soledad D\u00edez Guti\u00e9rrez": {"country": "Mexico", "subcountry": "San Luis Potos\u00ed"}, "Sayula": {"country": "Mexico", "subcountry": "Jalisco"}, "Santiago Papasquiaro": {"country": "Mexico", "subcountry": "Durango"}, "Santiago Ixcuintla": {"country": "Mexico", "subcountry": "Nayarit"}, "Santa Rosa Jauregui": {"country": "Mexico", "subcountry": "Quer\u00e9taro"}, "Santa Catarina": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Santa Anita": {"country": "Mexico", "subcountry": "Jalisco"}, "San Sebasti\u00e1n El Grande": {"country": "Mexico", "subcountry": "Jalisco"}, "San Nicol\u00e1s De Los Garza": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "San Miguel El Alto": {"country": "Mexico", "subcountry": "Jalisco"}, "San Miguel De Papasquiaro": {"country": "Mexico", "subcountry": "Durango"}, "San Miguel De Allende": {"country": "Mexico", "subcountry": "Guanajuato"}, "San Luis R\u00edo Colorado": {"country": "Mexico", "subcountry": "Sonora"}, "San Luis Potos\u00ed": {"country": "Mexico", "subcountry": "San Luis Potos\u00ed"}, "San Luis De La Paz": {"country": "Mexico", "subcountry": "Guerrero"}, "Cabo San Lucas": {"country": "Mexico", "subcountry": "Baja California Sur"}, "San Juan De Los Lagos": {"country": "Mexico", "subcountry": "Jalisco"}, "San Jos\u00e9 Iturbide": {"country": "Mexico", "subcountry": "Guanajuato"}, "San Jos\u00e9 Del Cabo": {"country": "Mexico", "subcountry": "Baja California Sur"}, "San Francisco Del Rinc\u00f3n": {"country": "Mexico", "subcountry": "Guanajuato"}, "San Buenaventura": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Nicol\u00e1s R Casillas": {"country": "Mexico", "subcountry": "Jalisco"}, "Salvatierra": {"country": "Mexico", "subcountry": "Guanajuato"}, "Saltillo": {"country": "Mexico", "subcountry": "Coahuila"}, "Sahuayo De Morelos": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Sabinas Hidalgo": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Ciudad Sabinas": {"country": "Mexico", "subcountry": "Coahuila"}, "Rosarito": {"country": "Mexico", "subcountry": "Baja California"}, "Romita": {"country": "Mexico", "subcountry": "Guanajuato"}, "Rinc\u00f3n De Romos": {"country": "Mexico", "subcountry": "Aguascalientes"}, "Ramos Arizpe": {"country": "Mexico", "subcountry": "Coahuila"}, "Santiago De Quer\u00e9taro": {"country": "Mexico", "subcountry": "Quer\u00e9taro"}, "Puru\u00e1ndiro": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Puerto Vallarta": {"country": "Mexico", "subcountry": "Jalisco"}, "Puerto Pe\u00f1asco": {"country": "Mexico", "subcountry": "Sonora"}, "Piedras Negras": {"country": "Mexico", "subcountry": "Coahuila"}, "Petatl\u00e1n": {"country": "Mexico", "subcountry": "Guerrero"}, "P\u00e9njamo": {"country": "Mexico", "subcountry": "Guanajuato"}, "P\u00e1tzcuaro": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Parras De La Fuente": {"country": "Mexico", "subcountry": "Coahuila"}, "Paracho De Verduzco": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Palau": {"country": "Mexico", "subcountry": "Coahuila"}, "Ojinaga": {"country": "Mexico", "subcountry": "Chihuahua"}, "Ocotl\u00e1n": {"country": "Mexico", "subcountry": "Jalisco"}, "Nuevo M\u00e9xico": {"country": "Mexico", "subcountry": "Jalisco"}, "Nuevo Casas Grandes": {"country": "Mexico", "subcountry": "Chihuahua"}, "Nueva Rosita": {"country": "Mexico", "subcountry": "Coahuila"}, "Nueva Italia De Ruiz": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Nochistl\u00e1n": {"country": "Mexico", "subcountry": "Zacatecas"}, "Navolato": {"country": "Mexico", "subcountry": "Sinaloa"}, "Navojoa": {"country": "Mexico", "subcountry": "Sonora"}, "Nava": {"country": "Mexico", "subcountry": "Coahuila"}, "Morole\u00f3n": {"country": "Mexico", "subcountry": "Guanajuato"}, "Morelia": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Monterrey": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Monclova": {"country": "Mexico", "subcountry": "Coahuila"}, "Mexicali": {"country": "Mexico", "subcountry": "Baja California"}, "Pedro Meoqui": {"country": "Mexico", "subcountry": "Chihuahua"}, "Melchor M\u00fazquiz": {"country": "Mexico", "subcountry": "Coahuila"}, "Medina": {"country": "United States", "subcountry": "Ohio"}, "Mazatl\u00e1n": {"country": "Mexico", "subcountry": "Sinaloa"}, "Matehuala": {"country": "Mexico", "subcountry": "San Luis Potos\u00ed"}, "Matamoros": {"country": "Mexico", "subcountry": "Coahuila"}, "Marfil": {"country": "Mexico", "subcountry": "Guanajuato"}, "Maravat\u00edo": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Rodolfo S\u00e1nchez Taboada": {"country": "Mexico", "subcountry": "Baja California"}, "Magdalena De Kino": {"country": "Mexico", "subcountry": "Sonora"}, "San Pedro Madera": {"country": "Mexico", "subcountry": "Chihuahua"}, "Los Mochis": {"country": "Mexico", "subcountry": "Sinaloa"}, "Loreto": {"country": "Mexico", "subcountry": "Zacatecas"}, "Las Pintas De Arriba": {"country": "Mexico", "subcountry": "Jalisco"}, "La Piedad Cavadas": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "La Orilla": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Lagos De Moreno": {"country": "Mexico", "subcountry": "Jalisco"}, "La Cruz": {"country": "Mexico", "subcountry": "Sinaloa"}, "La Barca": {"country": "Mexico", "subcountry": "Jalisco"}, "Santa Cruz De Juventino Rosas": {"country": "Mexico", "subcountry": "Guanajuato"}, "Jocotepec": {"country": "Mexico", "subcountry": "Jalisco"}, "Jiqu\u00edlpan De Ju\u00e1rez": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Jim\u00e9nez": {"country": "Mexico", "subcountry": "Chihuahua"}, "Jerez De Garc\u00eda Salinas": {"country": "Mexico", "subcountry": "Zacatecas"}, "Jaral Del Progreso": {"country": "Mexico", "subcountry": "Guanajuato"}, "Jamay": {"country": "Mexico", "subcountry": "Jalisco"}, "Jalostotitl\u00e1n": {"country": "Mexico", "subcountry": "Jalisco"}, "Ixtl\u00e1n Del R\u00edo": {"country": "Mexico", "subcountry": "Nayarit"}, "Ixtapa": {"country": "Mexico", "subcountry": "Jalisco"}, "Irapuato": {"country": "Mexico", "subcountry": "Guanajuato"}, "Huetamo De N\u00fa\u00f1ez": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Huatabampo": {"country": "Mexico", "subcountry": "Sonora"}, "Hidalgo Del Parral": {"country": "Mexico", "subcountry": "Chihuahua"}, "Her\u00f3ica Zit\u00e1cuaro": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Heroica Caborca": {"country": "Mexico", "subcountry": "Sonora"}, "Hermosillo": {"country": "Mexico", "subcountry": "Sonora"}, "Heroica Guaymas": {"country": "Mexico", "subcountry": "Sonora"}, "Guasave": {"country": "Mexico", "subcountry": "Sinaloa"}, "Guanajuato": {"country": "Mexico", "subcountry": "Guanajuato"}, "Guam\u00fachil": {"country": "Mexico", "subcountry": "Sinaloa"}, "Gomez Palacio": {"country": "Mexico", "subcountry": "Durango"}, "Juan Jose Rios": {"country": "Mexico", "subcountry": "Sinaloa"}, "General Escobedo": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Garza Garc\u00eda": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Fresnillo": {"country": "Mexico", "subcountry": "Zacatecas"}, "Escuinapa De Hidalgo": {"country": "Mexico", "subcountry": "Sinaloa"}, "Ensenada": {"country": "Mexico", "subcountry": "Baja California"}, "Encarnaci\u00f3n De D\u00edaz": {"country": "Mexico", "subcountry": "Jalisco"}, "Empalme": {"country": "Mexico", "subcountry": "Sonora"}, "Pueblo Nuevo": {"country": "Mexico", "subcountry": "Durango"}, "El Salto": {"country": "Mexico", "subcountry": "Jalisco"}, "El Pueblito": {"country": "Mexico", "subcountry": "Quer\u00e9taro"}, "El Grullo": {"country": "Mexico", "subcountry": "Jalisco"}, "Victoria De Durango": {"country": "Mexico", "subcountry": "Durango"}, "Culiac\u00e1n": {"country": "Mexico", "subcountry": "Sinaloa"}, "Villa De Costa Rica": {"country": "Mexico", "subcountry": "Sinaloa"}, "Cortazar": {"country": "Mexico", "subcountry": "Guanajuato"}, "Compostela": {"country": "Philippines", "subcountry": "Davao"}, "Comonfort": {"country": "Mexico", "subcountry": "Guanajuato"}, "Ciudad Obreg\u00f3n": {"country": "Mexico", "subcountry": "Sonora"}, "Ciudad Lerdo": {"country": "Mexico", "subcountry": "Coahuila"}, "Ciudad Ju\u00e1rez": {"country": "Mexico", "subcountry": "Chihuahua"}, "Ciudad Hidalgo": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Ciudad Guzm\u00e1n": {"country": "Mexico", "subcountry": "Jalisco"}, "Ciudad Delicias": {"country": "Mexico", "subcountry": "Chihuahua"}, "Ciudad Constituci\u00f3n": {"country": "Mexico", "subcountry": "Baja California Sur"}, "Ciudad Camargo": {"country": "Mexico", "subcountry": "Chihuahua"}, "Ciudad An\u00e1huac": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Ciudad Altamirano": {"country": "Mexico", "subcountry": "Guerrero"}, "Ciudad Acu\u00f1a": {"country": "Mexico", "subcountry": "Coahuila"}, "Chihuahua": {"country": "Mexico", "subcountry": "Chihuahua"}, "Chapala": {"country": "Mexico", "subcountry": "Jalisco"}, "Celaya": {"country": "Mexico", "subcountry": "Guanajuato"}, "Casta\u00f1os": {"country": "Mexico", "subcountry": "Coahuila"}, "Cananea": {"country": "Mexico", "subcountry": "Sonora"}, "Villa Ju\u00e1rez": {"country": "Mexico", "subcountry": "Sinaloa"}, "Calvillo": {"country": "Mexico", "subcountry": "Aguascalientes"}, "V\u00edctor Rosales": {"country": "Mexico", "subcountry": "Zacatecas"}, "Autl\u00e1n De Navarro": {"country": "Mexico", "subcountry": "Jalisco"}, "Atoyac De \u00c1lvarez": {"country": "Mexico", "subcountry": "Guerrero"}, "Atotonilco El Alto": {"country": "Mexico", "subcountry": "Jalisco"}, "Armeria": {"country": "Mexico", "subcountry": "Colima"}, "Arcelia": {"country": "Mexico", "subcountry": "Guerrero"}, "Arandas": {"country": "Mexico", "subcountry": "Jalisco"}, "Apodaca": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Apatzing\u00e1n": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Apaseo El Grande": {"country": "Mexico", "subcountry": "Guanajuato"}, "Apaseo El Alto": {"country": "Mexico", "subcountry": "Guanajuato"}, "Ameca": {"country": "Mexico", "subcountry": "Jalisco"}, "Aguascalientes": {"country": "Mexico", "subcountry": "Aguascalientes"}, "Agua Prieta": {"country": "Mexico", "subcountry": "Sonora"}, "Acaponeta": {"country": "Mexico", "subcountry": "Nayarit"}, "Ac\u00e1mbaro": {"country": "Mexico", "subcountry": "Guanajuato"}, "Abasolo": {"country": "Mexico", "subcountry": "Guanajuato"}, "An\u00e1huac": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Dolores Hidalgo Cuna De La Independencia Nacional": {"country": "Mexico", "subcountry": "Guanajuato"}, "Guacamayas": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Ciudad L\u00e1zaro C\u00e1rdenas": {"country": "Mexico", "subcountry": "Michoac\u00e1n"}, "Colonia Del Valle": {"country": "Mexico", "subcountry": "Mexico City"}, "Colonia Lindavista": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Colonia Nativitas": {"country": "Mexico", "subcountry": "Mexico City"}, "Las Delicias": {"country": "Mexico", "subcountry": "Baja California"}, "San Pedro Garza Garcia": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Soledad De Graciano S\u00e1nchez": {"country": "Mexico", "subcountry": "San Luis Potos\u00ed"}, "Hacienda Santa Fe": {"country": "Mexico", "subcountry": "Jalisco"}, "Fuentes Del Valle": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "San Salvador Tizatlalli": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Jardines De La Silla (Jardines)": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Colonia Santa Teresa": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "San Jer\u00f3nimo Cuatro Vientos": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "San Mart\u00edn Azcatepec": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Fraccionamiento Real Palmas": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "P\u00f3rticos De San Antonio": {"country": "Mexico", "subcountry": "Baja California"}, "Centro Familiar La Soledad": {"country": "Mexico", "subcountry": "Guanajuato"}, "San Jos\u00e9 Guadalupe Otzacatipan": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Las Pintitas": {"country": "Mexico", "subcountry": "Jalisco"}, "San Antonio Tec\u00f3mitl": {"country": "Mexico", "subcountry": "Mexico City"}, "Licenciado Benito Ju\u00e1rez (Campo Gobierno)": {"country": "Mexico", "subcountry": "Sinaloa"}, "Jes\u00fas Del Monte": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "San Jorge Pueblo Nuevo": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Manuel Ojinaga": {"country": "Mexico", "subcountry": "Chihuahua"}, "Terrazas Del Valle": {"country": "Mexico", "subcountry": "Baja California"}, "La Ermita": {"country": "Mexico", "subcountry": "Guanajuato"}, "Lomas Del Sur": {"country": "Mexico", "subcountry": "Jalisco"}, "Parque Industrial Ciudad Mitras": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Mitras Poniente": {"country": "Mexico", "subcountry": "Nuevo Le\u00f3n"}, "Villa Del Prado 2Da Secci\u00f3n": {"country": "Mexico", "subcountry": "Baja California"}, "Tres De Mayo": {"country": "Mexico", "subcountry": "Morelos"}, "Don Antonio": {"country": "Mexico", "subcountry": "Hidalgo"}, "Heroica Ciudad De Tlaxiaco": {"country": "Mexico", "subcountry": "Oaxaca"}, "Ciudad De Huitzuco": {"country": "Mexico", "subcountry": "Guerrero"}, "Casa Blanca": {"country": "Mexico", "subcountry": "Puebla"}, "La Providencia Siglo Xxi": {"country": "Mexico", "subcountry": "Hidalgo"}, "Ampliaci\u00f3n San Mateo (Colonia Solidaridad)": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Fraccionamiento Ciudad Olmeca": {"country": "Mexico", "subcountry": "Veracruz"}, "San Rafael Tlanalapan": {"country": "Mexico", "subcountry": "Puebla"}, "Tec\u00e1mac De Felipe Villanueva": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Venceremos": {"country": "Mexico", "subcountry": "Quer\u00e9taro"}, "Alborada Jaltenco": {"country": "Mexico", "subcountry": "M\u00e9xico"}, "Crucecita": {"country": "Mexico", "subcountry": "Oaxaca"}, "Padang Mat Sirat": {"country": "Malaysia", "subcountry": "Kedah"}, "Kuah": {"country": "Malaysia", "subcountry": "Kedah"}, "Jerantut": {"country": "Malaysia", "subcountry": "Pahang"}, "Raub": {"country": "Malaysia", "subcountry": "Pahang"}, "Batu Pahat": {"country": "Malaysia", "subcountry": "Johor"}, "Parit Raja": {"country": "Malaysia", "subcountry": "Johor"}, "Pekan Nenas": {"country": "Malaysia", "subcountry": "Johor"}, "Pontian Kechil": {"country": "Malaysia", "subcountry": "Johor"}, "Kampung Pasir Gudang Baru": {"country": "Malaysia", "subcountry": "Johor"}, "Kota Tinggi": {"country": "Malaysia", "subcountry": "Johor"}, "Taman Senai": {"country": "Malaysia", "subcountry": "Johor"}, "Kulai": {"country": "Malaysia", "subcountry": "Johor"}, "Skudai": {"country": "Malaysia", "subcountry": "Johor"}, "Johor Bahru": {"country": "Malaysia", "subcountry": "Johor"}, "Kluang": {"country": "Malaysia", "subcountry": "Johor"}, "Yong Peng": {"country": "Malaysia", "subcountry": "Johor"}, "Mersing": {"country": "Malaysia", "subcountry": "Johor"}, "Segamat": {"country": "Malaysia", "subcountry": "Johor"}, "Tangkak": {"country": "Malaysia", "subcountry": "Johor"}, "Muar": {"country": "Malaysia", "subcountry": "Johor"}, "Bakri": {"country": "Malaysia", "subcountry": "Johor"}, "Labis": {"country": "Malaysia", "subcountry": "Johor"}, "Kuala Selangor": {"country": "Malaysia", "subcountry": "Selangor"}, "Batang Berjuntai": {"country": "Malaysia", "subcountry": "Selangor"}, "Batu Arang": {"country": "Malaysia", "subcountry": "Selangor"}, "Shah Alam": {"country": "Malaysia", "subcountry": "Selangor"}, "Klang": {"country": "Malaysia", "subcountry": "Selangor"}, "Cukai": {"country": "Malaysia", "subcountry": "Terengganu"}, "Kuala Lipis": {"country": "Malaysia", "subcountry": "Pahang"}, "Papar": {"country": "Malaysia", "subcountry": "Sabah"}, "Kota Kinabalu": {"country": "Malaysia", "subcountry": "Sabah"}, "Donggongon": {"country": "Malaysia", "subcountry": "Sabah"}, "Putatan": {"country": "Malaysia", "subcountry": "Sabah"}, "Kinarut": {"country": "Malaysia", "subcountry": "Sabah"}, "Ranau": {"country": "Malaysia", "subcountry": "Sabah"}, "Semporna": {"country": "Malaysia", "subcountry": "Sabah"}, "Beaufort": {"country": "Malaysia", "subcountry": "Sabah"}, "Lahad Datu": {"country": "Malaysia", "subcountry": "Sabah"}, "Sandakan": {"country": "Malaysia", "subcountry": "Sabah"}, "Keningau": {"country": "Malaysia", "subcountry": "Sabah"}, "Tawau": {"country": "Malaysia", "subcountry": "Sabah"}, "Paka": {"country": "Malaysia", "subcountry": "Terengganu"}, "Kertih": {"country": "Malaysia", "subcountry": "Terengganu"}, "Kulim": {"country": "Malaysia", "subcountry": "Kedah"}, "Bagan Serai": {"country": "Malaysia", "subcountry": "Perak"}, "Bedong": {"country": "Malaysia", "subcountry": "Kedah"}, "Simpang Empat": {"country": "Malaysia", "subcountry": "Perak"}, "Taiping": {"country": "Malaysia", "subcountry": "Perak"}, "Kuala Kangsar": {"country": "Malaysia", "subcountry": "Perak"}, "Ipoh": {"country": "Malaysia", "subcountry": "Perak"}, "Gua Musang": {"country": "Malaysia", "subcountry": "Kelantan"}, "Kuala Terengganu": {"country": "Malaysia", "subcountry": "Terengganu"}, "Marang": {"country": "Malaysia", "subcountry": "Terengganu"}, "Tampin": {"country": "Malaysia", "subcountry": "Negeri Sembilan"}, "Alor Gajah": {"country": "Malaysia", "subcountry": "Melaka"}, "Kampung Ayer Keroh": {"country": "Malaysia", "subcountry": "Melaka"}, "Sungai Udang": {"country": "Malaysia", "subcountry": "Melaka"}, "Malacca": {"country": "Malaysia", "subcountry": "Melaka"}, "Banting": {"country": "Malaysia", "subcountry": "Selangor"}, "Jenjarum": {"country": "Malaysia", "subcountry": "Selangor"}, "Semenyih": {"country": "Malaysia", "subcountry": "Selangor"}, "Seremban": {"country": "Malaysia", "subcountry": "Negeri Sembilan"}, "Port Dickson": {"country": "Malaysia", "subcountry": "Negeri Sembilan"}, "Sepang": {"country": "Malaysia", "subcountry": "Selangor"}, "Bahau": {"country": "Malaysia", "subcountry": "Negeri Sembilan"}, "Kuala Pilah": {"country": "Malaysia", "subcountry": "Negeri Sembilan"}, "Pekan": {"country": "Malaysia", "subcountry": "Pahang"}, "Mentekab": {"country": "Malaysia", "subcountry": "Pahang"}, "Temerluh": {"country": "Malaysia", "subcountry": "Pahang"}, "Butterworth": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Perai": {"country": "Malaysia", "subcountry": "Penang"}, "Bukit Mertajam": {"country": "Malaysia", "subcountry": "Penang"}, "Nibong Tebal": {"country": "Malaysia", "subcountry": "Penang"}, "Parit Buntar": {"country": "Malaysia", "subcountry": "Perak"}, "Tasek Glugor": {"country": "Malaysia", "subcountry": "Penang"}, "Serendah": {"country": "Malaysia", "subcountry": "Selangor"}, "Rawang": {"country": "Malaysia", "subcountry": "Selangor"}, "Petaling Jaya": {"country": "Malaysia", "subcountry": "Selangor"}, "Kuala Lumpur": {"country": "Malaysia", "subcountry": "Kuala Lumpur"}, "Sabak Bernam": {"country": "Malaysia", "subcountry": "Selangor"}, "Sungai Besar": {"country": "Malaysia", "subcountry": "Selangor"}, "Kuantan": {"country": "Malaysia", "subcountry": "Pahang"}, "Batu Gajah": {"country": "Malaysia", "subcountry": "Perak"}, "Kampar": {"country": "Malaysia", "subcountry": "Perak"}, "Tapah Road": {"country": "Malaysia", "subcountry": "Perak"}, "Bidur": {"country": "Malaysia", "subcountry": "Perak"}, "Lumut": {"country": "Malaysia", "subcountry": "Perak"}, "Teluk Intan": {"country": "Malaysia", "subcountry": "Perak"}, "Gurun": {"country": "Malaysia", "subcountry": "Kedah"}, "Sungai Petani": {"country": "Malaysia", "subcountry": "Kedah"}, "Kepala Batas": {"country": "Malaysia", "subcountry": "Penang"}, "Tanah Merah": {"country": "Malaysia", "subcountry": "Kelantan"}, "Kuching": {"country": "Malaysia", "subcountry": "Sarawak"}, "Simanggang": {"country": "Malaysia", "subcountry": "Sarawak"}, "Sarikei": {"country": "Malaysia", "subcountry": "Sarawak"}, "Sibu": {"country": "Malaysia", "subcountry": "Sarawak"}, "Kangar": {"country": "Malaysia", "subcountry": "Perlis"}, "Jitra": {"country": "Malaysia", "subcountry": "Kedah"}, "Kuala Kedah": {"country": "Malaysia", "subcountry": "Kedah"}, "Alor Setar": {"country": "Malaysia", "subcountry": "Kedah"}, "Pasir Mas": {"country": "Malaysia", "subcountry": "Kelantan"}, "Kota Bharu": {"country": "Malaysia", "subcountry": "Kelantan"}, "Kudat": {"country": "Malaysia", "subcountry": "Sabah"}, "Kapit": {"country": "Malaysia", "subcountry": "Sarawak"}, "Bintulu": {"country": "Malaysia", "subcountry": "Sarawak"}, "Limbang": {"country": "Malaysia", "subcountry": "Sarawak"}, "Miri": {"country": "Malaysia", "subcountry": "Sarawak"}, "Ulu Tiram": {"country": "Malaysia", "subcountry": "Johor"}, "Tanjung Tokong": {"country": "Malaysia", "subcountry": "Penang"}, "Tanjung Sepat": {"country": "Malaysia", "subcountry": "Selangor"}, "Permatang Kuching": {"country": "Malaysia", "subcountry": "Penang"}, "Peringat": {"country": "Malaysia", "subcountry": "Kelantan"}, "Ladang Seri Kundang": {"country": "Malaysia", "subcountry": "Selangor"}, "Pantai Remis": {"country": "Malaysia", "subcountry": "Perak"}, "Kuang": {"country": "Malaysia", "subcountry": "Selangor"}, "Klebang Besar": {"country": "Malaysia", "subcountry": "Melaka"}, "Kampung Tanjung Karang": {"country": "Malaysia", "subcountry": "Selangor"}, "Kampung Sungai Ara": {"country": "Malaysia", "subcountry": "Penang"}, "Kampung Simpang Renggam": {"country": "Malaysia", "subcountry": "Johor"}, "Kampong Pangkal Kalong": {"country": "Malaysia", "subcountry": "Kelantan"}, "Kampong Masjid Tanah": {"country": "Malaysia", "subcountry": "Melaka"}, "Kampong Kadok": {"country": "Malaysia", "subcountry": "Kelantan"}, "Kampong Dungun": {"country": "Malaysia", "subcountry": "Perak"}, "Kampung Bukit Baharu": {"country": "Malaysia", "subcountry": "Melaka"}, "Kampung Baru Subang": {"country": "Malaysia", "subcountry": "Selangor"}, "Kampung Baharu Nilai": {"country": "Malaysia", "subcountry": "Negeri Sembilan"}, "Kampong Baharu Balakong": {"country": "Malaysia", "subcountry": "Selangor"}, "Kampung Ayer Molek": {"country": "Malaysia", "subcountry": "Melaka"}, "Bukit Rambai": {"country": "Malaysia", "subcountry": "Melaka"}, "Bentong Town": {"country": "Malaysia", "subcountry": "Pahang"}, "Batu Berendam": {"country": "Malaysia", "subcountry": "Melaka"}, "Putrajaya": {"country": "Malaysia", "subcountry": "Putrajaya"}, "Bandar Labuan": {"country": "Malaysia", "subcountry": "Sabah"}, "Subang Jaya": {"country": "Malaysia", "subcountry": "Selangor"}, "Putra Heights": {"country": "Malaysia", "subcountry": "Selangor"}, "Pantai Cenang": {"country": "Malaysia", "subcountry": "Perlis"}, "Xai-Xai": {"country": "Mozambique", "subcountry": "Gaza"}, "Dondo": {"country": "Mozambique", "subcountry": "Sofala"}, "Macia": {"country": "Mozambique", "subcountry": "Gaza"}, "Tete": {"country": "Mozambique", "subcountry": "Tete"}, "Ressano Garcia": {"country": "Mozambique", "subcountry": "Maputo"}, "Quelimane": {"country": "Mozambique", "subcountry": "Zamb\u00e9zia"}, "Pemba": {"country": "Mozambique", "subcountry": "Cabo Delgado"}, "Nampula": {"country": "Mozambique", "subcountry": "Nampula"}, "Nacala": {"country": "Mozambique", "subcountry": "Nampula"}, "Montepuez": {"country": "Mozambique", "subcountry": "Cabo Delgado"}, "Moc\u00edmboa": {"country": "Mozambique", "subcountry": "Cabo Delgado"}, "Ilha De Mo\u00e7ambique": {"country": "Mozambique", "subcountry": "Nampula"}, "Maxixe": {"country": "Mozambique", "subcountry": "Inhambane"}, "Matola": {"country": "Mozambique", "subcountry": "Maputo"}, "Maputo": {"country": "Mozambique", "subcountry": "Maputo City"}, "Manjacaze": {"country": "Mozambique", "subcountry": "Gaza"}, "Lichinga": {"country": "Mozambique", "subcountry": "Niassa"}, "Inhambane": {"country": "Mozambique", "subcountry": "Inhambane"}, "Cuamba": {"country": "Mozambique", "subcountry": "Niassa"}, "Chokw\u00e9": {"country": "Mozambique", "subcountry": "Gaza"}, "Chimoio": {"country": "Mozambique", "subcountry": "Manica"}, "Chibuto": {"country": "Mozambique", "subcountry": "Gaza"}, "Beira": {"country": "Mozambique", "subcountry": "Sofala"}, "Ant\u00f3nio Enes": {"country": "Mozambique", "subcountry": "Nampula"}, "Mutu\u00e1li": {"country": "Mozambique", "subcountry": "Nampula"}, "Katima Mulilo": {"country": "Namibia", "subcountry": "Zambezi"}, "Windhoek": {"country": "Namibia", "subcountry": "Khomas"}, "Swakopmund": {"country": "Namibia", "subcountry": "Erongo"}, "Rundu": {"country": "Namibia", "subcountry": "Kavango East"}, "Rehoboth": {"country": "Namibia", "subcountry": "Hardap"}, "Otjiwarongo": {"country": "Namibia", "subcountry": "Otjozondjupa"}, "Oshakati": {"country": "Namibia", "subcountry": "Oshana"}, "Okahandja": {"country": "Namibia", "subcountry": "Otjozondjupa"}, "L\u00fcderitz": {"country": "Namibia", "subcountry": "Karas"}, "Keetmanshoop": {"country": "Namibia", "subcountry": "Karas"}, "Grootfontein": {"country": "Namibia", "subcountry": "Otjozondjupa"}, "Gobabis": {"country": "Namibia", "subcountry": "Omaheke"}, "Walvis Bay": {"country": "Namibia", "subcountry": "Erongo"}, "Noum\u00e9a": {"country": "New Caledonia", "subcountry": "South Province"}, "Mont-Dore": {"country": "New Caledonia", "subcountry": "South Province"}, "Dumb\u00e9a": {"country": "New Caledonia", "subcountry": "South Province"}, "Birni N Konni": {"country": "Niger", "subcountry": "Tahoua"}, "Zinder": {"country": "Niger", "subcountry": "Zinder"}, "Tillab\u00e9ri": {"country": "Niger", "subcountry": "Tillab\u00e9ri"}, "Tibiri": {"country": "Niger", "subcountry": "Maradi"}, "Tessaoua": {"country": "Niger", "subcountry": "Maradi"}, "T\u00e9ra": {"country": "Niger", "subcountry": "Tillab\u00e9ri"}, "Tanout": {"country": "Niger", "subcountry": "Zinder"}, "Tahoua": {"country": "Niger", "subcountry": "Tahoua"}, "Niamey": {"country": "Niger", "subcountry": "Niamey"}, "Nguigmi": {"country": "Niger", "subcountry": "Diffa"}, "Mirriah": {"country": "Niger", "subcountry": "Zinder"}, "Mayahi": {"country": "Niger", "subcountry": "Maradi"}, "Matamey": {"country": "Niger", "subcountry": "Zinder"}, "Maradi": {"country": "Niger", "subcountry": "Maradi"}, "Magaria": {"country": "Niger", "subcountry": "Zinder"}, "Madaoua": {"country": "Niger", "subcountry": "Tahoua"}, "Ill\u00e9la": {"country": "Niger", "subcountry": "Tahoua"}, "Dosso": {"country": "Niger", "subcountry": "Dosso"}, "Dogondoutchi": {"country": "Niger", "subcountry": "Dosso"}, "Diffa": {"country": "Niger", "subcountry": "Diffa"}, "Dakoro": {"country": "Niger", "subcountry": "Maradi"}, "Ayorou": {"country": "Niger", "subcountry": "Tillab\u00e9ri"}, "Alaghsas": {"country": "Niger", "subcountry": "Agadez"}, "Agadez": {"country": "Niger", "subcountry": "Agadez"}, "Zuru": {"country": "Nigeria", "subcountry": "Kebbi"}, "Zungeru": {"country": "Nigeria", "subcountry": "Niger"}, "Zaria": {"country": "Nigeria", "subcountry": "Kaduna"}, "Yola": {"country": "Nigeria", "subcountry": "Adamawa"}, "Yenagoa": {"country": "Nigeria", "subcountry": "Bayelsa"}, "Wukari": {"country": "Nigeria", "subcountry": "Taraba"}, "Wudil": {"country": "Nigeria", "subcountry": "Kano"}, "Warri": {"country": "Nigeria", "subcountry": "Delta"}, "Uyo": {"country": "Nigeria", "subcountry": "Akwa Ibom"}, "Uromi": {"country": "Nigeria", "subcountry": "Edo"}, "Umuahia": {"country": "Nigeria", "subcountry": "Abia"}, "Ughelli": {"country": "Nigeria", "subcountry": "Delta"}, "Ugep": {"country": "Nigeria", "subcountry": "Cross River"}, "Uga": {"country": "Nigeria", "subcountry": "Anambra"}, "Ubiaja": {"country": "Nigeria", "subcountry": "Edo"}, "Tegina": {"country": "Nigeria", "subcountry": "Niger"}, "Tambuwal": {"country": "Nigeria", "subcountry": "Sokoto"}, "Talata Mafara": {"country": "Nigeria", "subcountry": "Zamfara"}, "Takum": {"country": "Nigeria", "subcountry": "Benue"}, "Suleja": {"country": "Nigeria", "subcountry": "Niger"}, "Sokoto": {"country": "Nigeria", "subcountry": "Sokoto"}, "Soba": {"country": "Nigeria", "subcountry": "Kaduna"}, "Saki": {"country": "Nigeria", "subcountry": "Oyo"}, "Shagamu": {"country": "Nigeria", "subcountry": "Ogun"}, "Sapele": {"country": "Nigeria", "subcountry": "Delta"}, "Rijau": {"country": "Nigeria", "subcountry": "Niger"}, "Rano": {"country": "Nigeria", "subcountry": "Kano"}, "Potiskum": {"country": "Nigeria", "subcountry": "Yobe"}, "Port Harcourt": {"country": "Nigeria", "subcountry": "Rivers"}, "Pindiga": {"country": "Nigeria", "subcountry": "Gombe"}, "Patigi": {"country": "Nigeria", "subcountry": "Kwara"}, "Pankshin": {"country": "Nigeria", "subcountry": "Plateau"}, "Ozubulu": {"country": "Nigeria", "subcountry": "Anambra"}, "Oyo": {"country": "Nigeria", "subcountry": "Oyo"}, "Oyan": {"country": "Nigeria", "subcountry": "Osun"}, "Owo": {"country": "Nigeria", "subcountry": "Ondo"}, "Owerri": {"country": "Nigeria", "subcountry": "Imo"}, "Otukpa": {"country": "Nigeria", "subcountry": "Benue"}, "Otan Ayegbaju": {"country": "Nigeria", "subcountry": "Osun"}, "Osogbo": {"country": "Nigeria", "subcountry": "Osun"}, "Orita Eruwa": {"country": "Nigeria", "subcountry": "Oyo"}, "Onitsha": {"country": "Nigeria", "subcountry": "Anambra"}, "Ondo": {"country": "Nigeria", "subcountry": "Ondo"}, "Olupona": {"country": "Nigeria", "subcountry": "Osun"}, "Okuta": {"country": "Nigeria", "subcountry": "Kwara"}, "Okrika": {"country": "Nigeria", "subcountry": "Rivers"}, "Okigwe": {"country": "Nigeria", "subcountry": "Imo"}, "Okene": {"country": "Nigeria", "subcountry": "Kogi"}, "Oke Mesi": {"country": "Nigeria", "subcountry": "Osun"}, "Oke Ila": {"country": "Nigeria", "subcountry": "Ekiti"}, "Ohafia-Ifigh": {"country": "Nigeria", "subcountry": "Abia"}, "Ogwashi-Uku": {"country": "Nigeria", "subcountry": "Delta"}, "Oguta": {"country": "Nigeria", "subcountry": "Imo"}, "Ogoja": {"country": "Nigeria", "subcountry": "Cross River"}, "Ogaminana": {"country": "Nigeria", "subcountry": "Kogi"}, "Offa": {"country": "Nigeria", "subcountry": "Kwara"}, "Ode": {"country": "Nigeria", "subcountry": "Ondo"}, "Obudu": {"country": "Nigeria", "subcountry": "Cross River"}, "Obonoma": {"country": "Nigeria", "subcountry": "Rivers"}, "Numan": {"country": "Nigeria", "subcountry": "Adamawa"}, "Nsukka": {"country": "Nigeria", "subcountry": "Enugu"}, "Nnewi": {"country": "Nigeria", "subcountry": "Anambra"}, "Nkwerre": {"country": "Nigeria", "subcountry": "Imo"}, "Nkpor": {"country": "Nigeria", "subcountry": "Anambra"}, "Nguru": {"country": "Nigeria", "subcountry": "Yobe"}, "Nasarawa": {"country": "Nigeria", "subcountry": "Nassarawa"}, "Nafada": {"country": "Nigeria", "subcountry": "Gombe"}, "Mubi": {"country": "Nigeria", "subcountry": "Adamawa"}, "Moriki": {"country": "Nigeria", "subcountry": "Zamfara"}, "Monguno": {"country": "Nigeria", "subcountry": "Borno"}, "Mokwa": {"country": "Nigeria", "subcountry": "Niger"}, "Modakeke": {"country": "Nigeria", "subcountry": "Osun"}, "Minna": {"country": "Nigeria", "subcountry": "Niger"}, "Marte": {"country": "Nigeria", "subcountry": "Borno"}, "Malumfashi": {"country": "Nigeria", "subcountry": "Katsina"}, "Makurdi": {"country": "Nigeria", "subcountry": "Benue"}, "Makoko": {"country": "Nigeria", "subcountry": "Lagos"}, "Maiduguri": {"country": "Nigeria", "subcountry": "Borno"}, "Magumeri": {"country": "Nigeria", "subcountry": "Borno"}, "Lokoja": {"country": "Nigeria", "subcountry": "Kogi"}, "Lere": {"country": "Nigeria", "subcountry": "Kaduna"}, "Lapai": {"country": "Nigeria", "subcountry": "Niger"}, "Lalupon": {"country": "Nigeria", "subcountry": "Oyo"}, "Lagos": {"country": "Portugal", "subcountry": "Faro"}, "Lafiagi": {"country": "Nigeria", "subcountry": "Kwara"}, "Lafia": {"country": "Nigeria", "subcountry": "Nassarawa"}, "Kwale": {"country": "Nigeria", "subcountry": "Delta"}, "Kumo": {"country": "Nigeria", "subcountry": "Gombe"}, "Kumagunnam": {"country": "Nigeria", "subcountry": "Yobe"}, "Kukawa": {"country": "Nigeria", "subcountry": "Borno"}, "Kuje": {"country": "Nigeria", "subcountry": "Abuja Federal Capital Territory"}, "Kontagora": {"country": "Nigeria", "subcountry": "Niger"}, "Kiyawa": {"country": "Nigeria", "subcountry": "Jigawa"}, "Kisi": {"country": "Nigeria", "subcountry": "Oyo"}, "Keffi": {"country": "Nigeria", "subcountry": "Nassarawa"}, "Kaura Namoda": {"country": "Nigeria", "subcountry": "Zamfara"}, "Katsina-Ala": {"country": "Nigeria", "subcountry": "Benue"}, "Katsina": {"country": "Nigeria", "subcountry": "Katsina"}, "Kari": {"country": "Nigeria", "subcountry": "Bauchi"}, "Kano": {"country": "Nigeria", "subcountry": "Kano"}, "Kamba": {"country": "Nigeria", "subcountry": "Kebbi"}, "Kaiama": {"country": "Nigeria", "subcountry": "Kwara"}, "Kagoro": {"country": "Nigeria", "subcountry": "Kaduna"}, "Kafanchan": {"country": "Nigeria", "subcountry": "Kaduna"}, "Kaduna": {"country": "Nigeria", "subcountry": "Kaduna"}, "Kachia": {"country": "Nigeria", "subcountry": "Kaduna"}, "Kabba": {"country": "Nigeria", "subcountry": "Kogi"}, "Jos": {"country": "Nigeria", "subcountry": "Plateau"}, "Jimeta": {"country": "Nigeria", "subcountry": "Adamawa"}, "Jega": {"country": "Nigeria", "subcountry": "Kebbi"}, "Jebba": {"country": "Nigeria", "subcountry": "Kwara"}, "Jalingo": {"country": "Nigeria", "subcountry": "Taraba"}, "Iwo": {"country": "Nigeria", "subcountry": "Osun"}, "Isieke": {"country": "Nigeria", "subcountry": "Ebonyi"}, "Ise-Ekiti": {"country": "Nigeria", "subcountry": "Ekiti"}, "Isanlu-Itedoijowa": {"country": "Nigeria", "subcountry": "Kogi"}, "Ipoti": {"country": "Nigeria", "subcountry": "Ekiti"}, "Iperu": {"country": "Nigeria", "subcountry": "Ogun"}, "Inisa": {"country": "Nigeria", "subcountry": "Osun"}, "Ilorin": {"country": "Nigeria", "subcountry": "Kwara"}, "Ilobu": {"country": "Nigeria", "subcountry": "Osun"}, "Illela": {"country": "Nigeria", "subcountry": "Sokoto"}, "Ilesa": {"country": "Nigeria", "subcountry": "Osun"}, "Ilaro": {"country": "Nigeria", "subcountry": "Ogun"}, "Ila Orangun": {"country": "Nigeria", "subcountry": "Osun"}, "Ikot Ekpene": {"country": "Nigeria", "subcountry": "Akwa Ibom"}, "Ikom": {"country": "Nigeria", "subcountry": "Cross River"}, "Ikirun": {"country": "Nigeria", "subcountry": "Osun"}, "Ikire": {"country": "Nigeria", "subcountry": "Osun"}, "Ikere-Ekiti": {"country": "Nigeria", "subcountry": "Ekiti"}, "Ikeja": {"country": "Nigeria", "subcountry": "Lagos"}, "Ijero-Ekiti": {"country": "Nigeria", "subcountry": "Ekiti"}, "Ijebu-Ode": {"country": "Nigeria", "subcountry": "Ogun"}, "Ijebu-Jesa": {"country": "Nigeria", "subcountry": "Osun"}, "Ijebu-Igbo": {"country": "Nigeria", "subcountry": "Ogun"}, "Ihiala": {"country": "Nigeria", "subcountry": "Anambra"}, "Igede-Ekiti": {"country": "Nigeria", "subcountry": "Ekiti"}, "Igbo-Ukwu": {"country": "Nigeria", "subcountry": "Anambra"}, "Igbor": {"country": "Nigeria", "subcountry": "Benue"}, "Igbo-Ora": {"country": "Nigeria", "subcountry": "Oyo"}, "Igboho": {"country": "Nigeria", "subcountry": "Oyo"}, "Igbeti": {"country": "Nigeria", "subcountry": "Oyo"}, "Igbara-Odo": {"country": "Nigeria", "subcountry": "Ekiti"}, "Ifo": {"country": "Nigeria", "subcountry": "Ogun"}, "Idanre": {"country": "Nigeria", "subcountry": "Ondo"}, "Idah": {"country": "Nigeria", "subcountry": "Kogi"}, "Ibeto": {"country": "Nigeria", "subcountry": "Niger"}, "Ibadan": {"country": "Nigeria", "subcountry": "Oyo"}, "Hadejia": {"country": "Nigeria", "subcountry": "Jigawa"}, "Gwoza": {"country": "Nigeria", "subcountry": "Borno"}, "Gwarzo": {"country": "Nigeria", "subcountry": "Kano"}, "Gwaram": {"country": "Nigeria", "subcountry": "Jigawa"}, "Gwadabawa": {"country": "Nigeria", "subcountry": "Sokoto"}, "Gusau": {"country": "Nigeria", "subcountry": "Zamfara"}, "Gummi": {"country": "Nigeria", "subcountry": "Zamfara"}, "Gumel": {"country": "Nigeria", "subcountry": "Jigawa"}, "Gombi": {"country": "Nigeria", "subcountry": "Adamawa"}, "Gombe": {"country": "Nigeria", "subcountry": "Gombe"}, "Gembu": {"country": "Nigeria", "subcountry": "Taraba"}, "Geidam": {"country": "Nigeria", "subcountry": "Yobe"}, "Gbongan": {"country": "Nigeria", "subcountry": "Osun"}, "Gashua": {"country": "Nigeria", "subcountry": "Yobe"}, "Garko": {"country": "Nigeria", "subcountry": "Gombe"}, "Ganye": {"country": "Nigeria", "subcountry": "Adamawa"}, "Gamboru": {"country": "Nigeria", "subcountry": "Borno"}, "Funtua": {"country": "Nigeria", "subcountry": "Katsina"}, "Fiditi": {"country": "Nigeria", "subcountry": "Oyo"}, "Ezza-Ohu": {"country": "Nigeria", "subcountry": "Ebonyi"}, "Esuk Oron": {"country": "Nigeria", "subcountry": "Akwa Ibom"}, "Epe": {"country": "Netherlands", "subcountry": "Gelderland"}, "Enugu-Ukwu": {"country": "Nigeria", "subcountry": "Anambra"}, "Enugu-Ezike": {"country": "Nigeria", "subcountry": "Enugu"}, "Enugu": {"country": "Nigeria", "subcountry": "Enugu"}, "Emure-Ekiti": {"country": "Nigeria", "subcountry": "Ekiti"}, "Elele": {"country": "Nigeria", "subcountry": "Rivers"}, "Ekpoma": {"country": "Nigeria", "subcountry": "Edo"}, "Eket": {"country": "Nigeria", "subcountry": "Akwa Ibom"}, "Ejigbo": {"country": "Nigeria", "subcountry": "Osun"}, "Eha Amufu": {"country": "Nigeria", "subcountry": "Enugu"}, "Egbe": {"country": "Nigeria", "subcountry": "Kogi"}, "Effon Alaiye": {"country": "Nigeria", "subcountry": "Osun"}, "Effium": {"country": "Nigeria", "subcountry": "Ebonyi"}, "Ebute Ikorodu": {"country": "Nigeria", "subcountry": "Lagos"}, "Dutsen Wai": {"country": "Nigeria", "subcountry": "Kaduna"}, "Dutse": {"country": "Nigeria", "subcountry": "Jigawa"}, "Dukku": {"country": "Nigeria", "subcountry": "Gombe"}, "Doma": {"country": "Nigeria", "subcountry": "Nassarawa"}, "Dikwa": {"country": "Nigeria", "subcountry": "Borno"}, "Deba": {"country": "Nigeria", "subcountry": "Gombe"}, "Daura": {"country": "Nigeria", "subcountry": "Yobe"}, "Darazo": {"country": "Nigeria", "subcountry": "Bauchi"}, "Damboa": {"country": "Nigeria", "subcountry": "Borno"}, "Damaturu": {"country": "Nigeria", "subcountry": "Yobe"}, "Calabar": {"country": "Nigeria", "subcountry": "Cross River"}, "Burutu": {"country": "Nigeria", "subcountry": "Delta"}, "Bukuru": {"country": "Nigeria", "subcountry": "Plateau"}, "Buguma": {"country": "Nigeria", "subcountry": "Rivers"}, "Bonny": {"country": "Nigeria", "subcountry": "Rivers"}, "Bode Saadu": {"country": "Nigeria", "subcountry": "Kwara"}, "Biu": {"country": "Nigeria", "subcountry": "Borno"}, "Birnin Kudu": {"country": "Nigeria", "subcountry": "Jigawa"}, "Birnin Kebbi": {"country": "Nigeria", "subcountry": "Kebbi"}, "Sofo-Birnin-Gwari": {"country": "Nigeria", "subcountry": "Kaduna"}, "Billiri": {"country": "Nigeria", "subcountry": "Gombe"}, "Bida": {"country": "Nigeria", "subcountry": "Niger"}, "Benin City": {"country": "Nigeria", "subcountry": "Edo"}, "Bende": {"country": "Nigeria", "subcountry": "Abia"}, "Beli": {"country": "Nigeria", "subcountry": "Taraba"}, "Bauchi": {"country": "Nigeria", "subcountry": "Bauchi"}, "Baro": {"country": "Nigeria", "subcountry": "Niger"}, "Bama": {"country": "Nigeria", "subcountry": "Borno"}, "Badagry": {"country": "Nigeria", "subcountry": "Lagos"}, "Babana": {"country": "Nigeria", "subcountry": "Niger"}, "Azare": {"country": "Nigeria", "subcountry": "Bauchi"}, "Awka": {"country": "Nigeria", "subcountry": "Anambra"}, "Awgu": {"country": "Nigeria", "subcountry": "Enugu"}, "Auchi": {"country": "Nigeria", "subcountry": "Edo"}, "Asaba": {"country": "Nigeria", "subcountry": "Delta"}, "Argungu": {"country": "Nigeria", "subcountry": "Kebbi"}, "Aramoko-Ekiti": {"country": "Nigeria", "subcountry": "Ekiti"}, "Apomu": {"country": "Nigeria", "subcountry": "Osun"}, "Anchau": {"country": "Nigeria", "subcountry": "Kaduna"}, "Amaigbo": {"country": "Nigeria", "subcountry": "Abia"}, "Akwanga": {"country": "Nigeria", "subcountry": "Nassarawa"}, "Akure": {"country": "Nigeria", "subcountry": "Ondo"}, "Aku": {"country": "Nigeria", "subcountry": "Enugu"}, "Ajaokuta": {"country": "Nigeria", "subcountry": "Kogi"}, "Agulu": {"country": "Nigeria", "subcountry": "Anambra"}, "Agbor": {"country": "Nigeria", "subcountry": "Delta"}, "Afikpo": {"country": "Nigeria", "subcountry": "Ebonyi"}, "Ado Odo": {"country": "Nigeria", "subcountry": "Ogun"}, "Ado-Ekiti": {"country": "Nigeria", "subcountry": "Ekiti"}, "Abuja": {"country": "Nigeria", "subcountry": "Abuja Federal Capital Territory"}, "Abeokuta": {"country": "Nigeria", "subcountry": "Ogun"}, "Abakaliki": {"country": "Nigeria", "subcountry": "Ebonyi"}, "Aba": {"country": "Nigeria", "subcountry": "Abia"}, "Degema Hulk": {"country": "Nigeria", "subcountry": "Rivers"}, "Tipitapa": {"country": "Nicaragua", "subcountry": "Managua"}, "Somoto": {"country": "Nicaragua", "subcountry": "Madriz"}, "Somotillo": {"country": "Nicaragua", "subcountry": "Chinandega"}, "Siuna": {"country": "Nicaragua", "subcountry": "Atl\u00e1ntico Norte (RAAN)"}, "San Rafael Del Sur": {"country": "Nicaragua", "subcountry": "Managua"}, "Rivas": {"country": "Nicaragua", "subcountry": "Rivas"}, "Rama": {"country": "Nicaragua", "subcountry": "Atl\u00e1ntico Sur"}, "Puerto Cabezas": {"country": "Nicaragua", "subcountry": "Atl\u00e1ntico Norte (RAAN)"}, "Ocotal": {"country": "Nicaragua", "subcountry": "Nueva Segovia"}, "Nueva Guinea": {"country": "Nicaragua", "subcountry": "Atl\u00e1ntico Sur"}, "Nandaime": {"country": "Nicaragua", "subcountry": "Granada"}, "Nagarote": {"country": "Nicaragua", "subcountry": "Le\u00f3n"}, "Matagalpa": {"country": "Nicaragua", "subcountry": "Matagalpa"}, "Masaya": {"country": "Nicaragua", "subcountry": "Masaya"}, "Masatepe": {"country": "Nicaragua", "subcountry": "Masaya"}, "Managua": {"country": "Nicaragua", "subcountry": "Managua"}, "La Paz Centro": {"country": "Nicaragua", "subcountry": "Le\u00f3n"}, "Juigalpa": {"country": "Nicaragua", "subcountry": "Chontales"}, "Jinotepe": {"country": "Nicaragua", "subcountry": "Carazo"}, "Jinotega": {"country": "Nicaragua", "subcountry": "Jinotega"}, "Estel\u00ed": {"country": "Nicaragua", "subcountry": "Estel\u00ed"}, "El Viejo": {"country": "Nicaragua", "subcountry": "Chinandega"}, "El Crucero": {"country": "Nicaragua", "subcountry": "Managua"}, "Diriamba": {"country": "Nicaragua", "subcountry": "Carazo"}, "Chinandega": {"country": "Nicaragua", "subcountry": "Chinandega"}, "Chichigalpa": {"country": "Nicaragua", "subcountry": "Chinandega"}, "Camoapa": {"country": "Nicaragua", "subcountry": "Boaco"}, "Boaco": {"country": "Nicaragua", "subcountry": "Boaco"}, "Bluefields": {"country": "Nicaragua", "subcountry": "Atl\u00e1ntico Sur"}, "Ciudad Sandino": {"country": "Nicaragua", "subcountry": "Managua"}, "Zwolle": {"country": "Netherlands", "subcountry": "Overijssel"}, "Zutphen": {"country": "Netherlands", "subcountry": "Gelderland"}, "Zundert": {"country": "Netherlands", "subcountry": "North Brabant"}, "Zoetermeer": {"country": "Netherlands", "subcountry": "South Holland"}, "Zevenaar": {"country": "Netherlands", "subcountry": "Gelderland"}, "Zeist": {"country": "Netherlands", "subcountry": "Utrecht"}, "Zeewolde": {"country": "Netherlands", "subcountry": "Flevoland"}, "Zandvoort": {"country": "Netherlands", "subcountry": "North Holland"}, "Zaltbommel": {"country": "Netherlands", "subcountry": "Gelderland"}, "Zaanstad": {"country": "Netherlands", "subcountry": "North Holland"}, "Zaandam": {"country": "Netherlands", "subcountry": "North Holland"}, "Wolvega": {"country": "Netherlands", "subcountry": "Friesland"}, "Woerden": {"country": "Netherlands", "subcountry": "Utrecht"}, "Woensdrecht": {"country": "Netherlands", "subcountry": "North Brabant"}, "Wisch": {"country": "Netherlands", "subcountry": "Gelderland"}, "Winterswijk": {"country": "Netherlands", "subcountry": "Gelderland"}, "Winschoten": {"country": "Netherlands", "subcountry": "Groningen"}, "Wijk Bij Duurstede": {"country": "Netherlands", "subcountry": "Utrecht"}, "Wijchen": {"country": "Netherlands", "subcountry": "Gelderland"}, "Wierden": {"country": "Netherlands", "subcountry": "Overijssel"}, "Westervoort": {"country": "Netherlands", "subcountry": "Gelderland"}, "Werkendam": {"country": "Netherlands", "subcountry": "North Brabant"}, "Weesp": {"country": "Netherlands", "subcountry": "North Holland"}, "Weert": {"country": "Netherlands", "subcountry": "Limburg"}, "Wassenaar": {"country": "Netherlands", "subcountry": "South Holland"}, "Wageningen": {"country": "Netherlands", "subcountry": "Gelderland"}, "Waddinxveen": {"country": "Netherlands", "subcountry": "South Holland"}, "Waalwijk": {"country": "Netherlands", "subcountry": "North Brabant"}, "Waalre": {"country": "Netherlands", "subcountry": "North Brabant"}, "Vught": {"country": "Netherlands", "subcountry": "North Brabant"}, "Voorst": {"country": "Netherlands", "subcountry": "Gelderland"}, "Voorschoten": {"country": "Netherlands", "subcountry": "South Holland"}, "Voorhout": {"country": "Netherlands", "subcountry": "South Holland"}, "Voorburg": {"country": "Netherlands", "subcountry": "South Holland"}, "Volendam": {"country": "Netherlands", "subcountry": "North Holland"}, "Vlissingen": {"country": "Netherlands", "subcountry": "Zeeland"}, "Vlagtwedde": {"country": "Netherlands", "subcountry": "Groningen"}, "Vlaardingen": {"country": "Netherlands", "subcountry": "South Holland"}, "Vianen": {"country": "Netherlands", "subcountry": "Utrecht"}, "Venray": {"country": "Netherlands", "subcountry": "Limburg"}, "Venlo": {"country": "Netherlands", "subcountry": "Limburg"}, "Velsen-Zuid": {"country": "Netherlands", "subcountry": "North Holland"}, "Velp": {"country": "Netherlands", "subcountry": "Gelderland"}, "Veldhoven": {"country": "Netherlands", "subcountry": "North Brabant"}, "Veghel": {"country": "Netherlands", "subcountry": "North Brabant"}, "Veere": {"country": "Netherlands", "subcountry": "Zeeland"}, "Veenendaal": {"country": "Netherlands", "subcountry": "Utrecht"}, "Veendam": {"country": "Netherlands", "subcountry": "Groningen"}, "Valkenswaard": {"country": "Netherlands", "subcountry": "North Brabant"}, "Utrecht": {"country": "Netherlands", "subcountry": "Utrecht"}, "Urk": {"country": "Netherlands", "subcountry": "Flevoland"}, "Uithoorn": {"country": "Netherlands", "subcountry": "North Holland"}, "Uden": {"country": "Netherlands", "subcountry": "North Brabant"}, "Tubbergen": {"country": "Netherlands", "subcountry": "Overijssel"}, "Tongelre": {"country": "Netherlands", "subcountry": "North Brabant"}, "Tilburg": {"country": "Netherlands", "subcountry": "North Brabant"}, "Tiel": {"country": "Netherlands", "subcountry": "Gelderland"}, "Terneuzen": {"country": "Netherlands", "subcountry": "Zeeland"}, "Tegelen": {"country": "Netherlands", "subcountry": "Limburg"}, "Steenwijk": {"country": "Netherlands", "subcountry": "Overijssel"}, "Steenbergen": {"country": "Netherlands", "subcountry": "North Brabant"}, "Staphorst": {"country": "Netherlands", "subcountry": "Overijssel"}, "Stadskanaal": {"country": "Netherlands", "subcountry": "Groningen"}, "Spijkenisse": {"country": "Netherlands", "subcountry": "South Holland"}, "Someren": {"country": "Netherlands", "subcountry": "North Brabant"}, "Sneek": {"country": "Netherlands", "subcountry": "Friesland"}, "Sliedrecht": {"country": "Netherlands", "subcountry": "South Holland"}, "Sittard": {"country": "Netherlands", "subcountry": "Limburg"}, "Sint-Oedenrode": {"country": "Netherlands", "subcountry": "North Brabant"}, "'S-Hertogenbosch": {"country": "Netherlands", "subcountry": "North Brabant"}, "'S-Gravenzande": {"country": "Netherlands", "subcountry": "South Holland"}, "The Hague": {"country": "Netherlands", "subcountry": "South Holland"}, "Schijndel": {"country": "Netherlands", "subcountry": "North Brabant"}, "Schiedam": {"country": "Netherlands", "subcountry": "South Holland"}, "Scheveningen": {"country": "Netherlands", "subcountry": "South Holland"}, "Schagen": {"country": "Netherlands", "subcountry": "North Holland"}, "Rucphen": {"country": "Netherlands", "subcountry": "North Brabant"}, "Rotterdam": {"country": "United States", "subcountry": "New York"}, "Roosendaal": {"country": "Netherlands", "subcountry": "North Brabant"}, "Roermond": {"country": "Netherlands", "subcountry": "Limburg"}, "Rijswijk": {"country": "Netherlands", "subcountry": "South Holland"}, "Ridderkerk": {"country": "Netherlands", "subcountry": "South Holland"}, "Rhoon": {"country": "Netherlands", "subcountry": "South Holland"}, "Rhenen": {"country": "Netherlands", "subcountry": "Utrecht"}, "Raalte": {"country": "Netherlands", "subcountry": "Overijssel"}, "Putten": {"country": "Netherlands", "subcountry": "Gelderland"}, "Purmerend": {"country": "Netherlands", "subcountry": "North Holland"}, "Pijnacker": {"country": "Netherlands", "subcountry": "South Holland"}, "Papendrecht": {"country": "Netherlands", "subcountry": "South Holland"}, "Oud-Beijerland": {"country": "Netherlands", "subcountry": "South Holland"}, "Oss": {"country": "Netherlands", "subcountry": "North Brabant"}, "Oosterhout": {"country": "Netherlands", "subcountry": "North Brabant"}, "Oldenzaal": {"country": "Netherlands", "subcountry": "Overijssel"}, "Oldebroek": {"country": "Netherlands", "subcountry": "Gelderland"}, "Oisterwijk": {"country": "Netherlands", "subcountry": "North Brabant"}, "Oegstgeest": {"country": "Netherlands", "subcountry": "South Holland"}, "Nuth": {"country": "Netherlands", "subcountry": "Limburg"}, "Nunspeet": {"country": "Netherlands", "subcountry": "Gelderland"}, "Nuenen": {"country": "Netherlands", "subcountry": "North Brabant"}, "Noordwijkerhout": {"country": "Netherlands", "subcountry": "South Holland"}, "Noordwijk-Binnen": {"country": "Netherlands", "subcountry": "South Holland"}, "Nijmegen": {"country": "Netherlands", "subcountry": "Gelderland"}, "Nijkerk": {"country": "Netherlands", "subcountry": "Gelderland"}, "Nieuwegein": {"country": "Netherlands", "subcountry": "Utrecht"}, "Nederweert": {"country": "Netherlands", "subcountry": "Limburg"}, "Naarden": {"country": "Netherlands", "subcountry": "North Holland"}, "Naaldwijk": {"country": "Netherlands", "subcountry": "South Holland"}, "Mijdrecht": {"country": "Netherlands", "subcountry": "Utrecht"}, "Middelharnis": {"country": "Netherlands", "subcountry": "South Holland"}, "Middelburg": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Meppel": {"country": "Netherlands", "subcountry": "Drenthe"}, "Meerssen": {"country": "Netherlands", "subcountry": "Limburg"}, "Medemblik": {"country": "Netherlands", "subcountry": "North Holland"}, "Maastricht": {"country": "Netherlands", "subcountry": "Limburg"}, "Maassluis": {"country": "Netherlands", "subcountry": "South Holland"}, "Maarssen": {"country": "Netherlands", "subcountry": "Utrecht"}, "Losser": {"country": "Netherlands", "subcountry": "Overijssel"}, "Loon Op Zand": {"country": "Netherlands", "subcountry": "North Brabant"}, "Lisse": {"country": "Netherlands", "subcountry": "South Holland"}, "Lindenholt": {"country": "Netherlands", "subcountry": "Gelderland"}, "Lichtenvoorde": {"country": "Netherlands", "subcountry": "Gelderland"}, "Leusden": {"country": "Netherlands", "subcountry": "Utrecht"}, "Lelystad": {"country": "Netherlands", "subcountry": "Flevoland"}, "Leiderdorp": {"country": "Netherlands", "subcountry": "South Holland"}, "Leiden": {"country": "Netherlands", "subcountry": "South Holland"}, "Leeuwarden": {"country": "Netherlands", "subcountry": "Friesland"}, "Leerdam": {"country": "Netherlands", "subcountry": "South Holland"}, "Krimpen Aan Den Ijssel": {"country": "Netherlands", "subcountry": "South Holland"}, "Korrewegwijk": {"country": "Netherlands", "subcountry": "Groningen"}, "Kerkrade": {"country": "Netherlands", "subcountry": "Limburg"}, "Katwijk Aan Zee": {"country": "Netherlands", "subcountry": "South Holland"}, "Kampen": {"country": "Netherlands", "subcountry": "Overijssel"}, "Ijsselstein": {"country": "Netherlands", "subcountry": "Utrecht"}, "Huizen": {"country": "Netherlands", "subcountry": "North Holland"}, "Houten": {"country": "Netherlands", "subcountry": "Utrecht"}, "Horst": {"country": "Netherlands", "subcountry": "Gelderland"}, "Hoorn": {"country": "Netherlands", "subcountry": "North Holland"}, "Hoogezand": {"country": "Netherlands", "subcountry": "Groningen"}, "Hoogeveen": {"country": "Netherlands", "subcountry": "Drenthe"}, "Hoofddorp": {"country": "Netherlands", "subcountry": "North Holland"}, "Hoge Vucht": {"country": "Netherlands", "subcountry": "North Brabant"}, "Hoensbroek": {"country": "Netherlands", "subcountry": "Limburg"}, "Hilversum": {"country": "Netherlands", "subcountry": "North Holland"}, "Hilvarenbeek": {"country": "Netherlands", "subcountry": "North Brabant"}, "Hillegom": {"country": "Netherlands", "subcountry": "South Holland"}, "Hengelo": {"country": "Netherlands", "subcountry": "Overijssel"}, "Hendrik-Ido-Ambacht": {"country": "Netherlands", "subcountry": "South Holland"}, "Helmond": {"country": "Netherlands", "subcountry": "North Brabant"}, "Hellevoetsluis": {"country": "Netherlands", "subcountry": "South Holland"}, "Heiloo": {"country": "Netherlands", "subcountry": "North Holland"}, "Heesch": {"country": "Netherlands", "subcountry": "North Brabant"}, "Heerlen": {"country": "Netherlands", "subcountry": "Limburg"}, "Heerhugowaard": {"country": "Netherlands", "subcountry": "North Holland"}, "Heerenveen": {"country": "Netherlands", "subcountry": "Friesland"}, "Heerde": {"country": "Netherlands", "subcountry": "Gelderland"}, "Heemstede": {"country": "Netherlands", "subcountry": "North Holland"}, "Heemskerk": {"country": "Netherlands", "subcountry": "North Holland"}, "Harlingen": {"country": "United States", "subcountry": "Texas"}, "Harenkarspel": {"country": "Netherlands", "subcountry": "North Holland"}, "Harderwijk": {"country": "Netherlands", "subcountry": "Gelderland"}, "Hardenberg": {"country": "Netherlands", "subcountry": "Overijssel"}, "Haarlem": {"country": "Netherlands", "subcountry": "North Holland"}, "Haaksbergen": {"country": "Netherlands", "subcountry": "Overijssel"}, "Groningen": {"country": "Netherlands", "subcountry": "Groningen"}, "Groesbeek": {"country": "Netherlands", "subcountry": "Gelderland"}, "Gouda": {"country": "Netherlands", "subcountry": "South Holland"}, "Gorinchem": {"country": "Netherlands", "subcountry": "South Holland"}, "Goirle": {"country": "Netherlands", "subcountry": "North Brabant"}, "Goes": {"country": "Netherlands", "subcountry": "Zeeland"}, "Gennep": {"country": "Netherlands", "subcountry": "Limburg"}, "Gendringen": {"country": "Netherlands", "subcountry": "Gelderland"}, "Geldrop": {"country": "Netherlands", "subcountry": "North Brabant"}, "Geldermalsen": {"country": "Netherlands", "subcountry": "Gelderland"}, "Geertruidenberg": {"country": "Netherlands", "subcountry": "North Brabant"}, "Ermelo": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Enschede": {"country": "Netherlands", "subcountry": "Overijssel"}, "Enkhuizen": {"country": "Netherlands", "subcountry": "North Holland"}, "Emmeloord": {"country": "Netherlands", "subcountry": "Flevoland"}, "Elst": {"country": "Netherlands", "subcountry": "Gelderland"}, "Elburg": {"country": "Netherlands", "subcountry": "Gelderland"}, "Eindhoven": {"country": "Netherlands", "subcountry": "North Brabant"}, "Eibergen": {"country": "Netherlands", "subcountry": "Gelderland"}, "Eersel": {"country": "Netherlands", "subcountry": "North Brabant"}, "Ede": {"country": "Netherlands", "subcountry": "Gelderland"}, "Duiven": {"country": "Netherlands", "subcountry": "Gelderland"}, "Druten": {"country": "Netherlands", "subcountry": "Gelderland"}, "Dronten": {"country": "Netherlands", "subcountry": "Flevoland"}, "Drimmelen": {"country": "Netherlands", "subcountry": "North Brabant"}, "Driebergen-Rijsenburg": {"country": "Netherlands", "subcountry": "Utrecht"}, "Drachten": {"country": "Netherlands", "subcountry": "Friesland"}, "Dordrecht": {"country": "Netherlands", "subcountry": "South Holland"}, "Dongen": {"country": "Netherlands", "subcountry": "North Brabant"}, "Doetinchem": {"country": "Netherlands", "subcountry": "Gelderland"}, "Diemen": {"country": "Netherlands", "subcountry": "North Holland"}, "Deventer": {"country": "Netherlands", "subcountry": "Overijssel"}, "Den Helder": {"country": "Netherlands", "subcountry": "North Holland"}, "Delfzijl": {"country": "Netherlands", "subcountry": "Groningen"}, "Delft": {"country": "Netherlands", "subcountry": "South Holland"}, "Delfshaven": {"country": "Netherlands", "subcountry": "South Holland"}, "De Bilt": {"country": "Netherlands", "subcountry": "Utrecht"}, "Dalfsen": {"country": "Netherlands", "subcountry": "Overijssel"}, "Culemborg": {"country": "Netherlands", "subcountry": "Gelderland"}, "Cuijk": {"country": "Netherlands", "subcountry": "North Brabant"}, "Cranendonck": {"country": "Netherlands", "subcountry": "North Brabant"}, "Castricum": {"country": "Netherlands", "subcountry": "North Holland"}, "Capelle Aan Den Ijssel": {"country": "Netherlands", "subcountry": "South Holland"}, "Bussum": {"country": "Netherlands", "subcountry": "North Holland"}, "Bunschoten": {"country": "Netherlands", "subcountry": "Utrecht"}, "Brunssum": {"country": "Netherlands", "subcountry": "Limburg"}, "Brummen": {"country": "Netherlands", "subcountry": "Gelderland"}, "Broek Op Langedijk": {"country": "Netherlands", "subcountry": "North Holland"}, "Broek In Waterland": {"country": "Netherlands", "subcountry": "North Holland"}, "Breda": {"country": "Netherlands", "subcountry": "North Brabant"}, "Boxtel": {"country": "Netherlands", "subcountry": "North Brabant"}, "Boskoop": {"country": "Netherlands", "subcountry": "South Holland"}, "Borssele": {"country": "Netherlands", "subcountry": "Zeeland"}, "Borne": {"country": "Netherlands", "subcountry": "Overijssel"}, "Born": {"country": "Netherlands", "subcountry": "Limburg"}, "Borger": {"country": "Netherlands", "subcountry": "Drenthe"}, "Bodegraven": {"country": "Netherlands", "subcountry": "South Holland"}, "Bloemendaal": {"country": "Netherlands", "subcountry": "North Holland"}, "Bladel": {"country": "Netherlands", "subcountry": "North Brabant"}, "Beverwijk": {"country": "Netherlands", "subcountry": "North Holland"}, "Beuningen": {"country": "Netherlands", "subcountry": "Gelderland"}, "Best": {"country": "Netherlands", "subcountry": "North Brabant"}, "Bergschenhoek": {"country": "Netherlands", "subcountry": "South Holland"}, "Bergeijk": {"country": "Netherlands", "subcountry": "North Brabant"}, "Bergen Op Zoom": {"country": "Netherlands", "subcountry": "North Brabant"}, "Benthuizen": {"country": "Netherlands", "subcountry": "South Holland"}, "Beek": {"country": "Netherlands", "subcountry": "Limburg"}, "Barneveld": {"country": "Netherlands", "subcountry": "Gelderland"}, "Barendrecht": {"country": "Netherlands", "subcountry": "South Holland"}, "Baarn": {"country": "Netherlands", "subcountry": "Utrecht"}, "Asten": {"country": "Netherlands", "subcountry": "North Brabant"}, "Assen": {"country": "Netherlands", "subcountry": "Drenthe"}, "Arnhem": {"country": "Netherlands", "subcountry": "Gelderland"}, "Apeldoorn": {"country": "Netherlands", "subcountry": "Gelderland"}, "Anloo": {"country": "Netherlands", "subcountry": "Drenthe"}, "Amsterdam": {"country": "United States", "subcountry": "New York"}, "Amstelveen": {"country": "Netherlands", "subcountry": "North Holland"}, "Amersfoort": {"country": "Netherlands", "subcountry": "Utrecht"}, "Alphen Aan Den Rijn": {"country": "Netherlands", "subcountry": "South Holland"}, "Almere Stad": {"country": "Netherlands", "subcountry": "Flevoland"}, "Almelo": {"country": "Netherlands", "subcountry": "Overijssel"}, "Alkmaar": {"country": "Netherlands", "subcountry": "North Holland"}, "Alblasserdam": {"country": "Netherlands", "subcountry": "South Holland"}, "Aalten": {"country": "Netherlands", "subcountry": "Gelderland"}, "Aalsmeer": {"country": "Netherlands", "subcountry": "North Holland"}, "Amsterdam-Zuidoost": {"country": "Netherlands", "subcountry": "North Holland"}, "Berkel En Rodenrijs": {"country": "Netherlands", "subcountry": "South Holland"}, "Ypenburg": {"country": "Netherlands", "subcountry": "South Holland"}, "Trondheim": {"country": "Norway", "subcountry": "S\u00f8r-Tr\u00f8ndelag"}, "Troms\u00f8": {"country": "Norway", "subcountry": "Troms"}, "T\u00f8nsberg": {"country": "Norway", "subcountry": "Vestfold"}, "Steinkjer": {"country": "Norway", "subcountry": "Nord-Tr\u00f8ndelag"}, "Stavanger": {"country": "Norway", "subcountry": "Rogaland"}, "Skien": {"country": "Norway", "subcountry": "Telemark"}, "Sarpsborg": {"country": "Norway", "subcountry": "\u00d8stfold"}, "Sandnes": {"country": "Norway", "subcountry": "Rogaland"}, "Sandefjord": {"country": "Norway", "subcountry": "Vestfold"}, "Porsgrunn": {"country": "Norway", "subcountry": "Telemark"}, "Oslo": {"country": "Norway", "subcountry": "Oslo"}, "Moss": {"country": "Norway", "subcountry": "\u00d8stfold"}, "Molde": {"country": "Norway", "subcountry": "M\u00f8re og Romsdal"}, "Mo I Rana": {"country": "Norway", "subcountry": "Nordland"}, "Lillehammer": {"country": "Norway", "subcountry": "Oppland"}, "Larvik": {"country": "Norway", "subcountry": "Vestfold"}, "Kristiansund": {"country": "Norway", "subcountry": "M\u00f8re og Romsdal"}, "Kristiansand": {"country": "Norway", "subcountry": "Vest-Agder"}, "Kongsberg": {"country": "Norway", "subcountry": "Buskerud"}, "Horten": {"country": "Norway", "subcountry": "Vestfold"}, "Haugesund": {"country": "Norway", "subcountry": "Rogaland"}, "Harstad": {"country": "Norway", "subcountry": "Troms"}, "Hamar": {"country": "Norway", "subcountry": "Hedmark"}, "Halden": {"country": "Norway", "subcountry": "\u00d8stfold"}, "Gj\u00f8vik": {"country": "Norway", "subcountry": "Oppland"}, "Fredrikstad": {"country": "Norway", "subcountry": "\u00d8stfold"}, "Drammen": {"country": "Norway", "subcountry": "Buskerud"}, "Bod\u00f8": {"country": "Norway", "subcountry": "Nordland"}, "Bergen": {"country": "Norway", "subcountry": "Hordaland"}, "Arendal": {"country": "Norway", "subcountry": "Aust-Agder"}, "\u00c5lesund": {"country": "Norway", "subcountry": "M\u00f8re og Romsdal"}, "Ask\u00f8y": {"country": "Norway", "subcountry": "Hordaland"}, "Ytrebygda": {"country": "Norway", "subcountry": "Hordaland"}, "W\u0101ling": {"country": "Nepal", "subcountry": "Western Region"}, "T\u012bk\u0101pur": {"country": "Nepal", "subcountry": "Far Western"}, "T\u0101nsen": {"country": "Nepal", "subcountry": "Western Region"}, "Sir\u0101h\u0101": {"country": "Nepal", "subcountry": "Eastern Region"}, "R\u0101jbir\u0101j": {"country": "Nepal", "subcountry": "Eastern Region"}, "Pokhara": {"country": "Nepal", "subcountry": "Western Region"}, "Panauti\u0307\u0304": {"country": "Nepal", "subcountry": "Central Region"}, "Malangwa": {"country": "Nepal", "subcountry": "Central Region"}, "Mahendranagar": {"country": "Nepal", "subcountry": "Far Western"}, "Lah\u0101n": {"country": "Nepal", "subcountry": "Eastern Region"}, "Kirtipur": {"country": "Nepal", "subcountry": "Central Region"}, "Kh\u0101ndb\u0101ri": {"country": "Nepal", "subcountry": "Eastern Region"}, "Kathmandu": {"country": "Nepal", "subcountry": "Central Region"}, "Janakpur": {"country": "Nepal", "subcountry": "Central Region"}, "Jaleswar": {"country": "Nepal", "subcountry": "Central Region"}, "Ithari": {"country": "Nepal", "subcountry": "Eastern Region"}, "Il\u0101m": {"country": "Nepal", "subcountry": "Eastern Region"}, "Hetauda": {"country": "Nepal", "subcountry": "Central Region"}, "Gulariy\u0101": {"country": "Nepal", "subcountry": "Mid Western"}, "Gaur": {"country": "Nepal", "subcountry": "Central Region"}, "Dhar\u0101n B\u0101z\u0101r": {"country": "Nepal", "subcountry": "Eastern Region"}, "Dhankut\u0101": {"country": "Nepal", "subcountry": "Eastern Region"}, "Dhangarhi": {"country": "Nepal", "subcountry": "Far Western"}, "D\u0101rchul\u0101": {"country": "Nepal", "subcountry": "Western Region"}, "Dailekh": {"country": "Nepal", "subcountry": "Mid Western"}, "Dadeldhur\u0101": {"country": "Nepal", "subcountry": "Far Western"}, "Butw\u0101l": {"country": "Nepal", "subcountry": "Western Region"}, "B\u012brganj": {"country": "Nepal", "subcountry": "Central Region"}, "Bir\u0101tnagar": {"country": "Nepal", "subcountry": "Eastern Region"}, "Bhair\u0101haw\u0101": {"country": "Nepal", "subcountry": "Western Region"}, "Bhadrapur": {"country": "Nepal", "subcountry": "Eastern Region"}, "Banep\u0101": {"country": "Nepal", "subcountry": "Central Region"}, "B\u0101glung": {"country": "Nepal", "subcountry": "Western Region"}, "Birendranagar": {"country": "Nepal", "subcountry": "Mid Western"}, "Dipayal": {"country": "Nepal", "subcountry": "Far Western"}, "Nepalgunj": {"country": "Nepal", "subcountry": "Mid Western"}, "Yaren": {"country": "Nauru", "subcountry": "Yaren"}, "Alofi": {"country": "Niue", "subcountry": "N/A"}, "Wanganui": {"country": "New Zealand", "subcountry": "Manawatu-Wanganui"}, "Timaru": {"country": "New Zealand", "subcountry": "Canterbury"}, "Taupo": {"country": "New Zealand", "subcountry": "Waikato"}, "Pukekohe East": {"country": "New Zealand", "subcountry": "Auckland"}, "Porirua": {"country": "New Zealand", "subcountry": "Wellington"}, "Paraparaumu": {"country": "New Zealand", "subcountry": "Wellington"}, "Palmerston North": {"country": "New Zealand", "subcountry": "Manawatu-Wanganui"}, "North Shore": {"country": "New Zealand", "subcountry": "Auckland"}, "New Plymouth": {"country": "New Zealand", "subcountry": "Taranaki"}, "Napier": {"country": "New Zealand", "subcountry": "Hawke's Bay"}, "Manukau City": {"country": "New Zealand", "subcountry": "Auckland"}, "Mangere": {"country": "New Zealand", "subcountry": "Auckland"}, "Lower Hutt": {"country": "New Zealand", "subcountry": "Wellington"}, "Invercargill": {"country": "New Zealand", "subcountry": "Southland"}, "Hastings": {"country": "United States", "subcountry": "Nebraska"}, "Dunedin": {"country": "United States", "subcountry": "Florida"}, "Auckland": {"country": "New Zealand", "subcountry": "Auckland"}, "Levin": {"country": "New Zealand", "subcountry": "Manawatu-Wanganui"}, "Gisborne": {"country": "New Zealand", "subcountry": "Gisborne"}, "Masterton": {"country": "New Zealand", "subcountry": "Wellington"}, "Tauranga": {"country": "New Zealand", "subcountry": "Bay of Plenty"}, "Papakura": {"country": "New Zealand", "subcountry": "Auckland"}, "Whakatane": {"country": "New Zealand", "subcountry": "Bay of Plenty"}, "Ashburton": {"country": "New Zealand", "subcountry": "Canterbury"}, "Whangarei": {"country": "New Zealand", "subcountry": "Northland"}, "Rotorua": {"country": "New Zealand", "subcountry": "Bay of Plenty"}, "Blenheim": {"country": "New Zealand", "subcountry": "Marlborough"}, "Upper Hutt": {"country": "New Zealand", "subcountry": "Wellington"}, "Taradale": {"country": "New Zealand", "subcountry": "Hawke's Bay"}, "Waitakere": {"country": "New Zealand", "subcountry": "Auckland"}, "Sur": {"country": "Oman", "subcountry": "Ash Sharqiyah South Governorate"}, "Sohar": {"country": "Oman", "subcountry": "Al Batinah North Governorate"}, "Suf\u0101lat Sam\u0101\u2019Il": {"country": "Oman", "subcountry": "Mu\u1e29\u0101faz\u0327at ad D\u0101khil\u012byah"}, "Shin\u0101\u015f": {"country": "Oman", "subcountry": "Al Batinah North Governorate"}, "\u015eal\u0101lah": {"country": "Oman", "subcountry": "Z\u0327uf\u0101r"}, "\u015ea\u1e29am": {"country": "Oman", "subcountry": "Al Batinah North Governorate"}, "Nizw\u00e1": {"country": "Oman", "subcountry": "Mu\u1e29\u0101faz\u0327at ad D\u0101khil\u012byah"}, "Muscat": {"country": "Oman", "subcountry": "Mu\u1e29\u0101faz\u0327at Masqa\u0163"}, "Khasab": {"country": "Oman", "subcountry": "Musandam"}, "Izk\u012b": {"country": "Oman", "subcountry": "Mu\u1e29\u0101faz\u0327at ad D\u0101khil\u012byah"}, "\u2018Ibr\u012b": {"country": "Oman", "subcountry": "Az\u0327 Z\u0327\u0101hirah"}, "Ibr\u0101\u2019": {"country": "Oman", "subcountry": "Ash Sharqiyah North Governorate"}, "Bidbid": {"country": "Oman", "subcountry": "Mu\u1e29\u0101faz\u0327at ad D\u0101khil\u012byah"}, "Bawshar": {"country": "Oman", "subcountry": "Mu\u1e29\u0101faz\u0327at Masqa\u0163"}, "Bark\u0101\u2019": {"country": "Oman", "subcountry": "Al Batinah South Governorate"}, "Bahl\u0101\u2019": {"country": "Oman", "subcountry": "Mu\u1e29\u0101faz\u0327at ad D\u0101khil\u012byah"}, "Bad\u012byah": {"country": "Oman", "subcountry": "Ash Sharqiyah North Governorate"}, "As Suwayq": {"country": "Oman", "subcountry": "Al Batinah North Governorate"}, "Seeb": {"country": "Oman", "subcountry": "Mu\u1e29\u0101faz\u0327at Masqa\u0163"}, "Rustaq": {"country": "Oman", "subcountry": "Al Batinah South Governorate"}, "Al Liw\u0101\u2019": {"country": "Oman", "subcountry": "Al Batinah North Governorate"}, "Al Kh\u0101b\u016brah": {"country": "Oman", "subcountry": "Al Batinah North Governorate"}, "Al Buraym\u012b": {"country": "Oman", "subcountry": "Al Buraimi"}, "\u0100dam": {"country": "Oman", "subcountry": "Mu\u1e29\u0101faz\u0327at ad D\u0101khil\u012byah"}, "Yanqul": {"country": "Oman", "subcountry": "Az\u0327 Z\u0327\u0101hirah"}, "Vista Alegre": {"country": "Panama", "subcountry": "Panam\u00e1"}, "Tocumen": {"country": "Panama", "subcountry": "Panam\u00e1"}, "Santiago De Veraguas": {"country": "Panama", "subcountry": "Veraguas"}, "San Miguelito": {"country": "Panama", "subcountry": "Panam\u00e1"}, "Puerto Armuelles": {"country": "Panama", "subcountry": "Chiriqu\u00ed"}, "Pedregal": {"country": "Panama", "subcountry": "Chiriqu\u00ed"}, "Panam\u00e1": {"country": "Panama", "subcountry": "Panam\u00e1"}, "Pacora": {"country": "Panama", "subcountry": "Panam\u00e1"}, "Nuevo Arraij\u00e1n": {"country": "Panama", "subcountry": "Panam\u00e1"}, "Las Cumbres": {"country": "Panama", "subcountry": "Panam\u00e1"}, "La Concepci\u00f3n": {"country": "Panama", "subcountry": "Chiriqu\u00ed"}, "La Chorrera": {"country": "Panama", "subcountry": "Panam\u00e1"}, "La Cabima": {"country": "Panama", "subcountry": "Panam\u00e1"}, "David": {"country": "Panama", "subcountry": "Chiriqu\u00ed"}, "Chitr\u00e9": {"country": "Panama", "subcountry": "Herrera"}, "Chilibre": {"country": "Panama", "subcountry": "Panam\u00e1"}, "Chepo": {"country": "Panama", "subcountry": "Panam\u00e1"}, "Changuinola": {"country": "Panama", "subcountry": "Bocas del Toro"}, "Cativ\u00e1": {"country": "Panama", "subcountry": "Col\u00f3n"}, "Arraij\u00e1n": {"country": "Panama", "subcountry": "Panam\u00e1"}, "Alcalde D\u00edaz": {"country": "Panama", "subcountry": "Panam\u00e1"}, "Aguadulce": {"country": "Panama", "subcountry": "Cocl\u00e9"}, "Yurimaguas": {"country": "Peru", "subcountry": "Loreto"}, "Vir\u00fa": {"country": "Peru", "subcountry": "La Libertad"}, "Uchiza": {"country": "Peru", "subcountry": "San Mart\u00edn"}, "Tumbes": {"country": "Peru", "subcountry": "Tumbes"}, "Trujillo": {"country": "Venezuela", "subcountry": "Trujillo"}, "Tocache": {"country": "Peru", "subcountry": "San Mart\u00edn"}, "Tingo Mar\u00eda": {"country": "Peru", "subcountry": "Huanuco"}, "Tambo Grande": {"country": "Peru", "subcountry": "Piura"}, "Talara": {"country": "Peru", "subcountry": "Piura"}, "Sullana": {"country": "Peru", "subcountry": "Piura"}, "Sechura": {"country": "Peru", "subcountry": "Piura"}, "Santiago De Cao": {"country": "Peru", "subcountry": "La Libertad"}, "San Pedro De Lloc": {"country": "Peru", "subcountry": "La Libertad"}, "Sa\u00f1a": {"country": "Peru", "subcountry": "Lambayeque"}, "Rioja": {"country": "Peru", "subcountry": "San Mart\u00edn"}, "Querecotillo": {"country": "Peru", "subcountry": "Piura"}, "Pucallpa": {"country": "Peru", "subcountry": "Ucayali"}, "Piura": {"country": "Peru", "subcountry": "Piura"}, "Pimentel": {"country": "Peru", "subcountry": "Lambayeque"}, "Picsi": {"country": "Peru", "subcountry": "Lambayeque"}, "Paita": {"country": "Peru", "subcountry": "Piura"}, "Paij\u00e1n": {"country": "Peru", "subcountry": "La Libertad"}, "Pacasmayo": {"country": "Peru", "subcountry": "La Libertad"}, "Moyobamba": {"country": "Peru", "subcountry": "San Mart\u00edn"}, "Monsef\u00fa": {"country": "Peru", "subcountry": "Lambayeque"}, "Moche": {"country": "Peru", "subcountry": "La Libertad"}, "Marcavelica": {"country": "Peru", "subcountry": "Piura"}, "Laredo": {"country": "Peru", "subcountry": "La Libertad"}, "La Peca": {"country": "Peru", "subcountry": "Amazonas"}, "Lambayeque": {"country": "Peru", "subcountry": "Lambayeque"}, "Juanju\u00ed": {"country": "Peru", "subcountry": "San Mart\u00edn"}, "Iquitos": {"country": "Peru", "subcountry": "Loreto"}, "Huaraz": {"country": "Peru", "subcountry": "Ancash"}, "Hu\u00e1nuco": {"country": "Peru", "subcountry": "Huanuco"}, "Huamachuco": {"country": "Peru", "subcountry": "La Libertad"}, "Ferre\u00f1afe": {"country": "Peru", "subcountry": "Lambayeque"}, "Coishco": {"country": "Peru", "subcountry": "Ancash"}, "Chulucanas": {"country": "Peru", "subcountry": "Piura"}, "Chongoyape": {"country": "Peru", "subcountry": "Lambayeque"}, "Chocope": {"country": "Peru", "subcountry": "La Libertad"}, "Chimbote": {"country": "Peru", "subcountry": "Ancash"}, "Chiclayo": {"country": "Peru", "subcountry": "Lambayeque"}, "Chep\u00e9n": {"country": "Peru", "subcountry": "La Libertad"}, "Chachapoyas": {"country": "Peru", "subcountry": "Amazonas"}, "Catacaos": {"country": "Peru", "subcountry": "Piura"}, "Cajamarca": {"country": "Peru", "subcountry": "Cajamarca"}, "Bellavista": {"country": "Peru", "subcountry": "San Mart\u00edn"}, "Bagua Grande": {"country": "Peru", "subcountry": "Amazonas"}, "La Breita": {"country": "Peru", "subcountry": "Piura"}, "Zarumilla": {"country": "Peru", "subcountry": "Tumbes"}, "Yunguyo": {"country": "Peru", "subcountry": "Puno"}, "Yanacancha": {"country": "Peru", "subcountry": "Huanuco"}, "Tarma": {"country": "Peru", "subcountry": "Jun\u00edn"}, "Tambopata": {"country": "Peru", "subcountry": "Madre de Dios"}, "Tacna": {"country": "Peru", "subcountry": "Tacna"}, "Santiago De Surco": {"country": "Peru", "subcountry": "Lima region"}, "Sicuani": {"country": "Peru", "subcountry": "Cusco"}, "Satipo": {"country": "Peru", "subcountry": "Jun\u00edn"}, "San Vicente De Ca\u00f1ete": {"country": "Peru", "subcountry": "Lima region"}, "Santa Ana": {"country": "United States", "subcountry": "California"}, "San Clemente": {"country": "United States", "subcountry": "California"}, "Puno": {"country": "Peru", "subcountry": "Puno"}, "Puerto Maldonado": {"country": "Peru", "subcountry": "Madre de Dios"}, "Pisco": {"country": "Peru", "subcountry": "Ica"}, "Paramonga": {"country": "Peru", "subcountry": "Lima region"}, "Nuevo Imperial": {"country": "Peru", "subcountry": "Lima region"}, "Nazca": {"country": "Peru", "subcountry": "Ica"}, "Moquegua": {"country": "Peru", "subcountry": "Moquegua"}, "Mollendo": {"country": "Peru", "subcountry": "Arequipa"}, "Minas De Marcona": {"country": "Peru", "subcountry": "Ica"}, "Mala": {"country": "Peru", "subcountry": "Lima region"}, "Lima": {"country": "United States", "subcountry": "Ohio"}, "La Oroya": {"country": "Peru", "subcountry": "Jun\u00edn"}, "Juliaca": {"country": "Peru", "subcountry": "Puno"}, "Jauja": {"country": "Peru", "subcountry": "Jun\u00edn"}, "Imperial": {"country": "Peru", "subcountry": "Lima region"}, "Ilo": {"country": "Peru", "subcountry": "Moquegua"}, "Ilave": {"country": "Peru", "subcountry": "Puno"}, "Ica": {"country": "Peru", "subcountry": "Ica"}, "Huaura": {"country": "Peru", "subcountry": "Lima region"}, "Huarmey": {"country": "Peru", "subcountry": "Ancash"}, "Huaral": {"country": "Peru", "subcountry": "Lima region"}, "Huanta": {"country": "Peru", "subcountry": "Ayacucho"}, "Huancayo": {"country": "Peru", "subcountry": "Jun\u00edn"}, "Huancavelica": {"country": "Peru", "subcountry": "Huancavelica"}, "Hualmay": {"country": "Peru", "subcountry": "Lima region"}, "Huacho": {"country": "Peru", "subcountry": "Lima region"}, "Cusco": {"country": "Peru", "subcountry": "Cusco"}, "Chosica": {"country": "Peru", "subcountry": "Lima region"}, "Chincha Alta": {"country": "Peru", "subcountry": "Ica"}, "Chaupimarca": {"country": "Peru", "subcountry": "Pasco"}, "Chancay": {"country": "Peru", "subcountry": "Lima region"}, "Cerro De Pasco": {"country": "Peru", "subcountry": "Pasco"}, "Caman\u00e1": {"country": "Peru", "subcountry": "Arequipa"}, "Callao": {"country": "Peru", "subcountry": "Callao"}, "Barranca": {"country": "Peru", "subcountry": "Lima region"}, "Ayaviri": {"country": "Peru", "subcountry": "Puno"}, "Ayacucho": {"country": "Peru", "subcountry": "Ayacucho"}, "Arequipa": {"country": "Peru", "subcountry": "Arequipa"}, "Andahuaylas": {"country": "Peru", "subcountry": "Apur\u00edmac"}, "Abancay": {"country": "Peru", "subcountry": "Apur\u00edmac"}, "Punaauia": {"country": "French Polynesia", "subcountry": "\u00celes du Vent"}, "Papeete": {"country": "French Polynesia", "subcountry": "\u00celes du Vent"}, "Faaa": {"country": "French Polynesia", "subcountry": "\u00celes du Vent"}, "Wewak": {"country": "Papua New Guinea", "subcountry": "East Sepik"}, "Port Moresby": {"country": "Papua New Guinea", "subcountry": "National Capital"}, "Popondetta": {"country": "Papua New Guinea", "subcountry": "Northern Province"}, "Mount Hagen": {"country": "Papua New Guinea", "subcountry": "Western Highlands"}, "Mendi": {"country": "Papua New Guinea", "subcountry": "Southern Highlands"}, "Madang": {"country": "Papua New Guinea", "subcountry": "Madang"}, "Lae": {"country": "Papua New Guinea", "subcountry": "Morobe"}, "Kokopo": {"country": "Papua New Guinea", "subcountry": "East New Britain"}, "Kimbe": {"country": "Papua New Guinea", "subcountry": "West New Britain"}, "Goroka": {"country": "Papua New Guinea", "subcountry": "Eastern Highlands"}, "Daru": {"country": "Papua New Guinea", "subcountry": "Western Province"}, "Bulolo": {"country": "Papua New Guinea", "subcountry": "Morobe"}, "Arawa": {"country": "Papua New Guinea", "subcountry": "Bougainville"}, "Zamboanga": {"country": "Philippines", "subcountry": "Zamboanga Peninsula"}, "Wao": {"country": "Philippines", "subcountry": "Autonomous Region in Muslim Mindanao"}, "Virac": {"country": "Philippines", "subcountry": "Bicol"}, "Vigan": {"country": "Philippines", "subcountry": "Ilocos"}, "Victorias": {"country": "Philippines", "subcountry": "Western Visayas"}, "Veruela": {"country": "Philippines", "subcountry": "Caraga"}, "Urdaneta": {"country": "Philippines", "subcountry": "Ilocos"}, "Ualog": {"country": "Philippines", "subcountry": "Western Visayas"}, "Tupi": {"country": "Philippines", "subcountry": "Davao"}, "Tuguegarao City": {"country": "Philippines", "subcountry": "Cagayan Valley"}, "Tiwi": {"country": "Philippines", "subcountry": "Bicol"}, "Teresa": {"country": "Philippines", "subcountry": "Calabarzon"}, "Telabastagan": {"country": "Philippines", "subcountry": "Central Luzon"}, "Taytay": {"country": "Philippines", "subcountry": "Calabarzon"}, "Tayabas": {"country": "Philippines", "subcountry": "Calabarzon"}, "Tarlac City": {"country": "Philippines", "subcountry": "Central Luzon"}, "Tanza": {"country": "Philippines", "subcountry": "Metro Manila"}, "Tanjay": {"country": "Philippines", "subcountry": "Central Visayas"}, "Tangub": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Tandag": {"country": "Philippines", "subcountry": "Caraga"}, "Tanay": {"country": "Philippines", "subcountry": "Calabarzon"}, "Tanauan": {"country": "Philippines", "subcountry": "Eastern Visayas"}, "Taloc": {"country": "Philippines", "subcountry": "Western Visayas"}, "Talisay": {"country": "Philippines", "subcountry": "Central Visayas"}, "Talavera": {"country": "Philippines", "subcountry": "Central Luzon"}, "Talacogon": {"country": "Philippines", "subcountry": "Caraga"}, "Tagum": {"country": "Philippines", "subcountry": "Davao"}, "Taguig": {"country": "Philippines", "subcountry": "Calabarzon"}, "Tagudin": {"country": "Philippines", "subcountry": "Ilocos"}, "Tagoloan": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Tagbilaran City": {"country": "Philippines", "subcountry": "Central Visayas"}, "Tagas": {"country": "Philippines", "subcountry": "Bicol"}, "Tacurong": {"country": "Philippines", "subcountry": "Soccsksargen"}, "Tabuk": {"country": "Saudi Arabia", "subcountry": "Min\u0163aqat Tab\u016bk"}, "Tabaco": {"country": "Philippines", "subcountry": "Bicol"}, "Taal": {"country": "Philippines", "subcountry": "Calabarzon"}, "Surigao": {"country": "Philippines", "subcountry": "Caraga"}, "Surallah": {"country": "Philippines", "subcountry": "Soccsksargen"}, "Subic": {"country": "Philippines", "subcountry": "Central Luzon"}, "Suay": {"country": "Philippines", "subcountry": "Western Visayas"}, "Sorsogon": {"country": "Philippines", "subcountry": "Bicol"}, "Solano": {"country": "Philippines", "subcountry": "Cagayan Valley"}, "Solana": {"country": "Philippines", "subcountry": "Cagayan Valley"}, "Sitangkai": {"country": "Philippines", "subcountry": "Autonomous Region in Muslim Mindanao"}, "Sipalay": {"country": "Philippines", "subcountry": "Western Visayas"}, "Silang": {"country": "Philippines", "subcountry": "Calabarzon"}, "Sibulan": {"country": "Philippines", "subcountry": "Central Visayas"}, "Sexmoan": {"country": "Philippines", "subcountry": "Central Luzon"}, "Sebu": {"country": "Philippines", "subcountry": "Soccsksargen"}, "Sariaya": {"country": "Philippines", "subcountry": "Calabarzon"}, "Santo Tomas": {"country": "Philippines", "subcountry": "Calabarzon"}, "Santol": {"country": "Philippines", "subcountry": "Central Luzon"}, "Santa Catalina": {"country": "Philippines", "subcountry": "Central Visayas"}, "Santa Barbara": {"country": "United States", "subcountry": "California"}, "San Simon": {"country": "Philippines", "subcountry": "Central Luzon"}, "San Pascual": {"country": "Philippines", "subcountry": "Calabarzon"}, "San Nicolas": {"country": "Philippines", "subcountry": "Ilocos"}, "San Narciso": {"country": "Philippines", "subcountry": "Central Luzon"}, "San Mateo": {"country": "Venezuela", "subcountry": "Aragua"}, "San Mariano": {"country": "Philippines", "subcountry": "Davao"}, "San Marcelino": {"country": "Philippines", "subcountry": "Central Luzon"}, "San Leonardo": {"country": "Philippines", "subcountry": "Central Luzon"}, "San Jose Del Monte": {"country": "Philippines", "subcountry": "Central Luzon"}, "San Jose": {"country": "United States", "subcountry": "California"}, "San Ildefonso": {"country": "Philippines", "subcountry": "Central Luzon"}, "Aurora": {"country": "United States", "subcountry": "Colorado"}, "Sampaloc": {"country": "Philippines", "subcountry": "Calabarzon"}, "Samal": {"country": "Philippines", "subcountry": "Davao"}, "Sagay": {"country": "Philippines", "subcountry": "Western Visayas"}, "Sablayan": {"country": "Philippines", "subcountry": "Mimaropa"}, "Roxas": {"country": "Philippines", "subcountry": "Mimaropa"}, "Roxas City": {"country": "Philippines", "subcountry": "Western Visayas"}, "Romblon": {"country": "Philippines", "subcountry": "Mimaropa"}, "Rizal": {"country": "Philippines", "subcountry": "Central Luzon"}, "Recodo": {"country": "Philippines", "subcountry": "Zamboanga Peninsula"}, "Ramos": {"country": "Philippines", "subcountry": "Central Luzon"}, "Ramon": {"country": "Philippines", "subcountry": "Cagayan Valley"}, "Quiapo": {"country": "Philippines", "subcountry": "Metro Manila"}, "Quezon City": {"country": "Philippines", "subcountry": "Metro Manila"}, "Quezon": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Pulupandan": {"country": "Philippines", "subcountry": "Western Visayas"}, "Pulong Santa Cruz": {"country": "Philippines", "subcountry": "Calabarzon"}, "Pulilan": {"country": "Philippines", "subcountry": "Central Luzon"}, "Puerto Princesa": {"country": "Philippines", "subcountry": "Mimaropa"}, "Port Area": {"country": "Philippines", "subcountry": "Metro Manila"}, "Porac": {"country": "Philippines", "subcountry": "Central Luzon"}, "Polomolok": {"country": "Philippines", "subcountry": "Davao"}, "Polangui": {"country": "Philippines", "subcountry": "Bicol"}, "Plaridel": {"country": "Philippines", "subcountry": "Central Luzon"}, "Pio": {"country": "Philippines", "subcountry": "Central Luzon"}, "Pinamungahan": {"country": "Philippines", "subcountry": "Central Visayas"}, "Pinamalayan": {"country": "Philippines", "subcountry": "Mimaropa"}, "Pililla": {"country": "Philippines", "subcountry": "Calabarzon"}, "Pila": {"country": "Philippines", "subcountry": "Calabarzon"}, "Pe\u00f1aranda": {"country": "Philippines", "subcountry": "Central Luzon"}, "Patuto": {"country": "Philippines", "subcountry": "Calabarzon"}, "Passi": {"country": "Philippines", "subcountry": "Western Visayas"}, "Parang": {"country": "Philippines", "subcountry": "Autonomous Region in Muslim Mindanao"}, "Papaya": {"country": "Philippines", "subcountry": "Central Luzon"}, "Paombong": {"country": "Philippines", "subcountry": "Central Luzon"}, "Pantubig": {"country": "Philippines", "subcountry": "Central Luzon"}, "Paniqui": {"country": "Philippines", "subcountry": "Central Luzon"}, "Pangil": {"country": "Philippines", "subcountry": "Calabarzon"}, "Pandi": {"country": "Philippines", "subcountry": "Central Luzon"}, "Pandacaqui": {"country": "Philippines", "subcountry": "Central Luzon"}, "Panalanoy": {"country": "Philippines", "subcountry": "Eastern Visayas"}, "Panabo": {"country": "Philippines", "subcountry": "Davao"}, "Palo": {"country": "Philippines", "subcountry": "Eastern Visayas"}, "Palayan City": {"country": "Philippines", "subcountry": "Central Luzon"}, "Pagbilao": {"country": "Philippines", "subcountry": "Calabarzon"}, "Pagalu\u00f1gan": {"country": "Philippines", "subcountry": "Autonomous Region in Muslim Mindanao"}, "Pagadian": {"country": "Philippines", "subcountry": "Zamboanga Peninsula"}, "Paete": {"country": "Philippines", "subcountry": "Calabarzon"}, "Pacol": {"country": "Philippines", "subcountry": "Western Visayas"}, "Ozamiz City": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Oroquieta": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Ormoc": {"country": "Philippines", "subcountry": "Eastern Visayas"}, "Orion": {"country": "Philippines", "subcountry": "Central Luzon"}, "Orani": {"country": "Philippines", "subcountry": "Central Luzon"}, "Olongapo": {"country": "Philippines", "subcountry": "Central Luzon"}, "Obando": {"country": "Philippines", "subcountry": "Central Luzon"}, "Noveleta": {"country": "Philippines", "subcountry": "Calabarzon"}, "Norzagaray": {"country": "Philippines", "subcountry": "Central Luzon"}, "New Corella": {"country": "Philippines", "subcountry": "Davao"}, "Nasugbu": {"country": "Philippines", "subcountry": "Calabarzon"}, "Narra": {"country": "Philippines", "subcountry": "Mimaropa"}, "Naic": {"country": "Philippines", "subcountry": "Calabarzon"}, "Nagcarlan": {"country": "Philippines", "subcountry": "Calabarzon"}, "Naga": {"country": "Philippines", "subcountry": "Central Visayas"}, "Nabunturan": {"country": "Philippines", "subcountry": "Davao"}, "Nabua": {"country": "Philippines", "subcountry": "Bicol"}, "Muricay": {"country": "Philippines", "subcountry": "Zamboanga Peninsula"}, "Mu\u00f1oz": {"country": "Philippines", "subcountry": "Central Luzon"}, "Morong": {"country": "Philippines", "subcountry": "Calabarzon"}, "Rodriguez": {"country": "Philippines", "subcountry": "Calabarzon"}, "Monkayo": {"country": "Philippines", "subcountry": "Davao"}, "Molave": {"country": "Philippines", "subcountry": "Zamboanga Peninsula"}, "Minglanilla": {"country": "Philippines", "subcountry": "Central Visayas"}, "Midsayap": {"country": "Philippines", "subcountry": "Soccsksargen"}, "Meycauayan": {"country": "Philippines", "subcountry": "Central Luzon"}, "Mexico": {"country": "Philippines", "subcountry": "Central Luzon"}, "Mendez-Nu\u00f1ez": {"country": "Philippines", "subcountry": "Calabarzon"}, "Mauban": {"country": "Philippines", "subcountry": "Calabarzon"}, "Mati": {"country": "Philippines", "subcountry": "Davao"}, "Masinloc": {"country": "Philippines", "subcountry": "Central Luzon"}, "Masbate": {"country": "Philippines", "subcountry": "Bicol"}, "Masantol": {"country": "Philippines", "subcountry": "Central Luzon"}, "Mariveles": {"country": "Philippines", "subcountry": "Central Luzon"}, "Marilao": {"country": "Philippines", "subcountry": "Central Luzon"}, "Mariano": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Marawi City": {"country": "Philippines", "subcountry": "Autonomous Region in Muslim Mindanao"}, "Maramag": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Maragondon": {"country": "Philippines", "subcountry": "Calabarzon"}, "Mantampay": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Mansilingan": {"country": "Philippines", "subcountry": "Western Visayas"}, "Mansalay": {"country": "Philippines", "subcountry": "Mimaropa"}, "Manolo Fortich": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Manila": {"country": "Philippines", "subcountry": "Metro Manila"}, "Manibaug Pasig": {"country": "Philippines", "subcountry": "Central Luzon"}, "Mangaldan": {"country": "Philippines", "subcountry": "Ilocos"}, "Mandaue City": {"country": "Philippines", "subcountry": "Central Visayas"}, "Mandaluyong City": {"country": "Philippines", "subcountry": "Metro Manila"}, "Mankayan": {"country": "Philippines", "subcountry": "Cordillera"}, "Manay": {"country": "Philippines", "subcountry": "Davao"}, "Manapla": {"country": "Philippines", "subcountry": "Western Visayas"}, "Manaoag": {"country": "Philippines", "subcountry": "Ilocos"}, "Mamburao": {"country": "Philippines", "subcountry": "Mimaropa"}, "Mamatid": {"country": "Philippines", "subcountry": "Calabarzon"}, "Malvar": {"country": "Philippines", "subcountry": "Calabarzon"}, "Maluso": {"country": "Philippines", "subcountry": "Autonomous Region in Muslim Mindanao"}, "Malu\u00f1gun": {"country": "Philippines", "subcountry": "Soccsksargen"}, "Malolos": {"country": "Philippines", "subcountry": "Central Luzon"}, "Malita": {"country": "Philippines", "subcountry": "Davao"}, "Malilipot": {"country": "Philippines", "subcountry": "Bicol"}, "Malaybalay": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Malapatan": {"country": "Philippines", "subcountry": "Soccsksargen"}, "Malanday": {"country": "Philippines", "subcountry": "Calabarzon"}, "Malabanban Norte": {"country": "Philippines", "subcountry": "Calabarzon"}, "Makati City": {"country": "Philippines", "subcountry": "Metro Manila"}, "Mahayag": {"country": "Philippines", "subcountry": "Zamboanga Peninsula"}, "Magsaysay": {"country": "Philippines", "subcountry": "Davao"}, "Magarao": {"country": "Philippines", "subcountry": "Bicol"}, "Maganoy": {"country": "Philippines", "subcountry": "Autonomous Region in Muslim Mindanao"}, "Magalang": {"country": "Philippines", "subcountry": "Central Luzon"}, "Mabalacat City": {"country": "Philippines", "subcountry": "Central Luzon"}, "Maasin": {"country": "Philippines", "subcountry": "Eastern Visayas"}, "Maao": {"country": "Philippines", "subcountry": "Western Visayas"}, "Lupon": {"country": "Philippines", "subcountry": "Davao"}, "Lumbang": {"country": "Philippines", "subcountry": "Calabarzon"}, "Lucban": {"country": "Philippines", "subcountry": "Calabarzon"}, "Los Ba\u00f1os": {"country": "Philippines", "subcountry": "Calabarzon"}, "Lopez": {"country": "Philippines", "subcountry": "Calabarzon"}, "Loma De Gato": {"country": "Philippines", "subcountry": "Central Luzon"}, "Loboc": {"country": "Philippines", "subcountry": "Central Visayas"}, "Lipa City": {"country": "Philippines", "subcountry": "Calabarzon"}, "Lingayen": {"country": "Philippines", "subcountry": "Ilocos"}, "Liloan": {"country": "Philippines", "subcountry": "Central Visayas"}, "Lilio": {"country": "Philippines", "subcountry": "Calabarzon"}, "Libon": {"country": "Philippines", "subcountry": "Bicol"}, "Libertad": {"country": "Philippines", "subcountry": "Caraga"}, "Legaspi": {"country": "Philippines", "subcountry": "Bicol"}, "Laur": {"country": "Philippines", "subcountry": "Central Luzon"}, "La Trinidad": {"country": "Philippines", "subcountry": "Cordillera"}, "Lapu-Lapu City": {"country": "Philippines", "subcountry": "Central Visayas"}, "Laoang": {"country": "Philippines", "subcountry": "Eastern Visayas"}, "Laoag": {"country": "Philippines", "subcountry": "Ilocos"}, "Lala": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Laguilayan": {"country": "Philippines", "subcountry": "Soccsksargen"}, "La Castellana": {"country": "Philippines", "subcountry": "Western Visayas"}, "La Carlota": {"country": "Philippines", "subcountry": "Western Visayas"}, "Labo": {"country": "Philippines", "subcountry": "Bicol"}, "Koronadal": {"country": "Philippines", "subcountry": "Soccsksargen"}, "Kidapawan": {"country": "Philippines", "subcountry": "Soccsksargen"}, "Kawit": {"country": "Philippines", "subcountry": "Calabarzon"}, "Kalibo (Poblacion)": {"country": "Philippines", "subcountry": "Western Visayas"}, "Kabankalan": {"country": "Philippines", "subcountry": "Western Visayas"}, "Kabacan": {"country": "Philippines", "subcountry": "Soccsksargen"}, "Jose Pa\u00f1ganiban": {"country": "Philippines", "subcountry": "Bicol"}, "Jolo": {"country": "Philippines", "subcountry": "Autonomous Region in Muslim Mindanao"}, "Jasaan": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Jalajala": {"country": "Philippines", "subcountry": "Calabarzon"}, "Jagna": {"country": "Philippines", "subcountry": "Central Visayas"}, "Jaen": {"country": "Philippines", "subcountry": "Central Luzon"}, "Itogon": {"country": "Philippines", "subcountry": "Cordillera"}, "Isulan": {"country": "Philippines", "subcountry": "Soccsksargen"}, "Isabela": {"country": "Philippines", "subcountry": "Western Visayas"}, "City Of Isabela": {"country": "Philippines", "subcountry": "Autonomous Region in Muslim Mindanao"}, "Irosin": {"country": "Philippines", "subcountry": "Bicol"}, "Iriga City": {"country": "Philippines", "subcountry": "Bicol"}, "Ipil": {"country": "Philippines", "subcountry": "Zamboanga Peninsula"}, "Indang": {"country": "Philippines", "subcountry": "Calabarzon"}, "Imus": {"country": "Philippines", "subcountry": "Calabarzon"}, "Iloilo": {"country": "Philippines", "subcountry": "Western Visayas"}, "Iligan City": {"country": "Philippines", "subcountry": "Soccsksargen"}, "Ilagan": {"country": "Philippines", "subcountry": "Cagayan Valley"}, "Iba": {"country": "Philippines", "subcountry": "Central Luzon"}, "Hinigaran": {"country": "Philippines", "subcountry": "Western Visayas"}, "Himamaylan": {"country": "Philippines", "subcountry": "Western Visayas"}, "Hermosa": {"country": "Philippines", "subcountry": "Central Luzon"}, "Hagonoy": {"country": "Philippines", "subcountry": "Central Luzon"}, "Guyong": {"country": "Philippines", "subcountry": "Central Luzon"}, "Gumaca": {"country": "Philippines", "subcountry": "Calabarzon"}, "Guiset East": {"country": "Philippines", "subcountry": "Ilocos"}, "Guimba": {"country": "Philippines", "subcountry": "Central Luzon"}, "Guihul\u00f1gan": {"country": "Philippines", "subcountry": "Central Visayas"}, "Guiguinto": {"country": "Philippines", "subcountry": "Central Luzon"}, "Goa": {"country": "Philippines", "subcountry": "Bicol"}, "Glan": {"country": "Philippines", "subcountry": "Soccsksargen"}, "Gerona": {"country": "Philippines", "subcountry": "Central Luzon"}, "General Trias": {"country": "Philippines", "subcountry": "Calabarzon"}, "General Tinio": {"country": "Philippines", "subcountry": "Central Luzon"}, "General Santos": {"country": "Philippines", "subcountry": "Soccsksargen"}, "General Mamerto Natividad": {"country": "Philippines", "subcountry": "Central Luzon"}, "Gapan": {"country": "Philippines", "subcountry": "Central Luzon"}, "Escalante": {"country": "Philippines", "subcountry": "Western Visayas"}, "Saravia": {"country": "Philippines", "subcountry": "Western Visayas"}, "Dumaguete": {"country": "Philippines", "subcountry": "Central Visayas"}, "Don Carlos": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Domalanoan": {"country": "Philippines", "subcountry": "Ilocos"}, "Dologon": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Dipolog": {"country": "Philippines", "subcountry": "Zamboanga Peninsula"}, "Dinalupihan": {"country": "Philippines", "subcountry": "Central Luzon"}, "Digos": {"country": "Philippines", "subcountry": "Davao"}, "Diadi": {"country": "Philippines", "subcountry": "Cagayan Valley"}, "Del Pilar": {"country": "Philippines", "subcountry": "Central Luzon"}, "Davao": {"country": "Philippines", "subcountry": "Davao"}, "Dasmari\u00f1as": {"country": "Philippines", "subcountry": "Calabarzon"}, "Dapitan": {"country": "Philippines", "subcountry": "Zamboanga Peninsula"}, "Danao": {"country": "Philippines", "subcountry": "Central Visayas"}, "Daet": {"country": "Philippines", "subcountry": "Bicol"}, "Cotabato": {"country": "Philippines", "subcountry": "Autonomous Region in Muslim Mindanao"}, "Cordova": {"country": "Philippines", "subcountry": "Central Visayas"}, "Consolacion": {"country": "Philippines", "subcountry": "Central Visayas"}, "Concepcion": {"country": "Philippines", "subcountry": "Central Luzon"}, "Concepcion Ibaba": {"country": "Philippines", "subcountry": "Calabarzon"}, "Cebu City": {"country": "Philippines", "subcountry": "Central Visayas"}, "Cavite City": {"country": "Philippines", "subcountry": "Calabarzon"}, "Catbalogan": {"country": "Philippines", "subcountry": "Eastern Visayas"}, "Catarman": {"country": "Philippines", "subcountry": "Eastern Visayas"}, "Catanauan": {"country": "Philippines", "subcountry": "Calabarzon"}, "Castillejos": {"country": "Philippines", "subcountry": "Central Luzon"}, "Cogan": {"country": "Philippines", "subcountry": "Central Visayas"}, "Carigara": {"country": "Philippines", "subcountry": "Eastern Visayas"}, "Cardona": {"country": "Philippines", "subcountry": "Calabarzon"}, "Carcar": {"country": "Philippines", "subcountry": "Central Visayas"}, "Capas": {"country": "Philippines", "subcountry": "Central Luzon"}, "Canlaon": {"country": "Philippines", "subcountry": "Central Visayas"}, "Candaba": {"country": "Philippines", "subcountry": "Central Luzon"}, "Camiling": {"country": "Philippines", "subcountry": "Central Luzon"}, "Calumpit": {"country": "Philippines", "subcountry": "Central Luzon"}, "Calumpang": {"country": "Philippines", "subcountry": "Metro Manila"}, "Calbayog City": {"country": "Philippines", "subcountry": "Eastern Visayas"}, "Calauan": {"country": "Philippines", "subcountry": "Calabarzon"}, "Calauag": {"country": "Philippines", "subcountry": "Calabarzon"}, "Calatagan": {"country": "Philippines", "subcountry": "Calabarzon"}, "Calasiao": {"country": "Philippines", "subcountry": "Ilocos"}, "Calapan": {"country": "Philippines", "subcountry": "Mimaropa"}, "Calamba": {"country": "Philippines", "subcountry": "Calabarzon"}, "Calaca": {"country": "Philippines", "subcountry": "Calabarzon"}, "Calabanga": {"country": "Philippines", "subcountry": "Bicol"}, "Cainta": {"country": "Philippines", "subcountry": "Calabarzon"}, "Cagayan De Oro": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Cabiao": {"country": "Philippines", "subcountry": "Central Luzon"}, "Cabayangan": {"country": "Philippines", "subcountry": "Davao"}, "Cabanatuan City": {"country": "Philippines", "subcountry": "Central Luzon"}, "Cabagan": {"country": "Philippines", "subcountry": "Cagayan Valley"}, "Cabadbaran": {"country": "Philippines", "subcountry": "Caraga"}, "Butuan": {"country": "Philippines", "subcountry": "Caraga"}, "Bustos": {"country": "Philippines", "subcountry": "Central Luzon"}, "Boroon": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Bunawan": {"country": "Philippines", "subcountry": "Caraga"}, "Buluan": {"country": "Philippines", "subcountry": "Autonomous Region in Muslim Mindanao"}, "Bulaon": {"country": "Philippines", "subcountry": "Central Luzon"}, "Bulan": {"country": "Philippines", "subcountry": "Bicol"}, "Bulacan": {"country": "Philippines", "subcountry": "Central Luzon"}, "Buhi": {"country": "Philippines", "subcountry": "Bicol"}, "Bugo": {"country": "Philippines", "subcountry": "Northern Mindanao"}, "Budta": {"country": "Philippines", "subcountry": "Autonomous Region in Muslim Mindanao"}, "Botolan": {"country": "Philippines", "subcountry": "Central Luzon"}, "Borongan": {"country": "Philippines", "subcountry": "Eastern Visayas"}, "Bongao": {"country": "Philippines", "subcountry": "Autonomous Region in Muslim Mindanao"}, "Bongabon": {"country": "Philippines", "subcountry": "Central Luzon"}, "Bocaue": {"country": "Philippines", "subcountry": "Central Luzon"}, "Bislig": {"country": "Philippines", "subcountry": "Caraga"}, "Binonga": {"country": "Philippines", "subcountry": "Western Visayas"}, "Binmaley": {"country": "Philippines", "subcountry": "Ilocos"}, "Binangonan": {"country": "Philippines", "subcountry": "Calabarzon"}, "Binalbagan": {"country": "Philippines", "subcountry": "Western Visayas"}, "Bignay Uno": {"country": "Philippines", "subcountry": "Calabarzon"}, "Bayugan": {"country": "Philippines", "subcountry": "Caraga"}, "Bayombong": {"country": "Philippines", "subcountry": "Cagayan Valley"}, "Baybay": {"country": "Philippines", "subcountry": "Eastern Visayas"}, "Bayawan": {"country": "Philippines", "subcountry": "Central Visayas"}, "Bayambang": {"country": "Philippines", "subcountry": "Ilocos"}, "Bay": {"country": "Philippines", "subcountry": "Calabarzon"}, "Bauang": {"country": "Philippines", "subcountry": "Ilocos"}, "Bauan": {"country": "Philippines", "subcountry": "Calabarzon"}, "Bato": {"country": "Philippines", "subcountry": "Bicol"}, "Batangas": {"country": "Philippines", "subcountry": "Calabarzon"}, "Batac City": {"country": "Philippines", "subcountry": "Ilocos"}, "Baras": {"country": "Philippines", "subcountry": "Calabarzon"}, "Bantayan": {"country": "Philippines", "subcountry": "Central Visayas"}, "Bansalan": {"country": "Philippines", "subcountry": "Davao"}, "Ba\u00f1ga": {"country": "Philippines", "subcountry": "Soccsksargen"}, "Banaybanay": {"country": "Philippines", "subcountry": "Calabarzon"}, "Bambang": {"country": "Philippines", "subcountry": "Cagayan Valley"}, "Baliuag": {"country": "Philippines", "subcountry": "Central Luzon"}, "Balayan": {"country": "Philippines", "subcountry": "Calabarzon"}, "Balanga": {"country": "Philippines", "subcountry": "Central Luzon"}, "Balamban": {"country": "Philippines", "subcountry": "Central Visayas"}, "Balagtas": {"country": "Philippines", "subcountry": "Central Luzon"}, "Bais": {"country": "Philippines", "subcountry": "Central Visayas"}, "Bah-Bah": {"country": "Philippines", "subcountry": "Caraga"}, "Baguio": {"country": "Philippines", "subcountry": "Cordillera"}, "Bago City": {"country": "Philippines", "subcountry": "Western Visayas"}, "Baggabag B": {"country": "Philippines", "subcountry": "Cagayan Valley"}, "Bacoor": {"country": "Philippines", "subcountry": "Calabarzon"}, "Bacolod City": {"country": "Philippines", "subcountry": "Western Visayas"}, "Babo-Pangulo": {"country": "Philippines", "subcountry": "Central Luzon"}, "Baao": {"country": "Philippines", "subcountry": "Bicol"}, "Atimonan": {"country": "Philippines", "subcountry": "Calabarzon"}, "Asia": {"country": "Philippines", "subcountry": "Western Visayas"}, "Aringay": {"country": "Philippines", "subcountry": "Ilocos"}, "Arayat": {"country": "Philippines", "subcountry": "Central Luzon"}, "Aparri": {"country": "Philippines", "subcountry": "Cagayan Valley"}, "Apalit": {"country": "Philippines", "subcountry": "Central Luzon"}, "Antipolo": {"country": "Philippines", "subcountry": "Calabarzon"}, "Angono": {"country": "Philippines", "subcountry": "Calabarzon"}, "Angeles City": {"country": "Philippines", "subcountry": "Central Luzon"}, "Angat": {"country": "Philippines", "subcountry": "Central Luzon"}, "Amadeo": {"country": "Philippines", "subcountry": "Calabarzon"}, "Alicia": {"country": "Philippines", "subcountry": "Cagayan Valley"}, "Aliaga": {"country": "Philippines", "subcountry": "Central Luzon"}, "Alaminos": {"country": "Philippines", "subcountry": "Calabarzon"}, "Alabel": {"country": "Philippines", "subcountry": "Soccsksargen"}, "Agoo": {"country": "Philippines", "subcountry": "Ilocos"}, "Abuyog": {"country": "Philippines", "subcountry": "Eastern Visayas"}, "Abucay": {"country": "Philippines", "subcountry": "Central Luzon"}, "Bagong Pagasa": {"country": "Philippines", "subcountry": "Calabarzon"}, "Malingao": {"country": "Philippines", "subcountry": "Soccsksargen"}, "Pasig City": {"country": "Philippines", "subcountry": "Metro Manila"}, "Pandan": {"country": "Philippines", "subcountry": "Western Visayas"}, "Apas": {"country": "Philippines", "subcountry": "Central Visayas"}, "Chuhar Jam\u0101li": {"country": "Pakistan", "subcountry": "Sindh"}, "R\u0101wala Kot": {"country": "Pakistan", "subcountry": "Azad Kashmir"}, "P\u012br Jo Goth": {"country": "Pakistan", "subcountry": "Sindh"}, "Khairpur": {"country": "Pakistan", "subcountry": "Sindh"}, "Zhob": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Zaida": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Z\u0101hir P\u012br": {"country": "Pakistan", "subcountry": "Punjab"}, "Zafarw\u0101l": {"country": "Pakistan", "subcountry": "Punjab"}, "Yazman": {"country": "Pakistan", "subcountry": "Punjab"}, "Waz\u012br\u0101b\u0101d": {"country": "Pakistan", "subcountry": "Punjab"}, "Warburton": {"country": "Pakistan", "subcountry": "Punjab"}, "W\u0101r\u0101h": {"country": "Pakistan", "subcountry": "Sindh"}, "Vih\u0101ri": {"country": "Pakistan", "subcountry": "Punjab"}, "Utm\u0101nzai": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Uthal": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Usta Muhammad": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Ubauro": {"country": "Pakistan", "subcountry": "Sindh"}, "Turbat": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Topi": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Toba Tek Singh": {"country": "Pakistan", "subcountry": "Punjab"}, "Thul": {"country": "Pakistan", "subcountry": "Sindh"}, "Thatta": {"country": "Pakistan", "subcountry": "Sindh"}, "Th\u0101ru Sh\u0101h": {"country": "Pakistan", "subcountry": "Sindh"}, "Taunsa": {"country": "Pakistan", "subcountry": "Punjab"}, "T\u0101nk": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Tangi": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Tando Muhammad Kh\u0101n": {"country": "Pakistan", "subcountry": "Sindh"}, "Tando J\u0101m": {"country": "Pakistan", "subcountry": "Sindh"}, "Tando All\u0101hy\u0101r": {"country": "Pakistan", "subcountry": "Sindh"}, "Tando \u0100dam": {"country": "Pakistan", "subcountry": "Sindh"}, "T\u0101ndli\u0101nw\u0101la": {"country": "Pakistan", "subcountry": "Punjab"}, "Talh\u0101r": {"country": "Pakistan", "subcountry": "Sindh"}, "Talamba": {"country": "Pakistan", "subcountry": "Punjab"}, "Talagang": {"country": "Pakistan", "subcountry": "Punjab"}, "T\u0101l": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Sw\u0101bi": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Surkhpur": {"country": "Pakistan", "subcountry": "Punjab"}, "Sukkur": {"country": "Pakistan", "subcountry": "Sindh"}, "Sukheke Mandi": {"country": "Pakistan", "subcountry": "Punjab"}, "Sodhra": {"country": "Pakistan", "subcountry": "Punjab"}, "S\u012bta Road": {"country": "Pakistan", "subcountry": "Sindh"}, "Sinjhoro": {"country": "Pakistan", "subcountry": "Sindh"}, "Sill\u0101nw\u0101li": {"country": "Pakistan", "subcountry": "Punjab"}, "Sibi": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Sialkot": {"country": "Pakistan", "subcountry": "Punjab"}, "Shuj\u0101\u0101b\u0101d": {"country": "Pakistan", "subcountry": "Punjab"}, "Shorko": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Sheikhupura": {"country": "Pakistan", "subcountry": "Punjab"}, "Sharqpur": {"country": "Pakistan", "subcountry": "Punjab"}, "Shakargarr": {"country": "Pakistan", "subcountry": "Punjab"}, "Shahr Sult\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "Sh\u0101hpur Ch\u0101kar": {"country": "Pakistan", "subcountry": "Sindh"}, "Shahkot": {"country": "Pakistan", "subcountry": "Punjab"}, "Sh\u0101hd\u0101dpur": {"country": "Pakistan", "subcountry": "Sindh"}, "Sh\u0101hd\u0101dkot": {"country": "Pakistan", "subcountry": "Sindh"}, "Shabqadar": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Sehw\u0101n": {"country": "Pakistan", "subcountry": "Sindh"}, "Sargodha": {"country": "Pakistan", "subcountry": "Punjab"}, "Sar\u0101i Sidhu": {"country": "Pakistan", "subcountry": "Punjab"}, "Sar\u0101i Naurang": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Sar\u0101i \u0100lamg\u012br": {"country": "Pakistan", "subcountry": "Punjab"}, "Sangla Hill": {"country": "Pakistan", "subcountry": "Punjab"}, "S\u0101nghar": {"country": "Pakistan", "subcountry": "Sindh"}, "Sambri\u0101l": {"country": "Pakistan", "subcountry": "Punjab"}, "Sakrand": {"country": "Pakistan", "subcountry": "Sindh"}, "S\u0101h\u012bw\u0101l": {"country": "Pakistan", "subcountry": "Punjab"}, "Sahiwal": {"country": "Pakistan", "subcountry": "Punjab"}, "S\u0101diq\u0101b\u0101d": {"country": "Pakistan", "subcountry": "Punjab"}, "Rohri": {"country": "Pakistan", "subcountry": "Sindh"}, "Ren\u0101la Khurd": {"country": "Pakistan", "subcountry": "Punjab"}, "Rawalpindi": {"country": "Pakistan", "subcountry": "Punjab"}, "Ratodero": {"country": "Pakistan", "subcountry": "Sindh"}, "R\u0101janpur": {"country": "Pakistan", "subcountry": "Punjab"}, "R\u0101ja Jang": {"country": "Pakistan", "subcountry": "Punjab"}, "R\u0101iwind": {"country": "Pakistan", "subcountry": "Punjab"}, "R\u0101dhan": {"country": "Pakistan", "subcountry": "Sindh"}, "Rabw\u0101h": {"country": "Pakistan", "subcountry": "Punjab"}, "Quetta": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Kambar": {"country": "Pakistan", "subcountry": "Sindh"}, "Q\u0101dirpur R\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "Pishin": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "P\u012br Mahal": {"country": "Pakistan", "subcountry": "Punjab"}, "Pindi Gheb": {"country": "Pakistan", "subcountry": "Punjab"}, "Pindi Bhatti\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "Pind D\u0101dan Kh\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "Ph\u0101lia": {"country": "Pakistan", "subcountry": "Punjab"}, "Peshawar": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Pattoki": {"country": "Pakistan", "subcountry": "Punjab"}, "Pasr\u016br": {"country": "Pakistan", "subcountry": "Punjab"}, "Pasni": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "P\u0101no \u0100qil": {"country": "Pakistan", "subcountry": "Sindh"}, "P\u0101kpattan": {"country": "Pakistan", "subcountry": "Punjab"}, "Pah\u0101rpur": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Pad \u012adan": {"country": "Pakistan", "subcountry": "Sindh"}, "Pabbi": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Ok\u0101ra": {"country": "Pakistan", "subcountry": "Punjab"}, "Nushki": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Naw\u0101bsh\u0101h": {"country": "Pakistan", "subcountry": "Sindh"}, "Naushahro F\u012broz": {"country": "Pakistan", "subcountry": "Sindh"}, "Naushahra Virk\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "Naudero": {"country": "Pakistan", "subcountry": "Sindh"}, "N\u0101row\u0101l": {"country": "Pakistan", "subcountry": "Punjab"}, "N\u0101rang": {"country": "Pakistan", "subcountry": "Punjab"}, "Naukot": {"country": "Pakistan", "subcountry": "Sindh"}, "Nank\u0101na S\u0101hib": {"country": "Pakistan", "subcountry": "Punjab"}, "Muzaffargarh": {"country": "Pakistan", "subcountry": "Punjab"}, "Muzaffar\u0101b\u0101d": {"country": "Pakistan", "subcountry": "Azad Kashmir"}, "Mustaf\u0101b\u0101d": {"country": "Pakistan", "subcountry": "Punjab"}, "Murree": {"country": "Pakistan", "subcountry": "Punjab"}, "Mur\u012bdke": {"country": "Pakistan", "subcountry": "Punjab"}, "Mult\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "Moro": {"country": "Pakistan", "subcountry": "Sindh"}, "Mithi": {"country": "Pakistan", "subcountry": "Sindh"}, "Mitha Tiw\u0101na": {"country": "Pakistan", "subcountry": "Punjab"}, "M\u012brpur M\u0101thelo": {"country": "Pakistan", "subcountry": "Sindh"}, "Mirpur Khas": {"country": "Pakistan", "subcountry": "Sindh"}, "Mingora": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Minchin\u0101b\u0101d": {"country": "Pakistan", "subcountry": "Punjab"}, "Mi\u0101nw\u0101li": {"country": "Pakistan", "subcountry": "Punjab"}, "Mi\u0101n Chann\u016bn": {"country": "Pakistan", "subcountry": "Punjab"}, "Mehr\u0101bpur": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Mehar": {"country": "Pakistan", "subcountry": "Sindh"}, "M\u0101tli": {"country": "Pakistan", "subcountry": "Sindh"}, "Mati\u0101ri": {"country": "Pakistan", "subcountry": "Sindh"}, "Mastung": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Mardan": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "M\u0101nsehra": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Mangla": {"country": "Pakistan", "subcountry": "Punjab"}, "Mandi Bah\u0101udd\u012bn": {"country": "Pakistan", "subcountry": "Punjab"}, "M\u0101n\u0101nw\u0101la": {"country": "Pakistan", "subcountry": "Punjab"}, "M\u0101mu K\u0101njan": {"country": "Pakistan", "subcountry": "Punjab"}, "Malir Cantonment": {"country": "Pakistan", "subcountry": "Sindh"}, "Malakw\u0101l": {"country": "Pakistan", "subcountry": "Punjab"}, "Mailsi": {"country": "Pakistan", "subcountry": "Punjab"}, "Mach": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Loralai": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Lodhr\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "Layyah": {"country": "Pakistan", "subcountry": "Punjab"}, "L\u0101rk\u0101na": {"country": "Pakistan", "subcountry": "Sindh"}, "L\u0101li\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "L\u0101la M\u016bsa": {"country": "Pakistan", "subcountry": "Punjab"}, "Lakki Marwat": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Lahore": {"country": "Pakistan", "subcountry": "Punjab"}, "Ladhew\u0101la War\u0101ich": {"country": "Pakistan", "subcountry": "Punjab"}, "L\u0101chi": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Kunri": {"country": "Pakistan", "subcountry": "Sindh"}, "Kunj\u0101h": {"country": "Pakistan", "subcountry": "Punjab"}, "Kundi\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "Kul\u0101chi": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Kot Sam\u0101ba": {"country": "Pakistan", "subcountry": "Punjab"}, "Kotri": {"country": "Pakistan", "subcountry": "Sindh"}, "Kot R\u0101dha Kishan": {"country": "Pakistan", "subcountry": "Punjab"}, "Kot M\u016bmin": {"country": "Pakistan", "subcountry": "Punjab"}, "Kot Malik": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Kotli Loh\u0101r\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "Kotli": {"country": "Pakistan", "subcountry": "Azad Kashmir"}, "Kot Ghul\u0101m Muhammad": {"country": "Pakistan", "subcountry": "Punjab"}, "Kot Diji": {"country": "Pakistan", "subcountry": "Sindh"}, "Kot Addu": {"country": "Pakistan", "subcountry": "Punjab"}, "Koh\u0101t": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Khush\u0101b": {"country": "Pakistan", "subcountry": "Punjab"}, "Khurri\u0101nw\u0101la": {"country": "Pakistan", "subcountry": "Punjab"}, "Khewra": {"country": "Pakistan", "subcountry": "Punjab"}, "Kh\u0101ri\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "Kh\u0101r\u0101n": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Kh\u0101npur": {"country": "Pakistan", "subcountry": "Sindh"}, "Kh\u0101ngarh": {"country": "Pakistan", "subcountry": "Punjab"}, "Kh\u0101ng\u0101h Dogr\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "Khal\u0101bat": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Khairpur Nathan Sh\u0101h": {"country": "Pakistan", "subcountry": "Sindh"}, "Kas\u016br": {"country": "Pakistan", "subcountry": "Punjab"}, "Kashmor": {"country": "Pakistan", "subcountry": "Sindh"}, "Karor": {"country": "Pakistan", "subcountry": "Punjab"}, "Karachi": {"country": "Pakistan", "subcountry": "Sindh"}, "Kanganpur": {"country": "Pakistan", "subcountry": "Punjab"}, "Kandi\u0101ro": {"country": "Pakistan", "subcountry": "Sindh"}, "Kandhkot": {"country": "Pakistan", "subcountry": "Sindh"}, "K\u0101mra": {"country": "Pakistan", "subcountry": "Punjab"}, "Kamoke": {"country": "Pakistan", "subcountry": "Punjab"}, "Kam\u012br": {"country": "Pakistan", "subcountry": "Punjab"}, "Kamar Mush\u0101ni": {"country": "Pakistan", "subcountry": "Punjab"}, "Kam\u0101lia": {"country": "Pakistan", "subcountry": "Punjab"}, "Kal\u016br Kot": {"country": "Pakistan", "subcountry": "Punjab"}, "Kallar Kah\u0101r": {"country": "Pakistan", "subcountry": "Punjab"}, "K\u0101leke Mandi": {"country": "Pakistan", "subcountry": "Punjab"}, "Kal\u0101t": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "K\u0101l\u0101b\u0101gh": {"country": "Pakistan", "subcountry": "Punjab"}, "Kah\u016bta": {"country": "Pakistan", "subcountry": "Punjab"}, "Kohror Pakka": {"country": "Pakistan", "subcountry": "Punjab"}, "K\u0101hna": {"country": "Pakistan", "subcountry": "Punjab"}, "Kab\u012brw\u0101la": {"country": "Pakistan", "subcountry": "Punjab"}, "Johi": {"country": "Pakistan", "subcountry": "Sindh"}, "J\u012bwani": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Jhumra": {"country": "Pakistan", "subcountry": "Punjab"}, "Jhol": {"country": "Pakistan", "subcountry": "Sindh"}, "Jhelum": {"country": "Pakistan", "subcountry": "Punjab"}, "Jhaw\u0101ri\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "Jhang Sadr": {"country": "Pakistan", "subcountry": "Punjab"}, "Jauhar\u0101b\u0101d": {"country": "Pakistan", "subcountry": "Punjab"}, "Jatoi Shim\u0101li": {"country": "Pakistan", "subcountry": "Punjab"}, "Jar\u0101nw\u0101la": {"country": "Pakistan", "subcountry": "Punjab"}, "Jand": {"country": "Pakistan", "subcountry": "Punjab"}, "J\u0101mpur": {"country": "Pakistan", "subcountry": "Punjab"}, "Jal\u0101lpur P\u012brw\u0101la": {"country": "Pakistan", "subcountry": "Punjab"}, "Jah\u0101ni\u0101n Sh\u0101h": {"country": "Pakistan", "subcountry": "Punjab"}, "Jacob\u0101b\u0101d": {"country": "Pakistan", "subcountry": "Sindh"}, "Islamabad": {"country": "Pakistan", "subcountry": "Isl\u0101m\u0101b\u0101d"}, "Hujra": {"country": "Pakistan", "subcountry": "Punjab"}, "Hingorja": {"country": "Pakistan", "subcountry": "Sindh"}, "Hazro": {"country": "Pakistan", "subcountry": "Punjab"}, "Haveli\u0101n": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Haveli": {"country": "Pakistan", "subcountry": "Punjab"}, "H\u0101silpur": {"country": "Pakistan", "subcountry": "Punjab"}, "Hasan Abd\u0101l": {"country": "Pakistan", "subcountry": "Punjab"}, "Haru Zbad": {"country": "Pakistan", "subcountry": "Punjab"}, "Harnoli": {"country": "Pakistan", "subcountry": "Punjab"}, "Har\u012bpur": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "H\u0101la": {"country": "Pakistan", "subcountry": "Sindh"}, "H\u0101fiz\u0101b\u0101d": {"country": "Pakistan", "subcountry": "Punjab"}, "Had\u0101li": {"country": "Pakistan", "subcountry": "Punjab"}, "Gwadar": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Gujr\u0101t": {"country": "Pakistan", "subcountry": "Punjab"}, "Gujr\u0101nw\u0101la": {"country": "Pakistan", "subcountry": "Punjab"}, "G\u016bjar Kh\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "Gojra": {"country": "Pakistan", "subcountry": "Punjab"}, "Ghotki": {"country": "Pakistan", "subcountry": "Sindh"}, "Ghauspur": {"country": "Pakistan", "subcountry": "Sindh"}, "Gh\u0101ro": {"country": "Pakistan", "subcountry": "Sindh"}, "Garh Mah\u0101r\u0101ja": {"country": "Pakistan", "subcountry": "Punjab"}, "Gambat": {"country": "Pakistan", "subcountry": "Sindh"}, "Fort Abb\u0101s": {"country": "Pakistan", "subcountry": "Punjab"}, "Fazalpur": {"country": "Pakistan", "subcountry": "Punjab"}, "Chak Two Hundred Forty-Nine Tda": {"country": "Pakistan", "subcountry": "Punjab"}, "Faruka": {"country": "Pakistan", "subcountry": "Punjab"}, "Faq\u012brw\u0101li": {"country": "Pakistan", "subcountry": "Punjab"}, "Faisal\u0101b\u0101d": {"country": "Pakistan", "subcountry": "Punjab"}, "Emin\u0101b\u0101d": {"country": "Pakistan", "subcountry": "Punjab"}, "Duny\u0101pur": {"country": "Pakistan", "subcountry": "Punjab"}, "Dunga Bunga": {"country": "Pakistan", "subcountry": "Punjab"}, "Dullew\u0101la": {"country": "Pakistan", "subcountry": "Punjab"}, "D\u012br": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "D\u012bp\u0101lpur": {"country": "Pakistan", "subcountry": "Punjab"}, "Dinga": {"country": "Pakistan", "subcountry": "Punjab"}, "Dijkot": {"country": "Pakistan", "subcountry": "Punjab"}, "Digri": {"country": "Pakistan", "subcountry": "Sindh"}, "Dhoro Naro": {"country": "Pakistan", "subcountry": "Sindh"}, "Dhanot": {"country": "Pakistan", "subcountry": "Punjab"}, "Dera Ism\u0101\u012bl Kh\u0101n": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Dera Ghazi Khan": {"country": "Pakistan", "subcountry": "Punjab"}, "Dera Bugti": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Daur": {"country": "Pakistan", "subcountry": "Sindh"}, "D\u0101\u016bd Khel": {"country": "Pakistan", "subcountry": "Punjab"}, "Daska": {"country": "Pakistan", "subcountry": "Punjab"}, "Darya Kh\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "D\u0101jal": {"country": "Pakistan", "subcountry": "Punjab"}, "Dadu": {"country": "Pakistan", "subcountry": "Sindh"}, "D\u0101dhar": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Ch\u016bni\u0101n": {"country": "Pakistan", "subcountry": "Punjab"}, "Ch\u016bhar K\u0101na": {"country": "Pakistan", "subcountry": "Punjab"}, "Chor": {"country": "Pakistan", "subcountry": "Sindh"}, "Choa Said\u0101n Sh\u0101h": {"country": "Pakistan", "subcountry": "Punjab"}, "Chishti\u0101n Mandi": {"country": "Pakistan", "subcountry": "Punjab"}, "Chiniot": {"country": "Pakistan", "subcountry": "Punjab"}, "Ch\u012bch\u0101watni": {"country": "Pakistan", "subcountry": "Punjab"}, "Chawinda": {"country": "Pakistan", "subcountry": "Punjab"}, "Charsadda": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Chaman": {"country": "Pakistan", "subcountry": "Balochist\u0101n"}, "Chakw\u0101l": {"country": "Pakistan", "subcountry": "Punjab"}, "Chak \u0100zam Saffo": {"country": "Pakistan", "subcountry": "Punjab"}, "B\u016brew\u0101la": {"country": "Pakistan", "subcountry": "Punjab"}, "Bhop\u0101lw\u0101la": {"country": "Pakistan", "subcountry": "Punjab"}, "Bhit Sh\u0101h": {"country": "Pakistan", "subcountry": "Sindh"}, "Bhimbar": {"country": "Pakistan", "subcountry": "Azad Kashmir"}, "Bhera": {"country": "Pakistan", "subcountry": "Punjab"}, "Bhaw\u0101na": {"country": "Pakistan", "subcountry": "Punjab"}, "Bh\u0101n": {"country": "Pakistan", "subcountry": "Sindh"}, "Bhalw\u0101l": {"country": "Pakistan", "subcountry": "Punjab"}, "Bhakkar": {"country": "Pakistan", "subcountry": "Punjab"}, "Bh\u0101i Pheru": {"country": "Pakistan", "subcountry": "Punjab"}, "Bat Khela": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Bas\u012brpur": {"country": "Pakistan", "subcountry": "Punjab"}, "Bannu": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Bah\u0101walpur": {"country": "Pakistan", "subcountry": "Punjab"}, "Bah\u0101walnagar": {"country": "Pakistan", "subcountry": "Punjab"}, "Bad\u012bn": {"country": "Pakistan", "subcountry": "Sindh"}, "Baddomalhi": {"country": "Pakistan", "subcountry": "Punjab"}, "Attock City": {"country": "Pakistan", "subcountry": "Punjab"}, "\u0100rifw\u0101la": {"country": "Pakistan", "subcountry": "Punjab"}, "Amangarh": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Akora": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Ahmadpur East": {"country": "Pakistan", "subcountry": "Punjab"}, "Abbott\u0101b\u0101d": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Nowshera Cantonment": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Ahmadpur Si\u0101l": {"country": "Pakistan", "subcountry": "Punjab"}, "New B\u0101d\u0101h": {"country": "Pakistan", "subcountry": "Sindh"}, "Tando Ghul\u0101m Ali": {"country": "Pakistan", "subcountry": "Sindh"}, "Seth\u0101rja Old": {"country": "Pakistan", "subcountry": "Sindh"}, "Ris\u0101lpur": {"country": "Pakistan", "subcountry": "Khyber Pakhtunkhwa"}, "Malakwal City": {"country": "Pakistan", "subcountry": "Punjab"}, "\u017byrard\u00f3w": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "\u017boliborz": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Zielonka": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Zamo\u015b\u0107": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "Zambr\u00f3w": {"country": "Poland", "subcountry": "Podlasie"}, "Z\u0105bki": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Wyszk\u00f3w": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Wo\u0142omin": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Wola": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "W\u0142ochy": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Wieliczka": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Weso\u0142a": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Wawer": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Warsaw": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Ursus": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Tomasz\u00f3w Mazowiecki": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Tomasz\u00f3w Lubelski": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "Tarn\u00f3w": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Tarnobrzeg": {"country": "Poland", "subcountry": "Subcarpathian Voivodeship"}, "Targ\u00f3wek": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Szczytno": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "\u015awidnik": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "Suwa\u0142ki": {"country": "Poland", "subcountry": "Podlasie"}, "Sulej\u00f3wek": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Stasz\u00f3w": {"country": "Poland", "subcountry": "\u015awi\u0119tokrzyskie"}, "Starachowice": {"country": "Poland", "subcountry": "\u015awi\u0119tokrzyskie"}, "Stalowa Wola": {"country": "Poland", "subcountry": "Subcarpathian Voivodeship"}, "\u015ar\u00f3dmie\u015bcie": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Soko\u0142\u00f3w Podlaski": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Sok\u00f3\u0142ka": {"country": "Poland", "subcountry": "Podlasie"}, "Sochaczew": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Skierniewice": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Skar\u017cysko-Kamienna": {"country": "Poland", "subcountry": "\u015awi\u0119tokrzyskie"}, "Siemiatycze": {"country": "Poland", "subcountry": "Podlasie"}, "Siedlce": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Sanok": {"country": "Poland", "subcountry": "Subcarpathian Voivodeship"}, "Sandomierz": {"country": "Poland", "subcountry": "\u015awi\u0119tokrzyskie"}, "Rzesz\u00f3w": {"country": "Poland", "subcountry": "Subcarpathian Voivodeship"}, "Ropczyce": {"country": "Poland", "subcountry": "Subcarpathian Voivodeship"}, "Rembert\u00f3w": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Rawa Mazowiecka": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Radzy\u0144 Podlaski": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "Radom": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Pu\u0142tusk": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Pu\u0142awy": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "Przeworsk": {"country": "Poland", "subcountry": "Subcarpathian Voivodeship"}, "Przemy\u015bl": {"country": "Poland", "subcountry": "Subcarpathian Voivodeship"}, "Przasnysz": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Pruszk\u00f3w": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "P\u0142o\u0144sk": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Pisz": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "Pionki": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Piast\u00f3w": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Piaseczno": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Otwock": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Ostr\u00f3w Mazowiecka": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Ostrowiec \u015awi\u0119tokrzyski": {"country": "Poland", "subcountry": "\u015awi\u0119tokrzyskie"}, "Ostro\u0142\u0119ka": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Opoczno": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Olsztyn": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "Olecko": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "Ochota": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Nowy Targ": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Nowy S\u0105cz": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Nowy Dw\u00f3r Mazowiecki": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Nisko": {"country": "Poland", "subcountry": "Subcarpathian Voivodeship"}, "Mr\u0105gowo": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "Mokot\u00f3w": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "M\u0142awa": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Mi\u0144sk Mazowiecki": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Milan\u00f3wek": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Mielec": {"country": "Poland", "subcountry": "Subcarpathian Voivodeship"}, "Mi\u0119dzyrzec Podlaski": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "Marki": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "\u0141uk\u00f3w": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "Lublin": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "Lubart\u00f3w": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "\u0141om\u017ca": {"country": "Poland", "subcountry": "Podlasie"}, "\u0141omianki": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Lidzbark Warmi\u0144ski": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "Legionowo": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "\u0141\u0119czna": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "\u0141apy": {"country": "Poland", "subcountry": "Podlasie"}, "\u0141a\u0144cut": {"country": "Poland", "subcountry": "Subcarpathian Voivodeship"}, "Krosno": {"country": "Poland", "subcountry": "Subcarpathian Voivodeship"}, "Krasnystaw": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "Kra\u015bnik": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "Kozienice": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Konstancin-Jeziorna": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Ko\u0144skie": {"country": "Poland", "subcountry": "\u015awi\u0119tokrzyskie"}, "Koby\u0142ka": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Kielce": {"country": "Poland", "subcountry": "\u015awi\u0119tokrzyskie"}, "K\u0119trzyn": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "Kabaty": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "J\u00f3zef\u00f3w": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "J\u0119drzej\u00f3w": {"country": "Poland", "subcountry": "\u015awi\u0119tokrzyskie"}, "Jas\u0142o": {"country": "Poland", "subcountry": "Subcarpathian Voivodeship"}, "Jaros\u0142aw": {"country": "Poland", "subcountry": "Subcarpathian Voivodeship"}, "Hrubiesz\u00f3w": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "Hajn\u00f3wka": {"country": "Poland", "subcountry": "Podlasie"}, "Grodzisk Mazowiecki": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Grajewo": {"country": "Poland", "subcountry": "Podlasie"}, "Gorlice": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Gi\u017cycko": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "Gier\u0142o\u017c": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "Garwolin": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "E\u0142k": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "Dzia\u0142dowo": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "D\u0119blin": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "D\u0119bica": {"country": "Poland", "subcountry": "Subcarpathian Voivodeship"}, "Ciechan\u00f3w": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Che\u0142m": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "Busko-Zdr\u00f3j": {"country": "Poland", "subcountry": "\u015awi\u0119tokrzyskie"}, "Brzesko": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Bochnia": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Bi\u0142goraj": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "Bielsk Podlaski": {"country": "Poland", "subcountry": "Podlasie"}, "Bielany": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Bia\u0142ystok": {"country": "Poland", "subcountry": "Podlasie"}, "Bia\u0142o\u0142eka": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Bia\u0142a Podlaska": {"country": "Poland", "subcountry": "Lublin Voivodeship"}, "Bemowo": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Bartoszyce": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "August\u00f3w": {"country": "Poland", "subcountry": "Podlasie"}, "\u017bywiec": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "\u017bory": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Z\u0142ot\u00f3w": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Z\u0142otoryja": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Zielona G\u00f3ra": {"country": "Poland", "subcountry": "Lubusz"}, "Zgorzelec": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Zgierz": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Zdu\u0144ska Wola": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Zawiercie": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "\u017bary": {"country": "Poland", "subcountry": "Lubusz"}, "Zakopane": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "\u017baga\u0144": {"country": "Poland", "subcountry": "Lubusz"}, "Zabrze": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Z\u0105bkowice \u015al\u0105skie": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Wrze\u015bnia": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Wroc\u0142aw": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Wodzis\u0142aw \u015al\u0105ski": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "W\u0142oc\u0142awek": {"country": "Poland", "subcountry": "Kujawsko-Pomorskie"}, "Wielu\u0144": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Wejherowo": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Wa\u0142cz": {"country": "Poland", "subcountry": "West Pomeranian Voivodeship"}, "Wa\u0142brzych": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "W\u0105growiec": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Wadowice": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Ustro\u0144": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Ustka": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Tychy": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Turek": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Trzebinia": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Trzcianka": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Toru\u0144": {"country": "Poland", "subcountry": "Kujawsko-Pomorskie"}, "Tczew": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Tarnowskie G\u00f3ry": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Szczecinek": {"country": "Poland", "subcountry": "West Pomeranian Voivodeship"}, "Szczecin": {"country": "Poland", "subcountry": "West Pomeranian Voivodeship"}, "Szamotu\u0142y": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "\u015awinouj\u015bcie": {"country": "Poland", "subcountry": "West Pomeranian Voivodeship"}, "\u015awi\u0119toch\u0142owice": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "\u015awiebodzin": {"country": "Poland", "subcountry": "Lubusz"}, "\u015awiecie": {"country": "Poland", "subcountry": "Kujawsko-Pomorskie"}, "\u015awiebodzice": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "\u015awidwin": {"country": "Poland", "subcountry": "West Pomeranian Voivodeship"}, "\u015awidnica": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Swarz\u0119dz": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Sulech\u00f3w": {"country": "Poland", "subcountry": "Lubusz"}, "Strzelce Opolskie": {"country": "Poland", "subcountry": "Opole Voivodeship"}, "Strzegom": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Starogard Gda\u0144ski": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Stargard Szczeci\u0144ski": {"country": "Poland", "subcountry": "West Pomeranian Voivodeship"}, "\u015aroda Wielkopolska": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "\u015arem": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Sosnowiec": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Sopot": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Solec Kujawski": {"country": "Poland", "subcountry": "Kujawsko-Pomorskie"}, "S\u0142upsk": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "S\u0142ubice": {"country": "Poland", "subcountry": "Lubusz"}, "Skawina": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Sierpc": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Sieradz": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Siemianowice \u015al\u0105skie": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Rypin": {"country": "Poland", "subcountry": "Kujawsko-Pomorskie"}, "Rydu\u0142towy": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Rybnik": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Rumia": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Ruda \u015al\u0105ska": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Reda": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Rawicz": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Radzionk\u00f3w": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Radomsko": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Radlin": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Racib\u00f3rz": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Pyskowice": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Pszczyna": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Pruszcz Gda\u0144ski": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Prudnik": {"country": "Poland", "subcountry": "Opole Voivodeship"}, "Pozna\u0144": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Polkowice": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Police": {"country": "Poland", "subcountry": "West Pomeranian Voivodeship"}, "P\u0142ock": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Pleszew": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Piotrk\u00f3w Trybunalski": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Pi\u0142a": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Piekary \u015al\u0105skie": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Pabianice": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Ozork\u00f3w": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "O\u015bwi\u0119cim": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Ostr\u00f3w Wielkopolski": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Ostr\u00f3da": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "Orzesze": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Opole": {"country": "Poland", "subcountry": "Opole Voivodeship"}, "Olkusz": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Ole\u015bnica": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "O\u0142awa": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Oborniki": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Nysa": {"country": "Poland", "subcountry": "Opole Voivodeship"}, "Nowy Tomy\u015bl": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Nowogard": {"country": "Poland", "subcountry": "West Pomeranian Voivodeship"}, "Nowa S\u00f3l": {"country": "Poland", "subcountry": "Lubusz"}, "Nowa Ruda": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Namys\u0142\u00f3w": {"country": "Poland", "subcountry": "Opole Voivodeship"}, "Nak\u0142o Nad Noteci\u0105": {"country": "Poland", "subcountry": "Kujawsko-Pomorskie"}, "Myszk\u00f3w": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Mys\u0142owice": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "My\u015blenice": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Miko\u0142\u00f3w": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Mi\u0119dzyrzecz": {"country": "Poland", "subcountry": "Lubusz"}, "Malbork": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Lubo\u0144": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Lubliniec": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Lubin": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Luba\u0144": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "\u0141owicz": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "\u0141\u00f3d\u017a": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Libi\u0105\u017c": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Leszno": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Legnica": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "L\u0119dziny": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "\u0141\u0119czyca": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "L\u0119bork": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "\u0141aziska G\u00f3rne": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "\u0141ask": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Kwidzyn": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Kutno": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Krotoszyn": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Krapkowice": {"country": "Poland", "subcountry": "Opole Voivodeship"}, "Krak\u00f3w": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Koszalin": {"country": "Poland", "subcountry": "West Pomeranian Voivodeship"}, "Kostrzyn Nad Odr\u0105": {"country": "Poland", "subcountry": "Lubusz"}, "Ko\u015bcierzyna": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Ko\u015bcian": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Konstantyn\u00f3w \u0141\u00f3dzki": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Konin": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Ko\u0142obrzeg": {"country": "Poland", "subcountry": "West Pomeranian Voivodeship"}, "Ko\u0142o": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Knur\u00f3w": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Kluczbork": {"country": "Poland", "subcountry": "Opole Voivodeship"}, "K\u0142odzko": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "K\u0119ty": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "K\u0119dzierzyn-Ko\u017ale": {"country": "Poland", "subcountry": "Opole Voivodeship"}, "Katowice": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Kartuzy": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Kamienna G\u00f3ra": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Kalisz": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Jelenia G\u00f3ra": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Jelcz": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Jaworzno": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Jawor": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Jastrz\u0119bie Zdr\u00f3j": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Jarocin": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Inowroc\u0142aw": {"country": "Poland", "subcountry": "Kujawsko-Pomorskie"}, "I\u0142awa": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "Gubin": {"country": "Poland", "subcountry": "Lubusz"}, "Gryfino": {"country": "Poland", "subcountry": "West Pomeranian Voivodeship"}, "Gryfice": {"country": "Poland", "subcountry": "West Pomeranian Voivodeship"}, "Grudzi\u0105dz": {"country": "Poland", "subcountry": "Kujawsko-Pomorskie"}, "Gostynin": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Gosty\u0144": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Gorz\u00f3w Wielkopolski": {"country": "Poland", "subcountry": "Lubusz"}, "Goleni\u00f3w": {"country": "Poland", "subcountry": "West Pomeranian Voivodeship"}, "Gniezno": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "G\u0142ucho\u0142azy": {"country": "Poland", "subcountry": "Opole Voivodeship"}, "G\u0142owno": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "G\u0142og\u00f3w": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Gliwice": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Gdynia": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Gda\u0144sk": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Fordon": {"country": "Poland", "subcountry": "Kujawsko-Pomorskie"}, "Elbl\u0105g": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "Dzier\u017coni\u00f3w": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "D\u0105browa G\u00f3rnicza": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Cz\u0119stochowa": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Czerwionka-Leszczyny": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Czelad\u017a": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Czechowice-Dziedzice": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Cieszyn": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Chrzan\u00f3w": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Choszczno": {"country": "Poland", "subcountry": "West Pomeranian Voivodeship"}, "Chorz\u00f3w": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Chojnice": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Chodzie\u017c": {"country": "Poland", "subcountry": "Greater Poland Voivodeship"}, "Che\u0142m\u017ca": {"country": "Poland", "subcountry": "Kujawsko-Pomorskie"}, "Che\u0142mno": {"country": "Poland", "subcountry": "Kujawsko-Pomorskie"}, "Byt\u00f3w": {"country": "Poland", "subcountry": "Pomeranian Voivodeship"}, "Bytom": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Bydgoszcz": {"country": "Poland", "subcountry": "Kujawsko-Pomorskie"}, "Brzeg": {"country": "Poland", "subcountry": "Opole Voivodeship"}, "Brodnica": {"country": "Poland", "subcountry": "Kujawsko-Pomorskie"}, "Braniewo": {"country": "Poland", "subcountry": "Warmian-Masurian Voivodeship"}, "Boles\u0142awiec": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Bogusz\u00f3w-Gorce": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Bogatynia": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Bieru\u0144": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Bielsko-Biala": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Bielawa": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Bia\u0142ogard": {"country": "Poland", "subcountry": "West Pomeranian Voivodeship"}, "Be\u0142chat\u00f3w": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "B\u0119dzin": {"country": "Poland", "subcountry": "Silesian Voivodeship"}, "Andrych\u00f3w": {"country": "Poland", "subcountry": "Lesser Poland Voivodeship"}, "Aleksandr\u00f3w \u0141\u00f3dzki": {"country": "Poland", "subcountry": "\u0141\u00f3d\u017a Voivodeship"}, "Ursyn\u00f3w": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Praga P\u00f3\u0142noc": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Praga Po\u0142udnie": {"country": "Poland", "subcountry": "Masovian Voivodeship"}, "Jelcz Laskowice": {"country": "Poland", "subcountry": "Lower Silesian Voivodeship"}, "Saint-Pierre": {"country": "Reunion", "subcountry": "R\u00e9union"}, "Adamstown": {"country": "Pitcairn", "subcountry": "N/A"}, "Aguadilla": {"country": "Puerto Rico", "subcountry": "Aguadilla"}, "Arecibo": {"country": "Puerto Rico", "subcountry": "Arecibo"}, "Barceloneta": {"country": "Puerto Rico", "subcountry": "Barceloneta"}, "Bayam\u00f3n": {"country": "Puerto Rico", "subcountry": "Bayam\u00f3n"}, "Caguas": {"country": "Puerto Rico", "subcountry": "Caguas"}, "Cata\u00f1o": {"country": "Puerto Rico", "subcountry": "Catano"}, "Cayey": {"country": "Puerto Rico", "subcountry": "Cayey"}, "Fajardo": {"country": "Puerto Rico", "subcountry": "Fajardo"}, "Guayama": {"country": "Puerto Rico", "subcountry": "Guayama"}, "Guaynabo": {"country": "Puerto Rico", "subcountry": "Guaynabo"}, "Humacao": {"country": "Puerto Rico", "subcountry": "Humacao"}, "Levittown": {"country": "United States", "subcountry": "Pennsylvania"}, "Manat\u00ed": {"country": "Puerto Rico", "subcountry": "Manati"}, "Mayag\u00fcez": {"country": "Puerto Rico", "subcountry": "Mayaguez"}, "Ponce": {"country": "Puerto Rico", "subcountry": "Ponce"}, "Trujillo Alto": {"country": "Puerto Rico", "subcountry": "Trujillo Alto"}, "Vega Baja": {"country": "Puerto Rico", "subcountry": "Vega Baja"}, "Yauco": {"country": "Puerto Rico", "subcountry": "Yauco"}, "Rafa\u1e29": {"country": "Palestinian Territory", "subcountry": "Gaza Strip"}, "An Nu\u015fayr\u0101t": {"country": "Palestinian Territory", "subcountry": "Gaza Strip"}, "Kh\u0101n Y\u016bnis": {"country": "Palestinian Territory", "subcountry": "Gaza Strip"}, "Jab\u0101ly\u0101": {"country": "Palestinian Territory", "subcountry": "Gaza Strip"}, "Gaza": {"country": "Palestinian Territory", "subcountry": "Gaza Strip"}, "Dayr Al Bala\u1e29": {"country": "Palestinian Territory", "subcountry": "Gaza Strip"}, "Bayt L\u0101hy\u0101": {"country": "Palestinian Territory", "subcountry": "Gaza Strip"}, "Bayt \u1e28\u0101n\u016bn": {"country": "Palestinian Territory", "subcountry": "Gaza Strip"}, "Ban\u012b Suhayl\u0101": {"country": "Palestinian Territory", "subcountry": "Gaza Strip"}, "Al Burayj": {"country": "Palestinian Territory", "subcountry": "Gaza Strip"}, "\u2018Abas\u0101n Al Kab\u012brah": {"country": "Palestinian Territory", "subcountry": "Gaza Strip"}, "Yuta": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "\u0162\u016blkarm": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "\u0162\u016bb\u0101s": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Sa\u2018\u012ar": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Ramallah": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Qalq\u012blyah": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Qab\u0101\u0163\u012byah": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Nablus": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Jan\u012bn": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Idhn\u0101": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "\u1e28al\u1e29\u016bl": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "D\u016br\u0101": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Bethlehem": {"country": "South Africa", "subcountry": "Orange Free State"}, "Bayt J\u0101l\u0101": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Ban\u012b Na\u2018\u012am": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Bal\u0101\u0163ah": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Az\u0327 Z\u0327\u0100hir\u012byah": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "As Sam\u016b\u2018": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Ar R\u0101m Wa \u1e10\u0101\u1e29iyat Al Bar\u012bd": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Jericho": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Al Y\u0101m\u016bn": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Hebron": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Al B\u012brah": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Al \u2018Ayzar\u012byah": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Old City": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Al Qar\u0101rah": {"country": "Palestinian Territory", "subcountry": "Gaza Strip"}, "Az Zuw\u0101ydah": {"country": "Palestinian Territory", "subcountry": "Gaza Strip"}, "East Jerusalem": {"country": "Palestinian Territory", "subcountry": "West Bank"}, "Vila Franca De Xira": {"country": "Portugal", "subcountry": "Lisbon"}, "Vialonga": {"country": "Portugal", "subcountry": "Lisbon"}, "Torres Vedras": {"country": "Portugal", "subcountry": "Lisbon"}, "Tomar": {"country": "Portugal", "subcountry": "Santar\u00e9m"}, "Sintra": {"country": "Portugal", "subcountry": "Lisbon"}, "Sesimbra": {"country": "Portugal", "subcountry": "Set\u00fabal"}, "Set\u00fabal": {"country": "Portugal", "subcountry": "Set\u00fabal"}, "S\u00e3o Jo\u00e3o Da Talha": {"country": "Portugal", "subcountry": "Lisbon"}, "S\u00e3o Domingos De Rana": {"country": "Portugal", "subcountry": "Lisbon"}, "Santa Iria Da Az\u00f3ia": {"country": "Portugal", "subcountry": "Lisbon"}, "Sacav\u00e9m": {"country": "Portugal", "subcountry": "Lisbon"}, "Rio De Mouro": {"country": "Portugal", "subcountry": "Lisbon"}, "Ramada": {"country": "Portugal", "subcountry": "Lisbon"}, "Queluz": {"country": "Portugal", "subcountry": "Lisbon"}, "Quarteira": {"country": "Portugal", "subcountry": "Faro"}, "P\u00f3voa De Santa Iria": {"country": "Portugal", "subcountry": "Lisbon"}, "Portim\u00e3o": {"country": "Portugal", "subcountry": "Faro"}, "Portalegre": {"country": "Portugal", "subcountry": "Portalegre"}, "Pontinha": {"country": "Portugal", "subcountry": "Lisbon"}, "Pinhal Novo": {"country": "Portugal", "subcountry": "Set\u00fabal"}, "Peniche": {"country": "Portugal", "subcountry": "Leiria"}, "Parede": {"country": "Portugal", "subcountry": "Lisbon"}, "Palmela": {"country": "Portugal", "subcountry": "Set\u00fabal"}, "Pa\u00e7o De Arcos": {"country": "Portugal", "subcountry": "Lisbon"}, "Olh\u00e3o": {"country": "Portugal", "subcountry": "Faro"}, "Odivelas": {"country": "Portugal", "subcountry": "Lisbon"}, "Monte Estoril": {"country": "Portugal", "subcountry": "Lisbon"}, "Monsanto": {"country": "Portugal", "subcountry": "Santar\u00e9m"}, "Moita": {"country": "Portugal", "subcountry": "Set\u00fabal"}, "Marinha Grande": {"country": "Portugal", "subcountry": "Leiria"}, "Loures": {"country": "Portugal", "subcountry": "Lisbon"}, "Loul\u00e9": {"country": "Portugal", "subcountry": "Faro"}, "Lisbon": {"country": "Portugal", "subcountry": "Lisbon"}, "Linda-A-Velha": {"country": "Portugal", "subcountry": "Lisbon"}, "Leiria": {"country": "Portugal", "subcountry": "Leiria"}, "Laranjeiro": {"country": "Portugal", "subcountry": "Faro"}, "Funchal": {"country": "Portugal", "subcountry": "Madeira"}, "Faro": {"country": "Portugal", "subcountry": "Faro"}, "\u00c9vora": {"country": "Portugal", "subcountry": "\u00c9vora"}, "Estoril": {"country": "Portugal", "subcountry": "Lisbon"}, "Entroncamento": {"country": "Portugal", "subcountry": "Santar\u00e9m"}, "Corroios": {"country": "Portugal", "subcountry": "Set\u00fabal"}, "Charneca": {"country": "Portugal", "subcountry": "Set\u00fabal"}, "Castelo Branco": {"country": "Portugal", "subcountry": "Castelo Branco"}, "Cascais": {"country": "Portugal", "subcountry": "Lisbon"}, "Carnaxide": {"country": "Portugal", "subcountry": "Lisbon"}, "Carcavelos": {"country": "Portugal", "subcountry": "Lisbon"}, "Caparica": {"country": "Portugal", "subcountry": "Set\u00fabal"}, "Camarate": {"country": "Portugal", "subcountry": "Lisbon"}, "C\u00e2mara De Lobos": {"country": "Portugal", "subcountry": "Madeira"}, "Caldas Da Rainha": {"country": "Portugal", "subcountry": "Leiria"}, "Cac\u00e9m": {"country": "Portugal", "subcountry": "Lisbon"}, "Belas": {"country": "Portugal", "subcountry": "Lisbon"}, "Beja": {"country": "Portugal", "subcountry": "Beja"}, "Barreiro": {"country": "Portugal", "subcountry": "Set\u00fabal"}, "Arrentela": {"country": "Portugal", "subcountry": "Set\u00fabal"}, "Amora": {"country": "Portugal", "subcountry": "Set\u00fabal"}, "Amadora": {"country": "Portugal", "subcountry": "Lisbon"}, "Almada": {"country": "Portugal", "subcountry": "Set\u00fabal"}, "Alg\u00e9s": {"country": "Portugal", "subcountry": "Lisbon"}, "Alcabideche": {"country": "Portugal", "subcountry": "Lisbon"}, "Albufeira": {"country": "Portugal", "subcountry": "Faro"}, "Vila Real": {"country": "Portugal", "subcountry": "Vila Real"}, "Vilar De Andorinho": {"country": "Portugal", "subcountry": "Porto"}, "Vila Nova De Gaia": {"country": "Portugal", "subcountry": "Porto"}, "Vila Do Conde": {"country": "Portugal", "subcountry": "Porto"}, "Viana Do Castelo": {"country": "Portugal", "subcountry": "Viana do Castelo"}, "Valongo": {"country": "Portugal", "subcountry": "Porto"}, "Sequeira": {"country": "Portugal", "subcountry": "Guarda"}, "Senhora Da Hora": {"country": "Portugal", "subcountry": "Porto"}, "S\u00e3o Pedro Da Cova": {"country": "Portugal", "subcountry": "Porto"}, "S\u00e3o Mamede De Infesta": {"country": "Portugal", "subcountry": "Porto"}, "S\u00e3o Jo\u00e3o Da Madeira": {"country": "Portugal", "subcountry": "Aveiro"}, "Rio Tinto": {"country": "Portugal", "subcountry": "Porto"}, "P\u00f3voa De Varzim": {"country": "Portugal", "subcountry": "Porto"}, "Porto": {"country": "Portugal", "subcountry": "Porto"}, "Ponte De Lima": {"country": "Portugal", "subcountry": "Viana do Castelo"}, "Pedroso": {"country": "Portugal", "subcountry": "Porto"}, "Ovar": {"country": "Portugal", "subcountry": "Aveiro"}, "Oliveira Do Douro": {"country": "Portugal", "subcountry": "Porto"}, "Mon\u00e7\u00e3o": {"country": "Portugal", "subcountry": "Viana do Castelo"}, "Matosinhos": {"country": "Portugal", "subcountry": "Porto"}, "Maia": {"country": "Portugal", "subcountry": "Porto"}, "Le\u00e7a Do Bailio": {"country": "Portugal", "subcountry": "Porto"}, "Le\u00e7a Da Palmeira": {"country": "Portugal", "subcountry": "Porto"}, "\u00cdlhavo": {"country": "Portugal", "subcountry": "Aveiro"}, "Guimar\u00e3es": {"country": "Portugal", "subcountry": "Braga"}, "Guarda": {"country": "Portugal", "subcountry": "Guarda"}, "Gondomar": {"country": "Portugal", "subcountry": "Porto"}, "Feira": {"country": "Portugal", "subcountry": "Aveiro"}, "F\u00e2nzeres": {"country": "Portugal", "subcountry": "Porto"}, "Fafe": {"country": "Portugal", "subcountry": "Braga"}, "Esposende": {"country": "Portugal", "subcountry": "Braga"}, "Ermesinde": {"country": "Portugal", "subcountry": "Porto"}, "Custoias": {"country": "Portugal", "subcountry": "Guarda"}, "Covilh\u00e3": {"country": "Portugal", "subcountry": "Castelo Branco"}, "Coimbra": {"country": "Portugal", "subcountry": "Coimbra"}, "Canidelo": {"country": "Portugal", "subcountry": "Porto"}, "Braga": {"country": "Portugal", "subcountry": "Braga"}, "Bougado": {"country": "Portugal", "subcountry": "Porto"}, "Barcelos": {"country": "Portugal", "subcountry": "Braga"}, "Baguim Do Monte": {"country": "Portugal", "subcountry": "Porto"}, "Aveiro": {"country": "Portugal", "subcountry": "Aveiro"}, "\u00c1guas Santas": {"country": "Portugal", "subcountry": "Porto"}, "Ponta Delgada": {"country": "Portugal", "subcountry": "Azores"}, "Melekeok": {"country": "Palau", "subcountry": "Melekeok"}, "Villa Hayes": {"country": "Paraguay", "subcountry": "Presidente Hayes"}, "Villa Elisa": {"country": "Paraguay", "subcountry": "Central"}, "San Juan Bautista": {"country": "Paraguay", "subcountry": "Misiones"}, "Presidente Franco": {"country": "Paraguay", "subcountry": "Alto Paran\u00e1"}, "Pedro Juan Caballero": {"country": "Paraguay", "subcountry": "Amambay"}, "Nemby": {"country": "Paraguay", "subcountry": "Central"}, "Limpio": {"country": "Paraguay", "subcountry": "Central"}, "Lambar\u00e9": {"country": "Paraguay", "subcountry": "Central"}, "Itaugu\u00e1": {"country": "Paraguay", "subcountry": "Central"}, "It\u00e1": {"country": "Paraguay", "subcountry": "Central"}, "Fernando De La Mora": {"country": "Paraguay", "subcountry": "Central"}, "Encarnaci\u00f3n": {"country": "Paraguay", "subcountry": "Itap\u00faa"}, "Coronel Oviedo": {"country": "Paraguay", "subcountry": "Caaguaz\u00fa"}, "Colonia Mariano Roque Alonso": {"country": "Paraguay", "subcountry": "Central"}, "Ciudad Del Este": {"country": "Paraguay", "subcountry": "Alto Paran\u00e1"}, "Capiat\u00e1": {"country": "Paraguay", "subcountry": "Central"}, "Caazap\u00e1": {"country": "Paraguay", "subcountry": "Caazap\u00e1"}, "Caaguaz\u00fa": {"country": "Paraguay", "subcountry": "Caaguaz\u00fa"}, "Caacup\u00e9": {"country": "Paraguay", "subcountry": "Cordillera"}, "Asunci\u00f3n": {"country": "Paraguay", "subcountry": "Asunci\u00f3n"}, "Umm \u015eal\u0101l Mu\u1e29ammad": {"country": "Qatar", "subcountry": "Balad\u012byat Umm \u015eal\u0101l"}, "Ar Rayy\u0101n": {"country": "Qatar", "subcountry": "Balad\u012byat ar Rayy\u0101n"}, "Al Wakrah": {"country": "Qatar", "subcountry": "Al Wakrah"}, "Al Khawr": {"country": "Qatar", "subcountry": "Al Khawr"}, "Doha": {"country": "Qatar", "subcountry": "Balad\u012byat ad Daw\u1e29ah"}, "Saint-Paul": {"country": "Reunion", "subcountry": "R\u00e9union"}, "Sainte-Suzanne": {"country": "Reunion", "subcountry": "R\u00e9union"}, "Saint-Beno\u00eet": {"country": "Reunion", "subcountry": "R\u00e9union"}, "Saint-Andr\u00e9": {"country": "Reunion", "subcountry": "R\u00e9union"}, "Le Tampon": {"country": "Reunion", "subcountry": "R\u00e9union"}, "Le Port": {"country": "Reunion", "subcountry": "R\u00e9union"}, "La Possession": {"country": "Reunion", "subcountry": "R\u00e9union"}, "Piton Saint-Leu": {"country": "Reunion", "subcountry": "N/A"}, "Zimnicea": {"country": "Romania", "subcountry": "Teleorman"}, "Z\u0103rne\u0219ti": {"country": "Romania", "subcountry": "Bra\u015fov"}, "Zal\u0103u": {"country": "Romania", "subcountry": "S\u0103laj"}, "Vulcan": {"country": "Romania", "subcountry": "Hunedoara"}, "Voluntari": {"country": "Romania", "subcountry": "Ilfov"}, "Vi\u015feu De Sus": {"country": "Romania", "subcountry": "Maramure\u015f"}, "Vatra Dornei": {"country": "Romania", "subcountry": "Suceava"}, "Vaslui": {"country": "Romania", "subcountry": "Vaslui"}, "Urziceni": {"country": "Romania", "subcountry": "Ialomi\u0163a"}, "Turnu M\u0103gurele": {"country": "Romania", "subcountry": "Teleorman"}, "Turda": {"country": "Romania", "subcountry": "Cluj"}, "Tulcea": {"country": "Romania", "subcountry": "Tulcea"}, "T\u00e2rn\u0103veni": {"country": "Romania", "subcountry": "Mure\u015f"}, "T\u00e2rgu Secuiesc": {"country": "Romania", "subcountry": "Covasna"}, "T\u00e2rgu Neam\u0163": {"country": "Romania", "subcountry": "Neam\u0163"}, "T\u00e2rgu-Mure\u015f": {"country": "Romania", "subcountry": "Mure\u015f"}, "T\u00e2rgu Jiu": {"country": "Romania", "subcountry": "Gorj"}, "T\u00e2rgovi\u015fte": {"country": "Romania", "subcountry": "D\u00e2mbovi\u0163a"}, "Timi\u015foara": {"country": "Romania", "subcountry": "Timi\u015f"}, "Tecuci": {"country": "Romania", "subcountry": "Gala\u0163i"}, "Suceava": {"country": "Romania", "subcountry": "Suceava"}, "Slatina": {"country": "Romania", "subcountry": "Olt"}, "\u015eimleu Silvaniei": {"country": "Romania", "subcountry": "S\u0103laj"}, "Sighetu Marma\u0163iei": {"country": "Romania", "subcountry": "Maramure\u015f"}, "Sibiu": {"country": "Romania", "subcountry": "Sibiu"}, "Sf\u00e2ntu-Gheorghe": {"country": "Romania", "subcountry": "Covasna"}, "Sebe\u015f": {"country": "Romania", "subcountry": "Alba"}, "Satu Mare": {"country": "Romania", "subcountry": "Satu Mare"}, "Salonta": {"country": "Romania", "subcountry": "Bihor"}, "S\u0103cele": {"country": "Romania", "subcountry": "Bra\u015fov"}, "Ro\u0219iorii De Vede": {"country": "Romania", "subcountry": "Teleorman"}, "Roman": {"country": "Romania", "subcountry": "Neam\u0163"}, "R\u00e2\u015fnov": {"country": "Romania", "subcountry": "Bra\u015fov"}, "R\u00e2mnicu V\u00e2lcea": {"country": "Romania", "subcountry": "V\u00e2lcea"}, "R\u00e2mnicu S\u0103rat": {"country": "Romania", "subcountry": "Buz\u0103u"}, "Re\u015fi\u0163a": {"country": "Romania", "subcountry": "Cara\u015f-Severin"}, "Reghin-Sat": {"country": "Romania", "subcountry": "Mure\u015f"}, "R\u0103d\u0103u\u021bi": {"country": "Romania", "subcountry": "Suceava"}, "Pope\u015fti-Leordeni": {"country": "Romania", "subcountry": "Ilfov"}, "Ploie\u015fti": {"country": "Romania", "subcountry": "Prahova"}, "Pite\u015fti": {"country": "Romania", "subcountry": "Arge\u015f"}, "Piatra Neam\u0163": {"country": "Romania", "subcountry": "Neam\u0163"}, "Petro\u015fani": {"country": "Romania", "subcountry": "Hunedoara"}, "Petrila": {"country": "Romania", "subcountry": "Hunedoara"}, "Pantelimon": {"country": "Romania", "subcountry": "Ilfov"}, "Or\u0103\u015ftie": {"country": "Romania", "subcountry": "Hunedoara"}, "Oradea": {"country": "Romania", "subcountry": "Bihor"}, "Olteni\u0163a": {"country": "Romania", "subcountry": "C\u0103l\u0103ra\u015fi"}, "Odorheiu Secuiesc": {"country": "Romania", "subcountry": "Harghita"}, "Ocna Mure\u015f": {"country": "Romania", "subcountry": "Alba"}, "N\u0103vodari": {"country": "Romania", "subcountry": "Constan\u021ba"}, "Motru": {"country": "Romania", "subcountry": "Gorj"}, "Moreni": {"country": "Romania", "subcountry": "D\u00e2mbovi\u0163a"}, "Moine\u015fti": {"country": "Romania", "subcountry": "Bac\u0103u"}, "Mizil": {"country": "Romania", "subcountry": "Prahova"}, "Miercurea-Ciuc": {"country": "Romania", "subcountry": "Harghita"}, "Media\u015f": {"country": "Romania", "subcountry": "Sibiu"}, "Medgidia": {"country": "Romania", "subcountry": "Constan\u021ba"}, "Mangalia": {"country": "Romania", "subcountry": "Constan\u021ba"}, "Lupeni": {"country": "Romania", "subcountry": "Hunedoara"}, "Lugoj": {"country": "Romania", "subcountry": "Timi\u015f"}, "Ludu\u015f": {"country": "Romania", "subcountry": "Mure\u015f"}, "Ia\u015fi": {"country": "Romania", "subcountry": "Ia\u015fi"}, "Hu\u015fi": {"country": "Romania", "subcountry": "Vaslui"}, "Hunedoara": {"country": "Romania", "subcountry": "Hunedoara"}, "Gura Humorului": {"country": "Romania", "subcountry": "Suceava"}, "Giurgiu": {"country": "Romania", "subcountry": "Giurgiu"}, "Gherla": {"country": "Romania", "subcountry": "Cluj"}, "Gheorgheni": {"country": "Romania", "subcountry": "Harghita"}, "Gala\u0163i": {"country": "Romania", "subcountry": "Gala\u0163i"}, "G\u0103e\u015fti": {"country": "Romania", "subcountry": "D\u00e2mbovi\u0163a"}, "Foc\u0219ani": {"country": "Romania", "subcountry": "Vrancea"}, "Filia\u015fi": {"country": "Romania", "subcountry": "Dolj"}, "Fete\u0219ti-Gar\u0103": {"country": "Romania", "subcountry": "Ialomi\u0163a"}, "Fete\u015fti": {"country": "Romania", "subcountry": "Ialomi\u0163a"}, "F\u0103lticeni": {"country": "Romania", "subcountry": "Suceava"}, "F\u0103g\u0103ra\u0219": {"country": "Romania", "subcountry": "Bra\u015fov"}, "Drobeta-Turnu Severin": {"country": "Romania", "subcountry": "Mehedin\u0163i"}, "Dr\u0103g\u0103\u015fani": {"country": "Romania", "subcountry": "V\u00e2lcea"}, "Dorohoi": {"country": "Romania", "subcountry": "Boto\u015fani"}, "Deva": {"country": "Romania", "subcountry": "Hunedoara"}, "Dej": {"country": "Romania", "subcountry": "Cluj"}, "Curtea De Arge\u015f": {"country": "Romania", "subcountry": "Arge\u015f"}, "Cugir": {"country": "Romania", "subcountry": "Alba"}, "Craiova": {"country": "Romania", "subcountry": "Dolj"}, "Corabia": {"country": "Romania", "subcountry": "Olt"}, "Constan\u0163a": {"country": "Romania", "subcountry": "Constan\u021ba"}, "Com\u0103ne\u015fti": {"country": "Romania", "subcountry": "Bac\u0103u"}, "Codlea": {"country": "Romania", "subcountry": "Bra\u015fov"}, "Cluj-Napoca": {"country": "Romania", "subcountry": "Cluj"}, "Cisn\u0103die": {"country": "Romania", "subcountry": "Sibiu"}, "C\u00e2mpulung Moldovenesc": {"country": "Romania", "subcountry": "Suceava"}, "C\u00e2mpina": {"country": "Romania", "subcountry": "Prahova"}, "C\u00e2mpia Turzii": {"country": "Romania", "subcountry": "Cluj"}, "Cernavod\u0103": {"country": "Romania", "subcountry": "Constan\u021ba"}, "Carei": {"country": "Romania", "subcountry": "Satu Mare"}, "Caransebe\u015f": {"country": "Romania", "subcountry": "Cara\u015f-Severin"}, "Caracal": {"country": "Romania", "subcountry": "Olt"}, "Calafat": {"country": "Romania", "subcountry": "Dolj"}, "Buz\u0103u": {"country": "Romania", "subcountry": "Buz\u0103u"}, "Buhu\u015fi": {"country": "Romania", "subcountry": "Bac\u0103u"}, "Buftea": {"country": "Romania", "subcountry": "Ilfov"}, "Bucharest": {"country": "Romania", "subcountry": "Bucure\u015fti"}, "Breaza": {"country": "Romania", "subcountry": "Prahova"}, "Bra\u015fov": {"country": "Romania", "subcountry": "Bra\u015fov"}, "Br\u0103ila": {"country": "Romania", "subcountry": "Br\u0103ila"}, "Brad": {"country": "Romania", "subcountry": "Hunedoara"}, "Boto\u015fani": {"country": "Romania", "subcountry": "Boto\u015fani"}, "Bor\u015fa": {"country": "Romania", "subcountry": "Maramure\u015f"}, "Boc\u015fa": {"country": "Romania", "subcountry": "Cara\u015f-Severin"}, "Blaj": {"country": "Romania", "subcountry": "Alba"}, "Bistri\u0163a": {"country": "Romania", "subcountry": "Bistri\u0163a-N\u0103s\u0103ud"}, "B\u00e2rlad": {"country": "Romania", "subcountry": "Vaslui"}, "Bal\u015f": {"country": "Romania", "subcountry": "Olt"}, "B\u0103ile\u015fti": {"country": "Romania", "subcountry": "Dolj"}, "B\u0103icoi": {"country": "Romania", "subcountry": "Prahova"}, "Baia Sprie": {"country": "Romania", "subcountry": "Maramure\u015f"}, "Baia Mare": {"country": "Romania", "subcountry": "Satu Mare"}, "Bac\u0103u": {"country": "Romania", "subcountry": "Bac\u0103u"}, "Arad": {"country": "Romania", "subcountry": "Arad"}, "Alba Iulia": {"country": "Romania", "subcountry": "Alba"}, "Aiud": {"country": "Romania", "subcountry": "Alba"}, "Adjud": {"country": "Romania", "subcountry": "Vrancea"}, "Pa\u015fcani": {"country": "Romania", "subcountry": "Ia\u015fi"}, "Mioveni": {"country": "Romania", "subcountry": "Arge\u015f"}, "Sighi\u0219oara": {"country": "Romania", "subcountry": "Mure\u015f"}, "Sector 1": {"country": "Romania", "subcountry": "Bucure\u015fti"}, "Sector 2": {"country": "Romania", "subcountry": "Bucure\u015fti"}, "Sector 3": {"country": "Romania", "subcountry": "Bucure\u015fti"}, "Sector 4": {"country": "Romania", "subcountry": "Bucure\u015fti"}, "Sector 5": {"country": "Romania", "subcountry": "Bucure\u015fti"}, "Sector 6": {"country": "Romania", "subcountry": "Bucure\u015fti"}, "Zrenjanin": {"country": "Serbia", "subcountry": "Vojvodina"}, "Zemun": {"country": "Serbia", "subcountry": "Central Serbia"}, "Zaje\u010dar": {"country": "Serbia", "subcountry": "Central Serbia"}, "Vr\u0161ac": {"country": "Serbia", "subcountry": "Vojvodina"}, "Vranje": {"country": "Serbia", "subcountry": "Central Serbia"}, "Trstenik": {"country": "Serbia", "subcountry": "Central Serbia"}, "Stara Pazova": {"country": "Serbia", "subcountry": "Vojvodina"}, "Srem\u010dica": {"country": "Serbia", "subcountry": "Central Serbia"}, "Smederevska Palanka": {"country": "Serbia", "subcountry": "Central Serbia"}, "Smederevo": {"country": "Serbia", "subcountry": "Central Serbia"}, "Senta": {"country": "Serbia", "subcountry": "Vojvodina"}, "Prokuplje": {"country": "Serbia", "subcountry": "Central Serbia"}, "Po\u017earevac": {"country": "Serbia", "subcountry": "Central Serbia"}, "Pirot": {"country": "Serbia", "subcountry": "Central Serbia"}, "Pan\u010devo": {"country": "Serbia", "subcountry": "Vojvodina"}, "Obrenovac": {"country": "Serbia", "subcountry": "Central Serbia"}, "Novi Pazar": {"country": "Serbia", "subcountry": "Central Serbia"}, "Nova Pazova": {"country": "Serbia", "subcountry": "Vojvodina"}, "Ni\u0161": {"country": "Serbia", "subcountry": "Central Serbia"}, "Negotin": {"country": "Serbia", "subcountry": "Central Serbia"}, "Leskovac": {"country": "Serbia", "subcountry": "Central Serbia"}, "Lazarevac": {"country": "Serbia", "subcountry": "Central Serbia"}, "Kru\u0161evac": {"country": "Serbia", "subcountry": "Central Serbia"}, "Kraljevo": {"country": "Serbia", "subcountry": "Central Serbia"}, "Kragujevac": {"country": "Serbia", "subcountry": "Central Serbia"}, "Kikinda": {"country": "Serbia", "subcountry": "Vojvodina"}, "Jagodina": {"country": "Serbia", "subcountry": "Central Serbia"}, "In\u0111ija": {"country": "Serbia", "subcountry": "Vojvodina"}, "Gornji Milanovac": {"country": "Serbia", "subcountry": "Central Serbia"}, "\u0106uprija": {"country": "Serbia", "subcountry": "Central Serbia"}, "\u010ca\u010dak": {"country": "Serbia", "subcountry": "Central Serbia"}, "Bor": {"country": "Turkey", "subcountry": "Ni\u011fde"}, "Belgrade": {"country": "Serbia", "subcountry": "Central Serbia"}, "Be\u010dej": {"country": "Serbia", "subcountry": "Vojvodina"}, "Aran\u0111elovac": {"country": "Serbia", "subcountry": "Central Serbia"}, "Vrbas": {"country": "Serbia", "subcountry": "Vojvodina"}, "Valjevo": {"country": "Serbia", "subcountry": "Central Serbia"}, "U\u017eice": {"country": "Serbia", "subcountry": "Central Serbia"}, "Subotica": {"country": "Serbia", "subcountry": "Vojvodina"}, "Sremska Mitrovica": {"country": "Serbia", "subcountry": "Vojvodina"}, "Sombor": {"country": "Serbia", "subcountry": "Vojvodina"}, "\u0160abac": {"country": "Serbia", "subcountry": "Central Serbia"}, "Ruma": {"country": "Serbia", "subcountry": "Vojvodina"}, "Novi Sad": {"country": "Serbia", "subcountry": "Vojvodina"}, "Ba\u010dka Topola": {"country": "Serbia", "subcountry": "Vojvodina"}, "Ba\u010dka Palanka": {"country": "Serbia", "subcountry": "Vojvodina"}, "Apatin": {"country": "Serbia", "subcountry": "Vojvodina"}, "Knjazevac": {"country": "Serbia", "subcountry": "Central Serbia"}, "Udomlya": {"country": "Russia", "subcountry": "Tverskaya"}, "Sosnovka": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Sasovo": {"country": "Russia", "subcountry": "Rjazan"}, "Zyuzino": {"country": "Russia", "subcountry": "Moscow"}, "Zyablikovo": {"country": "Russia", "subcountry": "Moscow"}, "Zverevo": {"country": "Russia", "subcountry": "Rostov"}, "Zvenigorod": {"country": "Russia", "subcountry": "MO"}, "Zlatoust": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Zimovniki": {"country": "Russia", "subcountry": "Rostov"}, "Zhulebino": {"country": "Russia", "subcountry": "Moscow"}, "Zhukovskiy": {"country": "Russia", "subcountry": "MO"}, "Zhukovka": {"country": "Russia", "subcountry": "Brjansk"}, "Zhirnovsk": {"country": "Russia", "subcountry": "Volgograd"}, "Zhigulevsk": {"country": "Russia", "subcountry": "Samara"}, "Zherdevka": {"country": "Russia", "subcountry": "Tambov"}, "Zheleznovodsk": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Zheleznogorsk": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Zheleznodorozhnyy": {"country": "Russia", "subcountry": "MO"}, "Zernograd": {"country": "Russia", "subcountry": "Rostov"}, "Zelenokumsk": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Zelenograd": {"country": "Russia", "subcountry": "Moscow"}, "Zelenodolsk": {"country": "Russia", "subcountry": "Tatarstan"}, "Zelenchukskaya": {"country": "Russia", "subcountry": "Karachayevo-Cherkesiya"}, "Zavolzh\u2019Ye": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Zarechnyy": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Zaraysk": {"country": "Russia", "subcountry": "MO"}, "Zapolyarnyy": {"country": "Russia", "subcountry": "Murmansk"}, "Zamoskvorech\u2019Ye": {"country": "Russia", "subcountry": "Moscow"}, "Zainsk": {"country": "Russia", "subcountry": "Tatarstan"}, "Yur\u2019Yev-Pol\u2019Skiy": {"country": "Russia", "subcountry": "Vladimir"}, "Yoshkar-Ola": {"country": "Russia", "subcountry": "Mariy-El"}, "Yeysk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Yessentukskaya": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Yessentuki": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Yershov": {"country": "Russia", "subcountry": "Saratov"}, "Yemva": {"country": "Russia", "subcountry": "Komi Republic"}, "Yelizavetinskaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Yelets": {"country": "Russia", "subcountry": "Lipetsk"}, "Yelan\u2019": {"country": "Russia", "subcountry": "Volgograd"}, "Yelabuga": {"country": "Russia", "subcountry": "Tatarstan"}, "Yegor\u2019Yevsk": {"country": "Russia", "subcountry": "MO"}, "Yegorlykskaya": {"country": "Russia", "subcountry": "Rostov"}, "Yefremov": {"country": "Russia", "subcountry": "Tula"}, "Yasnyy": {"country": "Russia", "subcountry": "Orenburg"}, "Yasnogorsk": {"country": "Russia", "subcountry": "Tula"}, "Yasenevo": {"country": "Russia", "subcountry": "Moscow"}, "Yartsevo": {"country": "Russia", "subcountry": "Smolensk"}, "Yaroslavl": {"country": "Russia", "subcountry": "Jaroslavl"}, "Yaransk": {"country": "Russia", "subcountry": "Kirov"}, "Yanaul": {"country": "Russia", "subcountry": "Bashkortostan"}, "Yagry": {"country": "Russia", "subcountry": "Arkhangelskaya"}, "Yablonovskiy": {"country": "Russia", "subcountry": "Adygeya"}, "Vyshniy Voloch\u00ebk": {"country": "Russia", "subcountry": "Tverskaya"}, "Vyselki": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Vyksa": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Vykhino-Zhulebino": {"country": "Russia", "subcountry": "Moscow"}, "Vyborg": {"country": "Russia", "subcountry": "Leningrad"}, "Vyazniki": {"country": "Russia", "subcountry": "Vladimir"}, "Vyaz\u2019Ma": {"country": "Russia", "subcountry": "Smolensk"}, "Vyatskiye Polyany": {"country": "Russia", "subcountry": "Kirov"}, "Vsevolozhsk": {"country": "Russia", "subcountry": "Leningrad"}, "Votkinsk": {"country": "Russia", "subcountry": "Udmurtiya"}, "Vostryakovo": {"country": "Russia", "subcountry": "MO"}, "Voskresensk": {"country": "Russia", "subcountry": "MO"}, "Voronezh": {"country": "Russia", "subcountry": "Voronezj"}, "Altuf\u2019Yevskiy": {"country": "Russia", "subcountry": "Moscow"}, "Vorob\u2019Yovo": {"country": "Russia", "subcountry": "Moscow"}, "Volzhskiy": {"country": "Russia", "subcountry": "Volgograd"}, "Volzhsk": {"country": "Russia", "subcountry": "Mariy-El"}, "Vol\u2019Sk": {"country": "Russia", "subcountry": "Saratov"}, "Volokolamsk": {"country": "Russia", "subcountry": "MO"}, "Vologda": {"country": "Russia", "subcountry": "Vologda"}, "Volkhov": {"country": "Russia", "subcountry": "Leningrad"}, "Nagornyy": {"country": "Russia", "subcountry": "Moscow"}, "Volgorechensk": {"country": "Russia", "subcountry": "Kostroma"}, "Volgograd": {"country": "Russia", "subcountry": "Volgograd"}, "Volgodonsk": {"country": "Russia", "subcountry": "Rostov"}, "Vnukovo": {"country": "Russia", "subcountry": "MO"}, "Novovladykino": {"country": "Russia", "subcountry": "Moscow"}, "Vladimir": {"country": "Russia", "subcountry": "Vladimir"}, "Vladikavkaz": {"country": "Russia", "subcountry": "North Ossetia"}, "Vidnoye": {"country": "Russia", "subcountry": "MO"}, "Vichuga": {"country": "Russia", "subcountry": "Ivanovo"}, "Veshnyaki": {"country": "Russia", "subcountry": "Moscow"}, "Vereshchagino": {"country": "Russia", "subcountry": "Perm"}, "Ven\u00ebv": {"country": "Russia", "subcountry": "Tula"}, "Vel\u2019Sk": {"country": "Russia", "subcountry": "Arkhangelskaya"}, "Velikiy Ustyug": {"country": "Russia", "subcountry": "Vologda"}, "Velikiye Luki": {"country": "Russia", "subcountry": "Pskov"}, "Vatutino": {"country": "Russia", "subcountry": "Moscow"}, "Valuyki": {"country": "Russia", "subcountry": "Belgorod"}, "Valday": {"country": "Russia", "subcountry": "Novgorod"}, "Vagonoremont": {"country": "Russia", "subcountry": "Moscow"}, "Uzlovaya": {"country": "Russia", "subcountry": "Tula"}, "Uvarovo": {"country": "Russia", "subcountry": "Tambov"}, "Uva": {"country": "Russia", "subcountry": "Udmurtiya"}, "Ust\u2019-Labinsk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Ust\u2019-Katav": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Ust\u2019-Dzheguta": {"country": "Russia", "subcountry": "Karachayevo-Cherkesiya"}, "Usman\u2019": {"country": "Russia", "subcountry": "Lipetsk"}, "Uryupinsk": {"country": "Russia", "subcountry": "Volgograd"}, "Urus-Martan": {"country": "Russia", "subcountry": "Chechnya"}, "Uritsk": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Unecha": {"country": "Russia", "subcountry": "Brjansk"}, "Ulyanovsk": {"country": "Russia", "subcountry": "Ulyanovsk"}, "Ukhta": {"country": "Russia", "subcountry": "Komi Republic"}, "Uglich": {"country": "Russia", "subcountry": "Jaroslavl"}, "Ufa": {"country": "Russia", "subcountry": "Bashkortostan"}, "Uchkeken": {"country": "Russia", "subcountry": "Karachayevo-Cherkesiya"}, "Uchaly": {"country": "Russia", "subcountry": "Bashkortostan"}, "Tyrnyauz": {"country": "Russia", "subcountry": "Kabardino-Balkariya"}, "Tver": {"country": "Russia", "subcountry": "Tverskaya"}, "Tuymazy": {"country": "Russia", "subcountry": "Bashkortostan"}, "Tutayev": {"country": "Russia", "subcountry": "Jaroslavl"}, "Tula": {"country": "Russia", "subcountry": "Tula"}, "Tuchkovo": {"country": "Russia", "subcountry": "MO"}, "Tuapse": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Tsimlyansk": {"country": "Russia", "subcountry": "Rostov"}, "Trubchevsk": {"country": "Russia", "subcountry": "Brjansk"}, "Tropar\u00ebvo": {"country": "Russia", "subcountry": "Moscow"}, "Troitskaya": {"country": "Russia", "subcountry": "Ingushetiya"}, "Troitsk": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Tosno": {"country": "Russia", "subcountry": "Leningrad"}, "Torzhok": {"country": "Russia", "subcountry": "Tverskaya"}, "Tomilino": {"country": "Russia", "subcountry": "MO"}, "Tol\u2019Yatti": {"country": "Russia", "subcountry": "Samara"}, "Timash\u00ebvsk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Tikhvin": {"country": "Russia", "subcountry": "Leningrad"}, "Tikhoretsk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Teykovo": {"country": "Russia", "subcountry": "Ivanovo"}, "Terek": {"country": "Russia", "subcountry": "Kabardino-Balkariya"}, "Tyoply Stan": {"country": "Russia", "subcountry": "Moscow"}, "Temryuk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Tekstil\u2019Shchiki": {"country": "Russia", "subcountry": "Moscow"}, "Tbilisskaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Tambov": {"country": "Russia", "subcountry": "Tambov"}, "Agidel\u2019": {"country": "Russia", "subcountry": "Bashkortostan"}, "Taganrog": {"country": "Russia", "subcountry": "Rostov"}, "Taganskiy": {"country": "Russia", "subcountry": "Moscow"}, "Syzran\u2019": {"country": "Russia", "subcountry": "Samara"}, "Syktyvkar": {"country": "Russia", "subcountry": "Komi Republic"}, "Svobody": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Sviblovo": {"country": "Russia", "subcountry": "Moscow"}, "Svetogorsk": {"country": "Russia", "subcountry": "Leningrad"}, "Svetlyy": {"country": "Russia", "subcountry": "Kaliningrad"}, "Svetlograd": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Suvorovskaya": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Suvorov": {"country": "Russia", "subcountry": "Tula"}, "Surovikino": {"country": "Russia", "subcountry": "Volgograd"}, "Surkhakhi": {"country": "Russia", "subcountry": "Ingushetiya"}, "Sukhinichi": {"country": "Russia", "subcountry": "Kaluga"}, "Stupino": {"country": "Russia", "subcountry": "MO"}, "Strunino": {"country": "Russia", "subcountry": "Vladimir"}, "Stroitel\u2019": {"country": "Russia", "subcountry": "Belgorod"}, "Strogino": {"country": "Russia", "subcountry": "Moscow"}, "Sterlitamak": {"country": "Russia", "subcountry": "Bashkortostan"}, "Stavropol\u2019": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Staryy Oskol": {"country": "Russia", "subcountry": "Belgorod"}, "Staroshcherbinovskaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Starominskaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Starodub": {"country": "Russia", "subcountry": "Brjansk"}, "Staraya Russa": {"country": "Russia", "subcountry": "Novgorod"}, "Staraya Kupavna": {"country": "Russia", "subcountry": "MO"}, "Staraya Derevnya": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Sovetsk": {"country": "Russia", "subcountry": "Kaliningrad"}, "Sosnovyy Bor": {"country": "Russia", "subcountry": "Leningrad"}, "Sosnovaya Polyana": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Sosnogorsk": {"country": "Russia", "subcountry": "Komi Republic"}, "Sortavala": {"country": "Russia", "subcountry": "Republic of Karelia"}, "Sorochinsk": {"country": "Russia", "subcountry": "Orenburg"}, "Solntsevo": {"country": "Russia", "subcountry": "Moscow"}, "Solnechnogorsk": {"country": "Russia", "subcountry": "MO"}, "Sol\u2019-Iletsk": {"country": "Russia", "subcountry": "Orenburg"}, "Solikamsk": {"country": "Russia", "subcountry": "Perm"}, "Sokol\u2019Niki": {"country": "Russia", "subcountry": "Moscow"}, "Sokol": {"country": "Russia", "subcountry": "Vologda"}, "Sofrino": {"country": "Russia", "subcountry": "MO"}, "Sochi": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Sobinka": {"country": "Russia", "subcountry": "Vladimir"}, "Smolensk": {"country": "Russia", "subcountry": "Smolensk"}, "Slobodskoy": {"country": "Russia", "subcountry": "Kirov"}, "Slobodka": {"country": "Russia", "subcountry": "Moscow"}, "Slavyansk-Na-Kubani": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Slantsy": {"country": "Russia", "subcountry": "Leningrad"}, "Skopin": {"country": "Russia", "subcountry": "Rjazan"}, "Skhodnya": {"country": "Russia", "subcountry": "MO"}, "Sim": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Sibay": {"country": "Russia", "subcountry": "Bashkortostan"}, "Shuya": {"country": "Russia", "subcountry": "Ivanovo"}, "Shushary": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Shumerlya": {"country": "Russia", "subcountry": "Chuvashia"}, "Mikhaylovsk": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Shilovo": {"country": "Russia", "subcountry": "Rjazan"}, "Sheksna": {"country": "Russia", "subcountry": "Vologda"}, "Shebekino": {"country": "Russia", "subcountry": "Belgorod"}, "Shchukino": {"country": "Russia", "subcountry": "Moscow"}, "Shchigry": {"country": "Russia", "subcountry": "Kursk"}, "Shcherbinka": {"country": "Russia", "subcountry": "Moscow"}, "Shchelkovo": {"country": "Russia", "subcountry": "MO"}, "Shch\u00ebkino": {"country": "Russia", "subcountry": "Tula"}, "Shatura": {"country": "Russia", "subcountry": "MO"}, "Shar\u2019Ya": {"country": "Russia", "subcountry": "Kostroma"}, "Shali": {"country": "Russia", "subcountry": "Chechnya"}, "Shakhun\u2019Ya": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Shakhty": {"country": "Russia", "subcountry": "Rostov"}, "Severskaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Severo-Zadonsk": {"country": "Russia", "subcountry": "Tula"}, "Severoural\u2019Sk": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Severomorsk": {"country": "Russia", "subcountry": "Murmansk"}, "Severodvinsk": {"country": "Russia", "subcountry": "Arkhangelskaya"}, "Severnyy": {"country": "Russia", "subcountry": "Moscow"}, "Setun\u2019": {"country": "Russia", "subcountry": "Moscow"}, "Sestroretsk": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Sertolovo": {"country": "Russia", "subcountry": "Leningrad"}, "Serpukhov": {"country": "Russia", "subcountry": "MO"}, "Sergiyev Posad": {"country": "Russia", "subcountry": "MO"}, "Sergach": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Serdobsk": {"country": "Russia", "subcountry": "Penza"}, "Semiluki": {"country": "Russia", "subcountry": "Voronezj"}, "Semikarakorsk": {"country": "Russia", "subcountry": "Rostov"}, "Sem\u00ebnovskoye": {"country": "Russia", "subcountry": "MO"}, "Sem\u00ebnov": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Sel\u2019Tso": {"country": "Russia", "subcountry": "Brjansk"}, "Segezha": {"country": "Russia", "subcountry": "Republic of Karelia"}, "Satka": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Sarov": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Saratov": {"country": "Russia", "subcountry": "Saratov"}, "Sarapul": {"country": "Russia", "subcountry": "Udmurtiya"}, "Saransk": {"country": "Russia", "subcountry": "Mordoviya"}, "Saraktash": {"country": "Russia", "subcountry": "Orenburg"}, "Saint Petersburg": {"country": "United States", "subcountry": "Florida"}, "Samara": {"country": "Russia", "subcountry": "Samara"}, "Sal\u2019Sk": {"country": "Russia", "subcountry": "Rostov"}, "Salavat": {"country": "Russia", "subcountry": "Bashkortostan"}, "Safonovo": {"country": "Russia", "subcountry": "Smolensk"}, "Rzhev": {"country": "Russia", "subcountry": "Tverskaya"}, "Rybnoye": {"country": "Russia", "subcountry": "Rjazan"}, "Rybinsk": {"country": "Russia", "subcountry": "Jaroslavl"}, "Rybatskoye": {"country": "Russia", "subcountry": "Leningrad"}, "Ryazhsk": {"country": "Russia", "subcountry": "Rjazan"}, "Ryazan\u2019": {"country": "Russia", "subcountry": "Rjazan"}, "Ruzayevka": {"country": "Russia", "subcountry": "Mordoviya"}, "Rubl\u00ebvo": {"country": "Russia", "subcountry": "Moscow"}, "Rtishchevo": {"country": "Russia", "subcountry": "Saratov"}, "Rostov-Na-Donu": {"country": "Russia", "subcountry": "Rostov"}, "Rostov": {"country": "Russia", "subcountry": "Jaroslavl"}, "Rostokino": {"country": "Russia", "subcountry": "Moscow"}, "Rossosh\u2019": {"country": "Russia", "subcountry": "Voronezj"}, "Roslavl\u2019": {"country": "Russia", "subcountry": "Smolensk"}, "Roshal\u2019": {"country": "Russia", "subcountry": "MO"}, "Rodniki": {"country": "Russia", "subcountry": "Ivanovo"}, "Revda": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Reutov": {"country": "Russia", "subcountry": "MO"}, "Razumnoye": {"country": "Russia", "subcountry": "Belgorod"}, "Rayevskiy": {"country": "Russia", "subcountry": "Bashkortostan"}, "Rasskazovo": {"country": "Russia", "subcountry": "Tambov"}, "Ramenki": {"country": "Russia", "subcountry": "Moscow"}, "Pyatigorsk": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Pushkin": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Pushchino": {"country": "Russia", "subcountry": "MO"}, "Pugachev": {"country": "Russia", "subcountry": "Saratov"}, "Pskov": {"country": "Russia", "subcountry": "Pskov"}, "Protvino": {"country": "Russia", "subcountry": "MO"}, "Proletarsk": {"country": "Russia", "subcountry": "Rostov"}, "Prokhladnyy": {"country": "Russia", "subcountry": "Kabardino-Balkariya"}, "Priyutovo": {"country": "Russia", "subcountry": "Bashkortostan"}, "Privolzhskiy": {"country": "Russia", "subcountry": "Saratov"}, "Privolzhsk": {"country": "Russia", "subcountry": "Ivanovo"}, "Prioz\u00ebrsk": {"country": "Russia", "subcountry": "Leningrad"}, "Primorsko-Akhtarsk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Pridonskoy": {"country": "Russia", "subcountry": "Voronezj"}, "Povorino": {"country": "Russia", "subcountry": "Voronezj"}, "Kotlovka": {"country": "Russia", "subcountry": "Moscow"}, "Annino": {"country": "Russia", "subcountry": "MO"}, "Polyarnyye Zori": {"country": "Russia", "subcountry": "Murmansk"}, "Polyarnyy": {"country": "Russia", "subcountry": "Murmansk"}, "Pokrovskoye-Streshn\u00ebvo": {"country": "Russia", "subcountry": "Moscow"}, "Pokrov": {"country": "Russia", "subcountry": "Vladimir"}, "Pokhvistnevo": {"country": "Russia", "subcountry": "Samara"}, "Podporozh\u2019Ye": {"country": "Russia", "subcountry": "Leningrad"}, "Podol\u2019Sk": {"country": "Russia", "subcountry": "MO"}, "Pochep": {"country": "Russia", "subcountry": "Brjansk"}, "Ryazanskiy": {"country": "Russia", "subcountry": "Moscow"}, "Plavsk": {"country": "Russia", "subcountry": "Tula"}, "Pikal\u00ebvo": {"country": "Russia", "subcountry": "Leningrad"}, "Petushki": {"country": "Russia", "subcountry": "Vladimir"}, "Petrozavodsk": {"country": "Russia", "subcountry": "Republic of Karelia"}, "Petrovskaya": {"country": "Russia", "subcountry": "MO"}, "Petrovsk": {"country": "Russia", "subcountry": "Saratov"}, "Petrodvorets": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Peterhof": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Pestovo": {"country": "Russia", "subcountry": "Novgorod"}, "Pervoural\u2019Sk": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Perovo": {"country": "Russia", "subcountry": "Moscow"}, "Perm": {"country": "Russia", "subcountry": "Perm"}, "Pereslavl\u2019-Zalesskiy": {"country": "Russia", "subcountry": "Jaroslavl"}, "Novo-Peredelkino": {"country": "Russia", "subcountry": "Moscow"}, "Penza": {"country": "Russia", "subcountry": "Penza"}, "Pechora": {"country": "Russia", "subcountry": "Komi Republic"}, "Pavlovskiy Posad": {"country": "Russia", "subcountry": "MO"}, "Pavlovskaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Pavlovsk": {"country": "Russia", "subcountry": "Voronezj"}, "Pashkovskiy": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Pallasovka": {"country": "Russia", "subcountry": "Volgograd"}, "Oz\u00ebry": {"country": "Russia", "subcountry": "MO"}, "Ozerki": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Otradnyy": {"country": "Russia", "subcountry": "Samara"}, "Otradnoye": {"country": "Russia", "subcountry": "Leningrad"}, "Otradnaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Ostrogozhsk": {"country": "Russia", "subcountry": "Voronezj"}, "Ostashkov": {"country": "Russia", "subcountry": "Tverskaya"}, "Ostankinskiy": {"country": "Russia", "subcountry": "Moscow"}, "Osa": {"country": "Russia", "subcountry": "Perm"}, "Orsk": {"country": "Russia", "subcountry": "Orenburg"}, "Orlovskiy": {"country": "Russia", "subcountry": "Rostov"}, "Orenburg": {"country": "Russia", "subcountry": "Orenburg"}, "Or\u00ebl": {"country": "Russia", "subcountry": "Orjol"}, "Orekhovo-Zuyevo": {"country": "Russia", "subcountry": "MO"}, "Orekhovo-Borisovo Severnoye": {"country": "Russia", "subcountry": "Moscow"}, "Ordzhonikidzevskaya": {"country": "Russia", "subcountry": "Ingushetiya"}, "Onega": {"country": "Russia", "subcountry": "Arkhangelskaya"}, "Omutninsk": {"country": "Russia", "subcountry": "Kirov"}, "Olenegorsk": {"country": "Russia", "subcountry": "Murmansk"}, "Tsotsin-Yurt": {"country": "Russia", "subcountry": "Chechnya"}, "Oktyabr\u2019Skiy": {"country": "Russia", "subcountry": "Bashkortostan"}, "Odintsovo": {"country": "Russia", "subcountry": "MO"}, "Och\u00ebr": {"country": "Russia", "subcountry": "Perm"}, "Ochakovo-Matveyevskoye": {"country": "Russia", "subcountry": "Moscow"}, "Obninsk": {"country": "Russia", "subcountry": "Kaluga"}, "Nytva": {"country": "Russia", "subcountry": "Perm"}, "Nyandoma": {"country": "Russia", "subcountry": "Arkhangelskaya"}, "Nurlat": {"country": "Russia", "subcountry": "Tatarstan"}, "Novyy Oskol": {"country": "Russia", "subcountry": "Belgorod"}, "Novyye Kuz\u2019Minki": {"country": "Russia", "subcountry": "Moscow"}, "Novyye Cher\u00ebmushki": {"country": "Russia", "subcountry": "Moscow"}, "Novozybkov": {"country": "Russia", "subcountry": "Brjansk"}, "Novovoronezh": {"country": "Russia", "subcountry": "Voronezj"}, "Novouzensk": {"country": "Russia", "subcountry": "Saratov"}, "Novoul\u2019Yanovsk": {"country": "Russia", "subcountry": "Ulyanovsk"}, "Novotroitsk": {"country": "Russia", "subcountry": "Orenburg"}, "Novotitarovskaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Novoshakhtinsk": {"country": "Russia", "subcountry": "Rostov"}, "Novorossiysk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Novopokrovskaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Novopavlovsk": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Novomoskovsk": {"country": "Russia", "subcountry": "Tula"}, "Novomichurinsk": {"country": "Russia", "subcountry": "Rjazan"}, "Novokuz\u2019Minki": {"country": "Russia", "subcountry": "Moscow"}, "Novokuybyshevsk": {"country": "Russia", "subcountry": "Samara"}, "Novokubansk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Novokhovrino": {"country": "Russia", "subcountry": "Moscow"}, "Novogireyevo": {"country": "Russia", "subcountry": "MO"}, "Novodvinsk": {"country": "Russia", "subcountry": "Arkhangelskaya"}, "Novocherkassk": {"country": "Russia", "subcountry": "Rostov"}, "Novocheboksarsk": {"country": "Russia", "subcountry": "Chuvashia"}, "Novoanninskiy": {"country": "Russia", "subcountry": "Volgograd"}, "Novoaleksandrovsk": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Velikiy Novgorod": {"country": "Russia", "subcountry": "Novgorod"}, "Novaya Usman\u2019": {"country": "Russia", "subcountry": "Voronezj"}, "Novaya Derevnya": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Noginsk": {"country": "Russia", "subcountry": "MO"}, "Nizhnyaya Tura": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Nizhniy Tagil": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Nizhniy Novgorod": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Nizhniy Lomov": {"country": "Russia", "subcountry": "Penza"}, "Nizhnekamsk": {"country": "Russia", "subcountry": "Tatarstan"}, "Nikulino": {"country": "Russia", "subcountry": "Moscow"}, "Nikol\u2019Skoye": {"country": "Russia", "subcountry": "Leningrad"}, "Nikol\u2019Sk": {"country": "Russia", "subcountry": "Penza"}, "Nikolayevsk": {"country": "Russia", "subcountry": "Volgograd"}, "Nikel\u2019": {"country": "Russia", "subcountry": "Murmansk"}, "Nezlobnaya": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Nevinnomyssk": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Nevel\u2019": {"country": "Russia", "subcountry": "Pskov"}, "Nesterovskaya": {"country": "Russia", "subcountry": "Ingushetiya"}, "Nerekhta": {"country": "Russia", "subcountry": "Kostroma"}, "Nelidovo": {"country": "Russia", "subcountry": "Tverskaya"}, "Neftekamsk": {"country": "Russia", "subcountry": "Bashkortostan"}, "Neftegorsk": {"country": "Russia", "subcountry": "Samara"}, "Nazran\u2019": {"country": "Russia", "subcountry": "Ingushetiya"}, "Navashino": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Nar'Yan-Mar": {"country": "Russia", "subcountry": "Nenetskiy Avtonomnyy Okrug"}, "Nartkala": {"country": "Russia", "subcountry": "Kabardino-Balkariya"}, "Naro-Fominsk": {"country": "Russia", "subcountry": "MO"}, "Nal\u2019Chik": {"country": "Russia", "subcountry": "Kabardino-Balkariya"}, "Nakhabino": {"country": "Russia", "subcountry": "MO"}, "Naberezhnyye Chelny": {"country": "Russia", "subcountry": "Tatarstan"}, "Mytishchi": {"country": "Russia", "subcountry": "MO"}, "Murom": {"country": "Russia", "subcountry": "Vladimir"}, "Murmansk": {"country": "Russia", "subcountry": "Murmansk"}, "Mtsensk": {"country": "Russia", "subcountry": "Orjol"}, "Mozhga": {"country": "Russia", "subcountry": "Udmurtiya"}, "Mozhaysk": {"country": "Russia", "subcountry": "MO"}, "Mozdok": {"country": "Russia", "subcountry": "North Ossetia"}, "Mostovskoy": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Moscow": {"country": "United States", "subcountry": "Idaho"}, "Morshansk": {"country": "Russia", "subcountry": "Tambov"}, "Morozovsk": {"country": "Russia", "subcountry": "Rostov"}, "Monino": {"country": "Russia", "subcountry": "MO"}, "Monchegorsk": {"country": "Russia", "subcountry": "Murmansk"}, "Mirnyy": {"country": "Russia", "subcountry": "Arkhangelskaya"}, "Mineralnye Vody": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Millerovo": {"country": "Russia", "subcountry": "Rostov"}, "Mikhaylovka": {"country": "Russia", "subcountry": "Volgograd"}, "Mikhalkovo": {"country": "Russia", "subcountry": "Moscow"}, "Michurinsk": {"country": "Russia", "subcountry": "Tambov"}, "Metallostroy": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Menzelinsk": {"country": "Russia", "subcountry": "Tatarstan"}, "Mendeleyevsk": {"country": "Russia", "subcountry": "Tatarstan"}, "Meleuz": {"country": "Russia", "subcountry": "Bashkortostan"}, "Melenki": {"country": "Russia", "subcountry": "Vladimir"}, "Medvezh\u2019Yegorsk": {"country": "Russia", "subcountry": "Republic of Karelia"}, "Medvedovskaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Medvedevo": {"country": "Russia", "subcountry": "Mariy-El"}, "Mednogorsk": {"country": "Russia", "subcountry": "Orenburg"}, "Maykop": {"country": "Russia", "subcountry": "Adygeya"}, "Matveyevskoye": {"country": "Russia", "subcountry": "Moscow"}, "Marks": {"country": "Russia", "subcountry": "Saratov"}, "Mar\u2019Ino": {"country": "Russia", "subcountry": "Moscow"}, "Mar\u2019Ina Roshcha": {"country": "Russia", "subcountry": "Moscow"}, "Manturovo": {"country": "Russia", "subcountry": "Kostroma"}, "Yaroslavskiy": {"country": "Russia", "subcountry": "Moscow"}, "Maloyaroslavets": {"country": "Russia", "subcountry": "Kaluga"}, "Malgobek": {"country": "Russia", "subcountry": "Ingushetiya"}, "Malakhovka": {"country": "Russia", "subcountry": "MO"}, "Makhachkala": {"country": "Russia", "subcountry": "Dagestan"}, "Magnitogorsk": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Lyudinovo": {"country": "Russia", "subcountry": "Kaluga"}, "Lyublino": {"country": "Russia", "subcountry": "Moscow"}, "Lyubertsy": {"country": "Russia", "subcountry": "MO"}, "Lytkarino": {"country": "Russia", "subcountry": "MO"}, "Lys\u2019Va": {"country": "Russia", "subcountry": "Perm"}, "Lyskovo": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Luzhniki": {"country": "Russia", "subcountry": "Moscow"}, "Lukhovitsy": {"country": "Russia", "subcountry": "MO"}, "Luga": {"country": "Russia", "subcountry": "Leningrad"}, "Losino-Petrovskiy": {"country": "Russia", "subcountry": "MO"}, "Lomonosov": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Lodeynoye Pole": {"country": "Russia", "subcountry": "Leningrad"}, "Lobnya": {"country": "Russia", "subcountry": "MO"}, "Livny": {"country": "Russia", "subcountry": "Orjol"}, "Liski": {"country": "Russia", "subcountry": "Voronezj"}, "Lipetsk": {"country": "Russia", "subcountry": "Lipetsk"}, "Likino-Dulevo": {"country": "Russia", "subcountry": "MO"}, "Likhobory": {"country": "Russia", "subcountry": "Moscow"}, "Lianozovo": {"country": "Russia", "subcountry": "Moscow"}, "L\u2019Govskiy": {"country": "Russia", "subcountry": "Kursk"}, "Levoberezhnaya": {"country": "Russia", "subcountry": "MO"}, "Komendantsky Aerodrom": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Lermontov": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Leonovo": {"country": "Russia", "subcountry": "Moscow"}, "Leninskiye Gory": {"country": "Russia", "subcountry": "MO"}, "Leninsk": {"country": "Russia", "subcountry": "Volgograd"}, "Leninogorsk": {"country": "Russia", "subcountry": "Tatarstan"}, "Tsaritsyno": {"country": "Russia", "subcountry": "Moscow"}, "Leningradskaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Yubileyny": {"country": "Russia", "subcountry": "MO"}, "Lefortovo": {"country": "Russia", "subcountry": "Moscow"}, "Lebedyan\u2019": {"country": "Russia", "subcountry": "Lipetsk"}, "Lazarevskoye": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Lakinsk": {"country": "Russia", "subcountry": "Vladimir"}, "Labinsk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Dugulubgey": {"country": "Russia", "subcountry": "Kabardino-Balkariya"}, "Kuznetsk": {"country": "Russia", "subcountry": "Penza"}, "Kuz\u2019Minki": {"country": "Russia", "subcountry": "Moscow"}, "Kuvandyk": {"country": "Russia", "subcountry": "Orenburg"}, "Kuskovo": {"country": "Russia", "subcountry": "MO"}, "Kushva": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Kushch\u00ebvskaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Kusa": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Kur\u2019Yanovo": {"country": "Russia", "subcountry": "MO"}, "Kursk": {"country": "Russia", "subcountry": "Kursk"}, "Kurovskoye": {"country": "Russia", "subcountry": "MO"}, "Kurganinsk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Kurchatov": {"country": "Russia", "subcountry": "Kursk"}, "Kurchaloy": {"country": "Russia", "subcountry": "Chechnya"}, "Kupchino": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Kungur": {"country": "Russia", "subcountry": "Perm"}, "Kumertau": {"country": "Russia", "subcountry": "Bashkortostan"}, "Kulebaki": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Kukmor": {"country": "Russia", "subcountry": "Tatarstan"}, "Kudymkar": {"country": "Russia", "subcountry": "Perm"}, "Kudepsta": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Kubinka": {"country": "Russia", "subcountry": "MO"}, "Kstovo": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Krymsk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Kropotkin": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Kronshtadt": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Krasnyy Sulin": {"country": "Russia", "subcountry": "Rostov"}, "Biryul\u00ebvo Zapadnoye": {"country": "Russia", "subcountry": "MO"}, "Krasnoye Selo": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Krasnovishersk": {"country": "Russia", "subcountry": "Perm"}, "Krasnoufimsk": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Krasnokamsk": {"country": "Russia", "subcountry": "Perm"}, "Krasnogvardeyskoye": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Krasnogorsk": {"country": "Russia", "subcountry": "MO"}, "Krasnodar": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Krasnoarmeyskaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Krasnoarmeysk": {"country": "Russia", "subcountry": "Saratov"}, "Presnenskiy": {"country": "Russia", "subcountry": "MO"}, "Koz\u2019Modem\u2019Yansk": {"country": "Russia", "subcountry": "Mariy-El"}, "Kozhukhovo": {"country": "Russia", "subcountry": "MO"}, "Kozeyevo": {"country": "Russia", "subcountry": "Moscow"}, "Kozel\u2019Sk": {"country": "Russia", "subcountry": "Kaluga"}, "Kovylkino": {"country": "Russia", "subcountry": "Mordoviya"}, "Kovrov": {"country": "Russia", "subcountry": "Vladimir"}, "Kovdor": {"country": "Russia", "subcountry": "Murmansk"}, "Kotovsk": {"country": "Russia", "subcountry": "Tambov"}, "Kotovo": {"country": "Russia", "subcountry": "Volgograd"}, "Kotlas": {"country": "Russia", "subcountry": "Arkhangelskaya"}, "Kotel\u2019Nikovo": {"country": "Russia", "subcountry": "Volgograd"}, "Kotel\u2019Niki": {"country": "Russia", "subcountry": "MO"}, "Kotel\u2019Nich": {"country": "Russia", "subcountry": "Kirov"}, "Kostroma": {"country": "Russia", "subcountry": "Kostroma"}, "Kostomuksha": {"country": "Russia", "subcountry": "Republic of Karelia"}, "Kosaya Gora": {"country": "Russia", "subcountry": "Tula"}, "Koryazhma": {"country": "Russia", "subcountry": "Arkhangelskaya"}, "Korenovsk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Konstantinovsk": {"country": "Russia", "subcountry": "Rostov"}, "Kondrovo": {"country": "Russia", "subcountry": "Kaluga"}, "Kondopoga": {"country": "Russia", "subcountry": "Republic of Karelia"}, "Konakovo": {"country": "Russia", "subcountry": "Tverskaya"}, "Kommunar": {"country": "Russia", "subcountry": "Leningrad"}, "Kolpino": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Kolomyagi": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Kolomna": {"country": "Russia", "subcountry": "MO"}, "Kolomenskoye": {"country": "Russia", "subcountry": "Moscow"}, "Kol\u2019Chugino": {"country": "Russia", "subcountry": "Vladimir"}, "Kokhma": {"country": "Russia", "subcountry": "Ivanovo"}, "Klintsy": {"country": "Russia", "subcountry": "Brjansk"}, "Klin": {"country": "Russia", "subcountry": "MO"}, "Klimovsk": {"country": "Russia", "subcountry": "MO"}, "Kizlyar": {"country": "Russia", "subcountry": "Dagestan"}, "Kizilyurt": {"country": "Russia", "subcountry": "Dagestan"}, "Kizel": {"country": "Russia", "subcountry": "Perm"}, "Kislovodsk": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Kirzhach": {"country": "Russia", "subcountry": "Vladimir"}, "Kirsanov": {"country": "Russia", "subcountry": "Tambov"}, "Kirovsk": {"country": "Russia", "subcountry": "Leningrad"}, "Kirovo-Chepetsk": {"country": "Russia", "subcountry": "Kirov"}, "Kirov": {"country": "Russia", "subcountry": "Kaluga"}, "Kirishi": {"country": "Russia", "subcountry": "Leningrad"}, "Kireyevsk": {"country": "Russia", "subcountry": "Tula"}, "Kingisepp": {"country": "Russia", "subcountry": "Leningrad"}, "Kineshma": {"country": "Russia", "subcountry": "Ivanovo"}, "Kinel\u2019-Cherkassy": {"country": "Russia", "subcountry": "Samara"}, "Kinel\u2019": {"country": "Russia", "subcountry": "Samara"}, "Kimry": {"country": "Russia", "subcountry": "Tverskaya"}, "Kimovsk": {"country": "Russia", "subcountry": "Tula"}, "Khot'Kovo": {"country": "Russia", "subcountry": "MO"}, "Khosta": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Khorosh\u00ebvo-Mnevniki": {"country": "Russia", "subcountry": "MO"}, "Kholmskiy": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Khimki": {"country": "Russia", "subcountry": "Moscow"}, "Khasavyurt": {"country": "Russia", "subcountry": "Dagestan"}, "Kharabali": {"country": "Russia", "subcountry": "Astrakhan"}, "Khadyzhensk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Kazan": {"country": "Turkey", "subcountry": "Ankara"}, "Katav-Ivanovsk": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Kastanayevo": {"country": "Russia", "subcountry": "MO"}, "Kaspiysk": {"country": "Russia", "subcountry": "Dagestan"}, "Kasimov": {"country": "Russia", "subcountry": "Rjazan"}, "Kashira": {"country": "Russia", "subcountry": "MO"}, "Kashin": {"country": "Russia", "subcountry": "Tverskaya"}, "Karachev": {"country": "Russia", "subcountry": "Brjansk"}, "Karachayevsk": {"country": "Russia", "subcountry": "Karachayevo-Cherkesiya"}, "Karabulak": {"country": "Russia", "subcountry": "Ingushetiya"}, "Karabanovo": {"country": "Russia", "subcountry": "Vladimir"}, "Kapotnya": {"country": "Russia", "subcountry": "Moscow"}, "Kantyshevo": {"country": "Russia", "subcountry": "Ingushetiya"}, "Kanevskaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Kandalaksha": {"country": "Russia", "subcountry": "Murmansk"}, "Kanash": {"country": "Russia", "subcountry": "Chuvashia"}, "Kamyzyak": {"country": "Russia", "subcountry": "Astrakhan"}, "Kamyshin": {"country": "Russia", "subcountry": "Volgograd"}, "Kamensk-Shakhtinskiy": {"country": "Russia", "subcountry": "Rostov"}, "Kaluga": {"country": "Russia", "subcountry": "Kaluga"}, "Kalininsk": {"country": "Russia", "subcountry": "Saratov"}, "Korolev": {"country": "Russia", "subcountry": "MO"}, "Kaliningrad": {"country": "Russia", "subcountry": "Kaliningrad"}, "Kalach-Na-Donu": {"country": "Russia", "subcountry": "Volgograd"}, "Kalach": {"country": "Russia", "subcountry": "Voronezj"}, "Kachkanar": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Kabanovo": {"country": "Russia", "subcountry": "MO"}, "Izobil\u2019Nyy": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Izmaylovo": {"country": "Russia", "subcountry": "MO"}, "Izhevsk": {"country": "Russia", "subcountry": "Udmurtiya"}, "Izberbash": {"country": "Russia", "subcountry": "Dagestan"}, "Ivanteyevka": {"country": "Russia", "subcountry": "MO"}, "Ivanovskoye": {"country": "Russia", "subcountry": "Moscow"}, "Ivanovo": {"country": "Russia", "subcountry": "Ivanovo"}, "Istra": {"country": "Russia", "subcountry": "MO"}, "Ishimbay": {"country": "Russia", "subcountry": "Bashkortostan"}, "Ipatovo": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Inza": {"country": "Russia", "subcountry": "Ulyanovsk"}, "Inozemtsevo": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Il\u2019Skiy": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Igra": {"country": "Russia", "subcountry": "Udmurtiya"}, "Gus\u2019-Khrustal\u2019Nyy": {"country": "Russia", "subcountry": "Vladimir"}, "Gusev": {"country": "Russia", "subcountry": "Kaliningrad"}, "Gul\u2019Kevichi": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Gukovo": {"country": "Russia", "subcountry": "Rostov"}, "Gudermes": {"country": "Russia", "subcountry": "Chechnya"}, "Gubkin": {"country": "Russia", "subcountry": "Belgorod"}, "Gubakha": {"country": "Russia", "subcountry": "Perm"}, "Gryazovets": {"country": "Russia", "subcountry": "Vologda"}, "Gryazi": {"country": "Russia", "subcountry": "Lipetsk"}, "Groznyy": {"country": "Russia", "subcountry": "Chechnya"}, "Gribanovskiy": {"country": "Russia", "subcountry": "Voronezj"}, "Grazhdanka": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Goryachiy Klyuch": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Goryachevodskiy": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Gorodishche": {"country": "Russia", "subcountry": "Volgograd"}, "Gorodets": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Gorelovo": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Gol\u2019Yanovo": {"country": "Russia", "subcountry": "Moscow"}, "Golitsyno": {"country": "Russia", "subcountry": "MO"}, "Glazov": {"country": "Russia", "subcountry": "Udmurtiya"}, "Giaginskaya": {"country": "Russia", "subcountry": "Adygeya"}, "Georgiyevsk": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Gelendzhik": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Gay": {"country": "Russia", "subcountry": "Orenburg"}, "Gavrilov-Yam": {"country": "Russia", "subcountry": "Jaroslavl"}, "Gatchina": {"country": "Russia", "subcountry": "Leningrad"}, "Galich": {"country": "Russia", "subcountry": "Kostroma"}, "Gagarin": {"country": "Uzbekistan", "subcountry": "Jizzax"}, "Furmanov": {"country": "Russia", "subcountry": "Ivanovo"}, "Fryazino": {"country": "Russia", "subcountry": "MO"}, "Fryazevo": {"country": "Russia", "subcountry": "MO"}, "Frolovo": {"country": "Russia", "subcountry": "Volgograd"}, "Fili": {"country": "Russia", "subcountry": "MO"}, "Ezhva": {"country": "Russia", "subcountry": "Komi Republic"}, "Engel\u2019S": {"country": "Russia", "subcountry": "Saratov"}, "Enem": {"country": "Russia", "subcountry": "Adygeya"}, "Elista": {"country": "Russia", "subcountry": "Kalmykiya"}, "Elektrougli": {"country": "Russia", "subcountry": "MO"}, "Elektrostal\u2019": {"country": "Russia", "subcountry": "MO"}, "Elektrogorsk": {"country": "Russia", "subcountry": "MO"}, "Ekazhevo": {"country": "Russia", "subcountry": "Ingushetiya"}, "Dzerzhinskiy": {"country": "Russia", "subcountry": "MO"}, "Dzerzhinsk": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Dyurtyuli": {"country": "Russia", "subcountry": "Bashkortostan"}, "Dyat\u2019Kovo": {"country": "Russia", "subcountry": "Brjansk"}, "Dubovka": {"country": "Russia", "subcountry": "Volgograd"}, "Dubna": {"country": "Russia", "subcountry": "MO"}, "Dorogomilovo": {"country": "Russia", "subcountry": "MO"}, "Donskoye": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Donskoy": {"country": "Russia", "subcountry": "Tula"}, "Donetsk": {"country": "Ukraine", "subcountry": "Donetsk"}, "Domodedovo": {"country": "Russia", "subcountry": "MO"}, "Dolgoprudnyy": {"country": "Russia", "subcountry": "MO"}, "Dobryanka": {"country": "Russia", "subcountry": "Perm"}, "Dmitrov": {"country": "Russia", "subcountry": "MO"}, "Divnoye": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Dinskaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Desnogorsk": {"country": "Russia", "subcountry": "Smolensk"}, "Derbent": {"country": "Russia", "subcountry": "Dagestan"}, "Zapadnoye Degunino": {"country": "Russia", "subcountry": "Moscow"}, "Dedovsk": {"country": "Russia", "subcountry": "MO"}, "Davydkovo": {"country": "Russia", "subcountry": "Moscow"}, "Davlekanovo": {"country": "Russia", "subcountry": "Bashkortostan"}, "Dankov": {"country": "Russia", "subcountry": "Lipetsk"}, "Danilov": {"country": "Russia", "subcountry": "Jaroslavl"}, "Dagestanskiye Ogni": {"country": "Russia", "subcountry": "Dagestan"}, "Dachnoye": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Chusovoy": {"country": "Russia", "subcountry": "Perm"}, "Chudovo": {"country": "Russia", "subcountry": "Novgorod"}, "Chistopol\u2019": {"country": "Russia", "subcountry": "Tatarstan"}, "Chishmy": {"country": "Russia", "subcountry": "Bashkortostan"}, "Chernyanka": {"country": "Russia", "subcountry": "Belgorod"}, "Chernyakhovsk": {"country": "Russia", "subcountry": "Kaliningrad"}, "Chernushka": {"country": "Russia", "subcountry": "Perm"}, "Chernogolovka": {"country": "Russia", "subcountry": "MO"}, "Cherkessk": {"country": "Russia", "subcountry": "Karachayevo-Cherkesiya"}, "Cherepovets": {"country": "Russia", "subcountry": "Vologda"}, "Cher\u00ebmushki": {"country": "Russia", "subcountry": "MO"}, "Chekhov": {"country": "Russia", "subcountry": "MO"}, "Chegem": {"country": "Russia", "subcountry": "Kabardino-Balkariya"}, "Cheboksary": {"country": "Russia", "subcountry": "Chuvashia"}, "Chaykovskiy": {"country": "Russia", "subcountry": "Perm"}, "Chapayevsk": {"country": "Russia", "subcountry": "Samara"}, "Buzuluk": {"country": "Russia", "subcountry": "Orenburg"}, "Buynaksk": {"country": "Russia", "subcountry": "Dagestan"}, "Buy": {"country": "Russia", "subcountry": "Kostroma"}, "Buturlinovka": {"country": "Russia", "subcountry": "Voronezj"}, "Businovo": {"country": "Russia", "subcountry": "Moscow"}, "Buinsk": {"country": "Russia", "subcountry": "Tatarstan"}, "Buguruslan": {"country": "Russia", "subcountry": "Orenburg"}, "Bugul\u2019Ma": {"country": "Russia", "subcountry": "Tatarstan"}, "Bud\u00ebnnovsk": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Bryukhovetskaya": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Bryansk": {"country": "Russia", "subcountry": "Brjansk"}, "Bronnitsy": {"country": "Russia", "subcountry": "MO"}, "Brateyevo": {"country": "Russia", "subcountry": "Moscow"}, "Borovichi": {"country": "Russia", "subcountry": "Novgorod"}, "Borisoglebsk": {"country": "Russia", "subcountry": "Voronezj"}, "Bol\u2019Shaya Setun\u2019": {"country": "Russia", "subcountry": "MO"}, "Bologoye": {"country": "Russia", "subcountry": "Tverskaya"}, "Boksitogorsk": {"country": "Russia", "subcountry": "Leningrad"}, "Boguchar": {"country": "Russia", "subcountry": "Voronezj"}, "Bogorodskoye": {"country": "Russia", "subcountry": "MO"}, "Bogorodsk": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Bogoroditsk": {"country": "Russia", "subcountry": "Tula"}, "Bobrov": {"country": "Russia", "subcountry": "Voronezj"}, "Blagoveshchensk": {"country": "Russia", "subcountry": "Amur"}, "Blagodarnyy": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Biryul\u00ebvo": {"country": "Russia", "subcountry": "Moscow"}, "Birsk": {"country": "Russia", "subcountry": "Bashkortostan"}, "Bibirevo": {"country": "Russia", "subcountry": "Moscow"}, "Bezhetsk": {"country": "Russia", "subcountry": "Tverskaya"}, "Bezenchuk": {"country": "Russia", "subcountry": "Samara"}, "Beslan": {"country": "Russia", "subcountry": "North Ossetia"}, "Berezniki": {"country": "Russia", "subcountry": "Perm"}, "Beloretsk": {"country": "Russia", "subcountry": "Bashkortostan"}, "Belorechensk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Belooz\u00ebrskiy": {"country": "Russia", "subcountry": "MO"}, "Belgorod": {"country": "Russia", "subcountry": "Belgorod"}, "Bel\u00ebv": {"country": "Russia", "subcountry": "Tula"}, "Belebey": {"country": "Russia", "subcountry": "Bashkortostan"}, "Belaya Kalitva": {"country": "Russia", "subcountry": "Rostov"}, "Belaya Glina": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Baymak": {"country": "Russia", "subcountry": "Bashkortostan"}, "Bavly": {"country": "Russia", "subcountry": "Tatarstan"}, "Bataysk": {"country": "Russia", "subcountry": "Rostov"}, "Barysh": {"country": "Russia", "subcountry": "Ulyanovsk"}, "Balezino": {"country": "Russia", "subcountry": "Udmurtiya"}, "Balashov": {"country": "Russia", "subcountry": "Saratov"}, "Balashikha": {"country": "Russia", "subcountry": "MO"}, "Balakovo": {"country": "Russia", "subcountry": "Saratov"}, "Novaya Balakhna": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Balabanovo": {"country": "Russia", "subcountry": "Kaluga"}, "Baksan": {"country": "Russia", "subcountry": "Kabardino-Balkariya"}, "Bakal": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Bagayevskaya": {"country": "Russia", "subcountry": "Rostov"}, "Babushkin": {"country": "Russia", "subcountry": "Moscow"}, "Azov": {"country": "Russia", "subcountry": "Rostov"}, "Avtury": {"country": "Russia", "subcountry": "Chechnya"}, "Avtovo": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Atkarsk": {"country": "Russia", "subcountry": "Saratov"}, "Astrakhan": {"country": "Russia", "subcountry": "Astrakhan"}, "Asha": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Arzgir": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Arzamas": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Arsk": {"country": "Russia", "subcountry": "Tatarstan"}, "Arkhangel\u2019Sk": {"country": "Russia", "subcountry": "Arkhangelskaya"}, "Argun": {"country": "Russia", "subcountry": "Chechnya"}, "Ardon": {"country": "Russia", "subcountry": "North Ossetia"}, "Apsheronsk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Aprelevka": {"country": "Russia", "subcountry": "MO"}, "Apatity": {"country": "Russia", "subcountry": "Murmansk"}, "Anna": {"country": "Russia", "subcountry": "Voronezj"}, "Andreyevskoye": {"country": "Russia", "subcountry": "MO"}, "Anapa": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Amin\u2019Yevo": {"country": "Russia", "subcountry": "Moscow"}, "Al\u2019Met\u2019Yevsk": {"country": "Russia", "subcountry": "Tatarstan"}, "Aleksin": {"country": "Russia", "subcountry": "Tula"}, "Alekseyevka": {"country": "Russia", "subcountry": "Belgorod"}, "Aleksandrovskoye": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Aleksandrovsk": {"country": "Russia", "subcountry": "Perm"}, "Aleksandrov": {"country": "Russia", "subcountry": "Vladimir"}, "Alatyr\u2019": {"country": "Russia", "subcountry": "Chuvashia"}, "Levoberezhnyy": {"country": "Russia", "subcountry": "MO"}, "Aksay": {"country": "Russia", "subcountry": "Rostov"}, "Akhtyrskiy": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Akhtubinsk": {"country": "Russia", "subcountry": "Astrakhan"}, "Agryz": {"country": "Russia", "subcountry": "Tatarstan"}, "Afipskiy": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Adler": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Achkhoy-Martan": {"country": "Russia", "subcountry": "Chechnya"}, "Abinsk": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Abdulino": {"country": "Russia", "subcountry": "Orenburg"}, "Vasil\u2019Yevo": {"country": "Russia", "subcountry": "Tatarstan"}, "Ryl\u2019Sk": {"country": "Russia", "subcountry": "Kursk"}, "Neftekumsk": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Alagir": {"country": "Russia", "subcountry": "North Ossetia"}, "Persianovka": {"country": "Russia", "subcountry": "Rostov"}, "Dagomys": {"country": "Russia", "subcountry": "Krasnodarskiy"}, "Pavlovo": {"country": "Russia", "subcountry": "Nizjnij Novgorod"}, "Belidzhi": {"country": "Russia", "subcountry": "Dagestan"}, "Lesnoy": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Tr\u00ebkhgornyy": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Znamensk": {"country": "Russia", "subcountry": "Astrakhan"}, "Kochubeyevskoye": {"country": "Russia", "subcountry": "Stavropol'skiy"}, "Moskovskiy": {"country": "Tajikistan", "subcountry": "Khatlon"}, "Usinsk": {"country": "Russia", "subcountry": "Komi Republic"}, "Obukhovo": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Staryy Malgobek": {"country": "Russia", "subcountry": "Ingushetiya"}, "Zavodoukovsk": {"country": "Russia", "subcountry": "Tjumen"}, "Zarinsk": {"country": "Russia", "subcountry": "Altai Krai"}, "Yuzhnyy": {"country": "Russia", "subcountry": "Altai Krai"}, "Yuzhnoural\u2019Sk": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Yurga": {"country": "Russia", "subcountry": "Kemerovo"}, "Yeniseysk": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Yemanzhelinsk": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Yekaterinburg": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Yashkino": {"country": "Russia", "subcountry": "Kemerovo"}, "Yarovoye": {"country": "Russia", "subcountry": "Altai Krai"}, "Yalutorovsk": {"country": "Russia", "subcountry": "Tjumen"}, "Vorkuta": {"country": "Russia", "subcountry": "Komi Republic"}, "Vorgashor": {"country": "Russia", "subcountry": "Komi Republic"}, "Verkhnyaya Salda": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Verkhnyaya Pyshma": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Verkhniy Ufaley": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Uzhur": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Zelenogorsk": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Uray": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Tyumen": {"country": "Russia", "subcountry": "Tjumen"}, "Turinsk": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Topki": {"country": "Russia", "subcountry": "Kemerovo"}, "Tomsk": {"country": "Russia", "subcountry": "Tomsk"}, "Toguchin": {"country": "Russia", "subcountry": "Novosibirsk"}, "Tobol\u2019Sk": {"country": "Russia", "subcountry": "Tjumen"}, "Tayshet": {"country": "Russia", "subcountry": "Irkutsk"}, "Tayga": {"country": "Russia", "subcountry": "Kemerovo"}, "Tavda": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Tatarsk": {"country": "Russia", "subcountry": "Novosibirsk"}, "Tashtagol": {"country": "Russia", "subcountry": "Kemerovo"}, "Tarko-Sale": {"country": "Russia", "subcountry": "Yamalo-Nenetskiy Avtonomnyy Okrug"}, "Tara": {"country": "Russia", "subcountry": "Omsk"}, "Talnakh": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Tal\u2019Menka": {"country": "Russia", "subcountry": "Altai Krai"}, "Talitsa": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Sysert\u2019": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Suzun": {"country": "Russia", "subcountry": "Novosibirsk"}, "Surgut": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Sukhoy Log": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Strezhevoy": {"country": "Russia", "subcountry": "Tomsk"}, "Sredneuralsk": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Sovetskiy": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Sosnovoborsk": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Slavgorod": {"country": "Russia", "subcountry": "Altai Krai"}, "Shushenskoye": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Shumikha": {"country": "Russia", "subcountry": "Kurgan"}, "Sharypovo": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Shadrinsk": {"country": "Russia", "subcountry": "Kurgan"}, "Serov": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Sayanogorsk": {"country": "Russia", "subcountry": "Khakasiya"}, "Salekhard": {"country": "Russia", "subcountry": "Yamalo-Nenetskiy Avtonomnyy Okrug"}, "Rubtsovsk": {"country": "Russia", "subcountry": "Altai Krai"}, "Rezh": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Reftinskiy": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Promyshlennaya": {"country": "Russia", "subcountry": "Kemerovo"}, "Prokop\u2019Yevsk": {"country": "Russia", "subcountry": "Kemerovo"}, "Poykovskiy": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Polysayevo": {"country": "Russia", "subcountry": "Kemerovo"}, "Polevskoy": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Plast": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Osinniki": {"country": "Russia", "subcountry": "Kemerovo"}, "Omsk": {"country": "Russia", "subcountry": "Omsk"}, "Ob\u2019": {"country": "Russia", "subcountry": "Novosibirsk"}, "Nyagan": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Noyabrsk": {"country": "Russia", "subcountry": "Yamalo-Nenetskiy Avtonomnyy Okrug"}, "Novyy Urengoy": {"country": "Russia", "subcountry": "Yamalo-Nenetskiy Avtonomnyy Okrug"}, "Novosilikatnyy": {"country": "Russia", "subcountry": "Altai Krai"}, "Novosibirsk": {"country": "Russia", "subcountry": "Novosibirsk"}, "Novokuznetsk": {"country": "Russia", "subcountry": "Kemerovo"}, "Novoaltaysk": {"country": "Russia", "subcountry": "Altai Krai"}, "Norilsk": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Nizhnyaya Salda": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Nizhnevartovsk": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Nizhneudinsk": {"country": "Russia", "subcountry": "Irkutsk"}, "Nev\u2019Yansk": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Nefteyugansk": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Nazarovo": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Nadym": {"country": "Russia", "subcountry": "Yamalo-Nenetskiy Avtonomnyy Okrug"}, "Myski": {"country": "Russia", "subcountry": "Kemerovo"}, "Minusinsk": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Miass": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Mezhdurechensk": {"country": "Russia", "subcountry": "Kemerovo"}, "Megion": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Mayma": {"country": "Russia", "subcountry": "Altai Republic"}, "Mariinsk": {"country": "Russia", "subcountry": "Kemerovo"}, "Lin\u00ebvo": {"country": "Russia", "subcountry": "Novosibirsk"}, "Lesosibirsk": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Leninsk-Kuznetsky": {"country": "Russia", "subcountry": "Kemerovo"}, "Labytnangi": {"country": "Russia", "subcountry": "Yamalo-Nenetskiy Avtonomnyy Okrug"}, "Kyzyl": {"country": "Russia", "subcountry": "Tyva"}, "Kyshtym": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Kuybyshev": {"country": "Russia", "subcountry": "Novosibirsk"}, "Kurtamysh": {"country": "Russia", "subcountry": "Kurgan"}, "Kurgan": {"country": "Russia", "subcountry": "Kurgan"}, "Kupino": {"country": "Russia", "subcountry": "Novosibirsk"}, "Kulunda": {"country": "Russia", "subcountry": "Altai Krai"}, "Krasnoyarsk": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Krasnoural\u2019Sk": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Krasnotur\u2019Insk": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Krasnoobsk": {"country": "Russia", "subcountry": "Novosibirsk"}, "Korkino": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Kopeysk": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Yugorsk": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Kolpashevo": {"country": "Russia", "subcountry": "Tomsk"}, "Kodinsk": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Kochen\u00ebvo": {"country": "Russia", "subcountry": "Novosibirsk"}, "Kisel\u00ebvsk": {"country": "Russia", "subcountry": "Kemerovo"}, "Kirovgrad": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Khanty-Mansiysk": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Kemerovo": {"country": "Russia", "subcountry": "Kemerovo"}, "Kedrovka": {"country": "Russia", "subcountry": "Kemerovo"}, "Kayyerkan": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Kataysk": {"country": "Russia", "subcountry": "Kurgan"}, "Kasli": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Kartaly": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Karpinsk": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Karasuk": {"country": "Russia", "subcountry": "Novosibirsk"}, "Karabash": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Kansk": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Kamyshlov": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Kamensk-Ural\u2019Skiy": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Kamen\u2019-Na-Obi": {"country": "Russia", "subcountry": "Altai Krai"}, "Kaltan": {"country": "Russia", "subcountry": "Kemerovo"}, "Kalachinsk": {"country": "Russia", "subcountry": "Omsk"}, "Ivdel\u2019": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Iskitim": {"country": "Russia", "subcountry": "Novosibirsk"}, "Ishim": {"country": "Russia", "subcountry": "Tjumen"}, "Irbit": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Ilanskiy": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Gur\u2019Yevsk": {"country": "Russia", "subcountry": "Kemerovo"}, "Gornyak": {"country": "Russia", "subcountry": "Altai Krai"}, "Gorno-Altaysk": {"country": "Russia", "subcountry": "Altai Republic"}, "Dudinka": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Divnogorsk": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Degtyarsk": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Chunskiy": {"country": "Russia", "subcountry": "Irkutsk"}, "Chernogorsk": {"country": "Russia", "subcountry": "Khakasiya"}, "Cherepanovo": {"country": "Russia", "subcountry": "Novosibirsk"}, "Chelyabinsk": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Chebarkul\u2019": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Borovskiy": {"country": "Russia", "subcountry": "Tjumen"}, "Borodino": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Bolotnoye": {"country": "Russia", "subcountry": "Novosibirsk"}, "Bogotol": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Bogdanovich": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Biysk": {"country": "Russia", "subcountry": "Altai Krai"}, "Beryozovsky": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Ber\u00ebzovskiy": {"country": "Russia", "subcountry": "Kemerovo"}, "Ber\u00ebzovka": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Berdsk": {"country": "Russia", "subcountry": "Novosibirsk"}, "Beloyarskiy": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Belovo": {"country": "Russia", "subcountry": "Kemerovo"}, "Barnaul": {"country": "Russia", "subcountry": "Altai Krai"}, "Barabinsk": {"country": "Russia", "subcountry": "Novosibirsk"}, "Asino": {"country": "Russia", "subcountry": "Tomsk"}, "Asbest": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Art\u00ebmovskiy": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Aramil": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Anzhero-Sudzhensk": {"country": "Russia", "subcountry": "Kemerovo"}, "Aleysk": {"country": "Russia", "subcountry": "Altai Krai"}, "Alapayevsk": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Akademgorodok": {"country": "Russia", "subcountry": "Novosibirsk"}, "Achinsk": {"country": "Russia", "subcountry": "Krasnoyarskiy"}, "Abaza": {"country": "Russia", "subcountry": "Khakasiya"}, "Abakan": {"country": "Russia", "subcountry": "Khakasiya"}, "Snezhinsk": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Ozersk": {"country": "Russia", "subcountry": "Chelyabinsk"}, "Novoural\u2019Sk": {"country": "Russia", "subcountry": "Sverdlovsk"}, "Seversk": {"country": "Russia", "subcountry": "Tomsk"}, "Gubkinskiy": {"country": "Russia", "subcountry": "Yamalo-Nenetskiy Avtonomnyy Okrug"}, "Raduzhny": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Muravlenko": {"country": "Russia", "subcountry": "Yamalo-Nenetskiy Avtonomnyy Okrug"}, "Lyantor": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Zima": {"country": "Russia", "subcountry": "Irkutsk"}, "Zheleznogorsk-Ilimskiy": {"country": "Russia", "subcountry": "Irkutsk"}, "Zeya": {"country": "Russia", "subcountry": "Amur"}, "Yakutsk": {"country": "Russia", "subcountry": "Sakha"}, "Vyazemskiy": {"country": "Russia", "subcountry": "Khabarovsk Krai"}, "Vrangel\u2019": {"country": "Russia", "subcountry": "Primorskiy"}, "Vladivostok": {"country": "Russia", "subcountry": "Primorskiy"}, "Vikhorevka": {"country": "Russia", "subcountry": "Irkutsk"}, "Ust\u2019-Kut": {"country": "Russia", "subcountry": "Irkutsk"}, "Ust\u2019-Ilimsk": {"country": "Russia", "subcountry": "Irkutsk"}, "Ussuriysk": {"country": "Russia", "subcountry": "Primorskiy"}, "Usol\u2019Ye-Sibirskoye": {"country": "Russia", "subcountry": "Irkutsk"}, "Ulan-Ude": {"country": "Russia", "subcountry": "Respublika Buryatiya"}, "Udachny": {"country": "Russia", "subcountry": "Sakha"}, "Tynda": {"country": "Russia", "subcountry": "Amur"}, "Tulun": {"country": "Russia", "subcountry": "Irkutsk"}, "Trudovoye": {"country": "Russia", "subcountry": "Primorskiy"}, "Fokino": {"country": "Russia", "subcountry": "Primorskiy"}, "Svobodnyy": {"country": "Russia", "subcountry": "Amur"}, "Spassk-Dal\u2019Niy": {"country": "Russia", "subcountry": "Primorskiy"}, "Slyudyanka": {"country": "Russia", "subcountry": "Irkutsk"}, "Shimanovsk": {"country": "Russia", "subcountry": "Amur"}, "Shelekhov": {"country": "Russia", "subcountry": "Irkutsk"}, "Severobaykal\u2019Sk": {"country": "Russia", "subcountry": "Respublika Buryatiya"}, "Raychikhinsk": {"country": "Russia", "subcountry": "Amur"}, "Petrovsk-Zabaykal\u2019Skiy": {"country": "Russia", "subcountry": "Transbaikal Territory"}, "Partizansk": {"country": "Russia", "subcountry": "Primorskiy"}, "Neryungri": {"country": "Russia", "subcountry": "Sakha"}, "Nerchinsk": {"country": "Russia", "subcountry": "Transbaikal Territory"}, "Nakhodka": {"country": "Russia", "subcountry": "Primorskiy"}, "Mirny": {"country": "Russia", "subcountry": "Sakha"}, "Luchegorsk": {"country": "Russia", "subcountry": "Primorskiy"}, "Lesozavodsk": {"country": "Russia", "subcountry": "Primorskiy"}, "Lensk": {"country": "Russia", "subcountry": "Sakha"}, "Kyakhta": {"country": "Russia", "subcountry": "Respublika Buryatiya"}, "Krasnokamensk": {"country": "Russia", "subcountry": "Transbaikal Territory"}, "Komsomolsk-On-Amur": {"country": "Russia", "subcountry": "Khabarovsk Krai"}, "Khabarovsk": {"country": "Russia", "subcountry": "Khabarovsk Krai"}, "Kavalerovo": {"country": "Russia", "subcountry": "Primorskiy"}, "Irkutsk": {"country": "Russia", "subcountry": "Irkutsk"}, "Gusinoozyorsk": {"country": "Russia", "subcountry": "Respublika Buryatiya"}, "Dal\u2019Nerechensk": {"country": "Russia", "subcountry": "Primorskiy"}, "Chita": {"country": "Russia", "subcountry": "Transbaikal Territory"}, "Cheremkhovo": {"country": "Russia", "subcountry": "Irkutsk"}, "Borzya": {"country": "Russia", "subcountry": "Transbaikal Territory"}, "Bol\u2019Shoy Kamen\u2019": {"country": "Russia", "subcountry": "Primorskiy"}, "Bodaybo": {"country": "Russia", "subcountry": "Irkutsk"}, "Birobidzhan": {"country": "Russia", "subcountry": "Jewish Autonomous Oblast"}, "Bikin": {"country": "Russia", "subcountry": "Khabarovsk Krai"}, "Belogorsk": {"country": "Russia", "subcountry": "Amur"}, "Baykal\u2019Sk": {"country": "Russia", "subcountry": "Irkutsk"}, "Aykhal": {"country": "Russia", "subcountry": "Sakha"}, "Art\u00ebm": {"country": "Russia", "subcountry": "Primorskiy"}, "Arsen\u2019Yev": {"country": "Russia", "subcountry": "Primorskiy"}, "Angarsk": {"country": "Russia", "subcountry": "Irkutsk"}, "Amursk": {"country": "Russia", "subcountry": "Khabarovsk Krai"}, "Aldan": {"country": "Russia", "subcountry": "Sakha"}, "Dal'Negorsk": {"country": "Russia", "subcountry": "Primorskiy"}, "Bratsk": {"country": "Russia", "subcountry": "Irkutsk"}, "Sayansk": {"country": "Russia", "subcountry": "Irkutsk"}, "Khabarovsk Vtoroy": {"country": "Russia", "subcountry": "Khabarovsk Krai"}, "Markova": {"country": "Russia", "subcountry": "Irkutsk"}, "Vilyuchinsk": {"country": "Russia", "subcountry": "Kamtsjatka"}, "Yuzhno-Sakhalinsk": {"country": "Russia", "subcountry": "Sakhalin"}, "Yelizovo": {"country": "Russia", "subcountry": "Kamtsjatka"}, "Vanino": {"country": "Russia", "subcountry": "Khabarovsk Krai"}, "Sovetskaya Gavan\u2019": {"country": "Russia", "subcountry": "Khabarovsk Krai"}, "Poronaysk": {"country": "Russia", "subcountry": "Sakhalin"}, "Petropavlovsk-Kamchatsky": {"country": "Russia", "subcountry": "Kamtsjatka"}, "Nikolayevsk-On-Amure": {"country": "Russia", "subcountry": "Khabarovsk Krai"}, "Nevel\u2019Sk": {"country": "Russia", "subcountry": "Sakhalin"}, "Magadan": {"country": "Russia", "subcountry": "Magadan"}, "Korsakov": {"country": "Russia", "subcountry": "Sakhalin"}, "Kholmsk": {"country": "Russia", "subcountry": "Sakhalin"}, "Baltiysk": {"country": "Russia", "subcountry": "Kaliningrad"}, "Isakogorka": {"country": "Russia", "subcountry": "Arkhangelskaya"}, "Krasnoznamensk": {"country": "Russia", "subcountry": "MO"}, "Chertanovo Yuzhnoye": {"country": "Russia", "subcountry": "Moscow"}, "Zagor\u2019Ye": {"country": "Russia", "subcountry": "Moscow"}, "Orekhovo-Borisovo": {"country": "Russia", "subcountry": "Moscow"}, "Metrogorodok": {"country": "Russia", "subcountry": "Moscow"}, "Kogalym": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Pyt-Yakh": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Langepas": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Zarya": {"country": "Russia", "subcountry": "MO"}, "Raduzhnyy": {"country": "Russia", "subcountry": "Vladimir"}, "Nizhnesortymskiy": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Pokachi": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Izluchinsk": {"country": "Russia", "subcountry": "Khanty-Mansiyskiy Avtonomnyy Okrug"}, "Kurortnyy": {"country": "Russia", "subcountry": "Leningrad"}, "Chernaya Rechka": {"country": "Russia", "subcountry": "Leningrad"}, "Untolovo": {"country": "Russia", "subcountry": "Leningrad"}, "Petrogradka": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Vasyl'Evsky Ostrov": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Parnas": {"country": "Russia", "subcountry": "Leningrad"}, "Kalininskiy": {"country": "Russia", "subcountry": "Leningrad"}, "Krasnogvargeisky": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Admiralteisky": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Krestovskiy Ostrov": {"country": "Russia", "subcountry": "Leningrad"}, "Akademicheskoe": {"country": "Russia", "subcountry": "Leningrad"}, "Finlyandskiy": {"country": "Russia", "subcountry": "Leningrad"}, "Centralniy": {"country": "Russia", "subcountry": "St.-Petersburg"}, "Svetlanovskiy": {"country": "Russia", "subcountry": "Leningrad"}, "Sampsonievskiy": {"country": "Russia", "subcountry": "Leningrad"}, "Vostochnoe Degunino": {"country": "Russia", "subcountry": "MO"}, "Rwamagana": {"country": "Rwanda", "subcountry": "Eastern Province"}, "Musanze": {"country": "Rwanda", "subcountry": "Northern Province"}, "Nzega": {"country": "Tanzania", "subcountry": "Tabora"}, "Kigali": {"country": "Rwanda", "subcountry": "Kigali"}, "Kibuye": {"country": "Rwanda", "subcountry": "Western Province"}, "Kibungo": {"country": "Rwanda", "subcountry": "Eastern Province"}, "Gitarama": {"country": "Rwanda", "subcountry": "Southern Province"}, "Cyangugu": {"country": "Rwanda", "subcountry": "Western Province"}, "Gisenyi": {"country": "Rwanda", "subcountry": "Western Province"}, "Byumba": {"country": "Rwanda", "subcountry": "Northern Province"}, "Butare": {"country": "Rwanda", "subcountry": "Southern Province"}, "Yanbu": {"country": "Saudi Arabia", "subcountry": "Al Mad\u012bnah al Munawwarah"}, "Umm Lajj": {"country": "Saudi Arabia", "subcountry": "Min\u0163aqat Tab\u016bk"}, "\u0162urayf": {"country": "Saudi Arabia", "subcountry": "Northern Borders"}, "Turabah": {"country": "Saudi Arabia", "subcountry": "Makkah"}, "T\u0101r\u016bt": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "\u0162ubarjal": {"country": "Saudi Arabia", "subcountry": "Al Jawf"}, "Sul\u0163\u0101nah": {"country": "Saudi Arabia", "subcountry": "Al Mad\u012bnah al Munawwarah"}, "Sayh\u0101t": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "\u015e\u0101mitah": {"country": "Saudi Arabia", "subcountry": "Jizan"}, "Sakakah": {"country": "Saudi Arabia", "subcountry": "Al Jawf"}, "\u015eafw\u00e1": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "\u015eaby\u0101": {"country": "Saudi Arabia", "subcountry": "Jizan"}, "Ra\u1e29\u012bmah": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "R\u0101bigh": {"country": "Saudi Arabia", "subcountry": "Makkah"}, "Qal\u2018At B\u012bshah": {"country": "Saudi Arabia", "subcountry": "Min\u0163aqat \u2018As\u012br"}, "Najr\u0101n": {"country": "Saudi Arabia", "subcountry": "Najr\u0101n"}, "Mecca": {"country": "Saudi Arabia", "subcountry": "Makkah"}, "Khamis Mushait": {"country": "Saudi Arabia", "subcountry": "Min\u0163aqat \u2018As\u012br"}, "Jizan": {"country": "Saudi Arabia", "subcountry": "Jizan"}, "Jeddah": {"country": "Saudi Arabia", "subcountry": "Makkah"}, "Ha'Il": {"country": "Saudi Arabia", "subcountry": "\u1e28\u0101\u02bcil"}, "Duba": {"country": "Saudi Arabia", "subcountry": "Min\u0163aqat Tab\u016bk"}, "Buraydah": {"country": "Saudi Arabia", "subcountry": "Al-Qassim"}, "Abqaiq": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "Badr \u1e28unayn": {"country": "Saudi Arabia", "subcountry": "Al Mad\u012bnah al Munawwarah"}, "Az Zulfi": {"country": "Saudi Arabia", "subcountry": "Ar Riy\u0101\u1e11"}, "Dhahran": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "A\u0163 \u0162araf": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "Ta\u2019If": {"country": "Saudi Arabia", "subcountry": "Makkah"}, "As Sulayyil": {"country": "Saudi Arabia", "subcountry": "Ar Riy\u0101\u1e11"}, "Riyadh": {"country": "Saudi Arabia", "subcountry": "Ar Riy\u0101\u1e11"}, "Ar Rass": {"country": "Saudi Arabia", "subcountry": "Al-Qassim"}, "\u2018Ar\u2018Ar": {"country": "Saudi Arabia", "subcountry": "Northern Borders"}, "An Nim\u0101\u015f": {"country": "Saudi Arabia", "subcountry": "Min\u0163aqat \u2018As\u012br"}, "Qurayyat": {"country": "Saudi Arabia", "subcountry": "Al Jawf"}, "Al Wajh": {"country": "Saudi Arabia", "subcountry": "Min\u0163aqat Tab\u016bk"}, "Al \u2018Ul\u00e1": {"country": "Saudi Arabia", "subcountry": "Al Mad\u012bnah al Munawwarah"}, "Al Qay\u015f\u016bmah": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "Al Qa\u0163\u012bf": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "Al Munayzilah": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "Al Mubarraz": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "Al Mithnab": {"country": "Saudi Arabia", "subcountry": "Al-Qassim"}, "Khobar": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "Al Khafj\u012b": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "Al Jum\u016bm": {"country": "Saudi Arabia", "subcountry": "Makkah"}, "Al Jubayl": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "Al Huf\u016bf": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "Al Bukayr\u012byah": {"country": "Saudi Arabia", "subcountry": "Al-Qassim"}, "Al Ba\u0163\u0163\u0101l\u012byah": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "Al B\u0101\u1e29ah": {"country": "Saudi Arabia", "subcountry": "Min\u0163aqat al B\u0101\u1e29ah"}, "\u2018Af\u012bf": {"country": "Saudi Arabia", "subcountry": "Ar Riy\u0101\u1e11"}, "Ad Dilam": {"country": "Saudi Arabia", "subcountry": "Ar Riy\u0101\u1e11"}, "Ad Daw\u0101dim\u012b": {"country": "Saudi Arabia", "subcountry": "Ar Riy\u0101\u1e11"}, "Dammam": {"country": "Saudi Arabia", "subcountry": "Eastern Province"}, "Ab\u016b \u2018Ar\u012bsh": {"country": "Saudi Arabia", "subcountry": "Jizan"}, "Abha": {"country": "Saudi Arabia", "subcountry": "Min\u0163aqat \u2018As\u012br"}, "Ash Shaf\u0101": {"country": "Saudi Arabia", "subcountry": "Makkah"}, "Unaizah": {"country": "Saudi Arabia", "subcountry": "Al-Qassim"}, "Honiara": {"country": "Solomon Islands", "subcountry": "Guadalcanal"}, "Zalingei": {"country": "Sudan", "subcountry": "Central Darfur"}, "Wad Medani": {"country": "Sudan", "subcountry": "Al Jaz\u012brah"}, "Umm Ruwaba": {"country": "Sudan", "subcountry": "Sham\u0101l Kurduf\u0101n"}, "Omdurman": {"country": "Sudan", "subcountry": "Khartoum"}, "Tok\u0101r": {"country": "Sudan", "subcountry": "Red Sea"}, "Tandalt\u012b": {"country": "Sudan", "subcountry": "White Nile"}, "Singa": {"country": "Sudan", "subcountry": "Sinn\u0101r"}, "Shendi": {"country": "Sudan", "subcountry": "River Nile"}, "Saw\u0101kin": {"country": "Sudan", "subcountry": "Red Sea"}, "Rabak": {"country": "Sudan", "subcountry": "White Nile"}, "Maiurno": {"country": "Sudan", "subcountry": "Sinn\u0101r"}, "Kosti": {"country": "Sudan", "subcountry": "White Nile"}, "Kuraymah": {"country": "Sudan", "subcountry": "Northern State"}, "Kin\u0101na": {"country": "Sudan", "subcountry": "Sinn\u0101r"}, "Kassala": {"country": "Sudan", "subcountry": "Kassala"}, "Kadugli": {"country": "Sudan", "subcountry": "Southern Kordofan"}, "Doka": {"country": "Sudan", "subcountry": "Al Qa\u1e11\u0101rif"}, "Dilling": {"country": "Sudan", "subcountry": "Southern Kordofan"}, "Port Sudan": {"country": "Sudan", "subcountry": "Red Sea"}, "Berber": {"country": "Sudan", "subcountry": "River Nile"}, "B\u0101rah": {"country": "Sudan", "subcountry": "Sham\u0101l Kurduf\u0101n"}, "Atbara": {"country": "Sudan", "subcountry": "River Nile"}, "As S\u016bk\u012b": {"country": "Sudan", "subcountry": "Sinn\u0101r"}, "Ar Ruseris": {"country": "Sudan", "subcountry": "Blue Nile"}, "Ar Rahad": {"country": "Sudan", "subcountry": "Sham\u0101l Kurduf\u0101n"}, "An Nuh\u016bd": {"country": "Sudan", "subcountry": "West Kordofan State"}, "El Obeid": {"country": "Sudan", "subcountry": "Sham\u0101l Kurduf\u0101n"}, "Al Qi\u0163ena": {"country": "Sudan", "subcountry": "White Nile"}, "Al Qadarif": {"country": "Sudan", "subcountry": "Al Qa\u1e11\u0101rif"}, "Al Mijlad": {"country": "Sudan", "subcountry": "West Kordofan State"}, "Al Man\u0101qil": {"country": "Sudan", "subcountry": "Al Jaz\u012brah"}, "Khartoum": {"country": "Sudan", "subcountry": "Khartoum"}, "Geneina": {"country": "Sudan", "subcountry": "Western Darfur"}, "Al Hil\u0101liyya": {"country": "Sudan", "subcountry": "Al Jaz\u012brah"}, "Al \u1e28aw\u0101tah": {"country": "Sudan", "subcountry": "Al Qa\u1e11\u0101rif"}, "Al Hasaheisa": {"country": "Sudan", "subcountry": "Al Jaz\u012brah"}, "El Fasher": {"country": "Sudan", "subcountry": "Northern Darfur"}, "El Bauga": {"country": "Sudan", "subcountry": "River Nile"}, "Ad Douiem": {"country": "Sudan", "subcountry": "White Nile"}, "El Daein": {"country": "Sudan", "subcountry": "Eastern Darfur"}, "Ad Dindar": {"country": "Sudan", "subcountry": "Sinn\u0101r"}, "Ed Damer": {"country": "Sudan", "subcountry": "River Nile"}, "Ad-Damazin": {"country": "Sudan", "subcountry": "Blue Nile"}, "Ab\u016b Zabad": {"country": "Sudan", "subcountry": "West Kordofan State"}, "Abu Jibeha": {"country": "Sudan", "subcountry": "Southern Kordofan"}, "Ume\u00e5": {"country": "Sweden", "subcountry": "V\u00e4sterbotten"}, "Skellefte\u00e5": {"country": "Sweden", "subcountry": "V\u00e4sterbotten"}, "Pite\u00e5": {"country": "Sweden", "subcountry": "Norrbotten"}, "Lule\u00e5": {"country": "Sweden", "subcountry": "Norrbotten"}, "Kiruna": {"country": "Sweden", "subcountry": "Norrbotten"}, "Boden": {"country": "Sweden", "subcountry": "Norrbotten"}, "Ystad": {"country": "Sweden", "subcountry": "Sk\u00e5ne"}, "Visby": {"country": "Sweden", "subcountry": "Gotland"}, "V\u00e4xj\u00f6": {"country": "Sweden", "subcountry": "Kronoberg"}, "V\u00e4stervik": {"country": "Sweden", "subcountry": "Kalmar"}, "V\u00e4ster\u00e5s": {"country": "Sweden", "subcountry": "V\u00e4stmanland"}, "V\u00e4rnamo": {"country": "Sweden", "subcountry": "J\u00f6nk\u00f6ping"}, "Varberg": {"country": "Sweden", "subcountry": "Halland"}, "V\u00e4nersborg": {"country": "Sweden", "subcountry": "V\u00e4stra G\u00f6taland"}, "Vallentuna": {"country": "Sweden", "subcountry": "Stockholm"}, "Uppsala": {"country": "Sweden", "subcountry": "Uppsala"}, "Upplands V\u00e4sby": {"country": "Sweden", "subcountry": "Stockholm"}, "Uddevalla": {"country": "Sweden", "subcountry": "V\u00e4stra G\u00f6taland"}, "Tumba": {"country": "Sweden", "subcountry": "Stockholm"}, "Tullinge": {"country": "Sweden", "subcountry": "Stockholm"}, "Trollh\u00e4ttan": {"country": "Sweden", "subcountry": "V\u00e4stra G\u00f6taland"}, "Trelleborg": {"country": "Sweden", "subcountry": "Sk\u00e5ne"}, "T\u00e4by": {"country": "Sweden", "subcountry": "Stockholm"}, "Sundsvall": {"country": "Sweden", "subcountry": "V\u00e4sternorrland"}, "Sundbyberg": {"country": "Sweden", "subcountry": "Stockholm"}, "Stockholm": {"country": "Sweden", "subcountry": "Stockholm"}, "Solna": {"country": "Sweden", "subcountry": "Stockholm"}, "Sollentuna": {"country": "Sweden", "subcountry": "Stockholm"}, "S\u00f6dert\u00e4lje": {"country": "Sweden", "subcountry": "Stockholm"}, "Sk\u00f6vde": {"country": "Sweden", "subcountry": "V\u00e4stra G\u00f6taland"}, "Skara": {"country": "Sweden", "subcountry": "V\u00e4stra G\u00f6taland"}, "Sandviken": {"country": "Sweden", "subcountry": "G\u00e4vleborg"}, "R\u00e5sunda": {"country": "Sweden", "subcountry": "Stockholm"}, "Partille": {"country": "Sweden", "subcountry": "V\u00e4stra G\u00f6taland"}, "\u00d6stersund": {"country": "Sweden", "subcountry": "J\u00e4mtland"}, "\u00d6stermalm": {"country": "Sweden", "subcountry": "Stockholm"}, "Oskarshamn": {"country": "Sweden", "subcountry": "Kalmar"}, "\u00d6rnsk\u00f6ldsvik": {"country": "Sweden", "subcountry": "V\u00e4sternorrland"}, "\u00d6rebro": {"country": "Sweden", "subcountry": "\u00d6rebro"}, "Nyk\u00f6ping": {"country": "Sweden", "subcountry": "S\u00f6dermanland"}, "Norrt\u00e4lje": {"country": "Sweden", "subcountry": "Stockholm"}, "Norrk\u00f6ping": {"country": "Sweden", "subcountry": "\u00d6sterg\u00f6tland"}, "N\u00e4ssj\u00f6": {"country": "Sweden", "subcountry": "J\u00f6nk\u00f6ping"}, "Nacka": {"country": "Sweden", "subcountry": "Stockholm"}, "Motala": {"country": "Sweden", "subcountry": "\u00d6sterg\u00f6tland"}, "M\u00f6lndal": {"country": "Sweden", "subcountry": "V\u00e4stra G\u00f6taland"}, "M\u00e4rsta": {"country": "Sweden", "subcountry": "Stockholm"}, "Malm\u00f6": {"country": "Sweden", "subcountry": "Sk\u00e5ne"}, "Lund": {"country": "Sweden", "subcountry": "Sk\u00e5ne"}, "Link\u00f6ping": {"country": "Sweden", "subcountry": "\u00d6sterg\u00f6tland"}, "Lidk\u00f6ping": {"country": "Sweden", "subcountry": "V\u00e4stra G\u00f6taland"}, "Liding\u00f6": {"country": "Sweden", "subcountry": "Stockholm"}, "Lerum": {"country": "Sweden", "subcountry": "V\u00e4stra G\u00f6taland"}, "Landskrona": {"country": "Sweden", "subcountry": "Sk\u00e5ne"}, "Kungsbacka": {"country": "Sweden", "subcountry": "Halland"}, "Kung\u00e4lv": {"country": "Sweden", "subcountry": "V\u00e4stra G\u00f6taland"}, "Kristinehamn": {"country": "Sweden", "subcountry": "V\u00e4rmland"}, "Kristianstad": {"country": "Sweden", "subcountry": "Sk\u00e5ne"}, "K\u00f6ping": {"country": "Sweden", "subcountry": "V\u00e4stmanland"}, "Katrineholm": {"country": "Sweden", "subcountry": "S\u00f6dermanland"}, "Karlstad": {"country": "Sweden", "subcountry": "V\u00e4rmland"}, "Karlskrona": {"country": "Sweden", "subcountry": "Blekinge"}, "Karlskoga": {"country": "Sweden", "subcountry": "\u00d6rebro"}, "Karlshamn": {"country": "Sweden", "subcountry": "Blekinge"}, "Kalmar": {"country": "Sweden", "subcountry": "Kalmar"}, "J\u00f6nk\u00f6ping": {"country": "Sweden", "subcountry": "J\u00f6nk\u00f6ping"}, "Jakobsberg": {"country": "Sweden", "subcountry": "Stockholm"}, "Huskvarna": {"country": "Sweden", "subcountry": "J\u00f6nk\u00f6ping"}, "Huddinge": {"country": "Sweden", "subcountry": "Stockholm"}, "Helsingborg": {"country": "Sweden", "subcountry": "Sk\u00e5ne"}, "H\u00e4ssleholm": {"country": "Sweden", "subcountry": "Sk\u00e5ne"}, "H\u00e4rn\u00f6sand": {"country": "Sweden", "subcountry": "V\u00e4sternorrland"}, "Haninge": {"country": "Sweden", "subcountry": "Stockholm"}, "Halmstad": {"country": "Sweden", "subcountry": "Halland"}, "G\u00f6teborg": {"country": "Sweden", "subcountry": "V\u00e4stra G\u00f6taland"}, "G\u00e4vle": {"country": "Sweden", "subcountry": "G\u00e4vleborg"}, "Gamla Uppsala": {"country": "Sweden", "subcountry": "Uppsala"}, "Falun": {"country": "Sweden", "subcountry": "Dalarna"}, "Falk\u00f6ping": {"country": "Sweden", "subcountry": "V\u00e4stra G\u00f6taland"}, "Falkenberg": {"country": "Sweden", "subcountry": "Halland"}, "Esl\u00f6v": {"country": "Sweden", "subcountry": "Sk\u00e5ne"}, "Eskilstuna": {"country": "Sweden", "subcountry": "S\u00f6dermanland"}, "Enk\u00f6ping": {"country": "Sweden", "subcountry": "Uppsala"}, "Bromma": {"country": "Sweden", "subcountry": "Stockholm"}, "Borl\u00e4nge": {"country": "Sweden", "subcountry": "Dalarna"}, "Bor\u00e5s": {"country": "Sweden", "subcountry": "V\u00e4stra G\u00f6taland"}, "Boo": {"country": "Sweden", "subcountry": "Stockholm"}, "\u00c5rsta": {"country": "Sweden", "subcountry": "Stockholm"}, "\u00c4ngelholm": {"country": "Sweden", "subcountry": "Sk\u00e5ne"}, "Alings\u00e5s": {"country": "Sweden", "subcountry": "V\u00e4stra G\u00f6taland"}, "\u00c5kersberga": {"country": "Sweden", "subcountry": "Stockholm"}, "Majorna": {"country": "Sweden", "subcountry": "V\u00e4stra G\u00f6taland"}, "Singapore": {"country": "Singapore", "subcountry": "Central Singapore"}, "Jamestown": {"country": "United States", "subcountry": "New York"}, "Trbovlje": {"country": "Slovenia", "subcountry": "Trbovlje"}, "Velenje": {"country": "Slovenia", "subcountry": "Velenje"}, "Ptuj": {"country": "Slovenia", "subcountry": "Ptuj"}, "Novo Mesto": {"country": "Slovenia", "subcountry": "Novo Mesto"}, "Maribor": {"country": "Slovenia", "subcountry": "Maribor"}, "Ljubljana": {"country": "Slovenia", "subcountry": "Ljubljana"}, "Kranj": {"country": "Slovenia", "subcountry": "Kranj"}, "Koper": {"country": "Slovenia", "subcountry": "Koper-Capodistria"}, "Celje": {"country": "Slovenia", "subcountry": "Celje"}, "Longyearbyen": {"country": "Svalbard and Jan Mayen", "subcountry": "Svalbard"}, "Vranov Nad Top\u013eou": {"country": "Slovakia", "subcountry": "Pre\u0161ovsk\u00fd"}, "Trebi\u0161ov": {"country": "Slovakia", "subcountry": "Ko\u0161ick\u00fd"}, "Star\u00e1 \u013dubov\u0148a": {"country": "Slovakia", "subcountry": "Pre\u0161ovsk\u00fd"}, "Spi\u0161sk\u00e1 Nov\u00e1 Ves": {"country": "Slovakia", "subcountry": "Ko\u0161ick\u00fd"}, "Snina": {"country": "Slovakia", "subcountry": "Pre\u0161ovsk\u00fd"}, "Ro\u017e\u0148ava": {"country": "Slovakia", "subcountry": "Ko\u0161ick\u00fd"}, "Rimavsk\u00e1 Sobota": {"country": "Slovakia", "subcountry": "Banskobystrick\u00fd"}, "Pre\u0161ov": {"country": "Slovakia", "subcountry": "Pre\u0161ovsk\u00fd"}, "Poprad": {"country": "Slovakia", "subcountry": "Pre\u0161ovsk\u00fd"}, "Michalovce": {"country": "Slovakia", "subcountry": "Ko\u0161ick\u00fd"}, "Ko\u0161ice": {"country": "Slovakia", "subcountry": "Ko\u0161ick\u00fd"}, "Ke\u017emarok": {"country": "Slovakia", "subcountry": "Pre\u0161ovsk\u00fd"}, "Humenn\u00e9": {"country": "Slovakia", "subcountry": "Pre\u0161ovsk\u00fd"}, "Bardejov": {"country": "Slovakia", "subcountry": "Pre\u0161ovsk\u00fd"}, "Zvolen": {"country": "Slovakia", "subcountry": "Banskobystrick\u00fd"}, "Zlat\u00e9 Moravce": {"country": "Slovakia", "subcountry": "Nitriansky"}, "\u017dilina": {"country": "Slovakia", "subcountry": "\u017dilinsk\u00fd"}, "\u017diar Nad Hronom": {"country": "Slovakia", "subcountry": "Banskobystrick\u00fd"}, "Trnava": {"country": "Slovakia", "subcountry": "Trnavsk\u00fd"}, "Tren\u010d\u00edn": {"country": "Slovakia", "subcountry": "Tren\u010diansky"}, "Skalica": {"country": "Slovakia", "subcountry": "Trnavsk\u00fd"}, "Senica": {"country": "Slovakia", "subcountry": "Trnavsk\u00fd"}, "Sellye": {"country": "Slovakia", "subcountry": "Nitriansky"}, "Ru\u017eomberok": {"country": "Slovakia", "subcountry": "\u017dilinsk\u00fd"}, "P\u00fachov": {"country": "Slovakia", "subcountry": "Nitriansky"}, "Prievidza": {"country": "Slovakia", "subcountry": "Nitriansky"}, "Pova\u017esk\u00e1 Bystrica": {"country": "Slovakia", "subcountry": "Tren\u010diansky"}, "Pie\u0161\u0165any": {"country": "Slovakia", "subcountry": "Trnavsk\u00fd"}, "Pezinok": {"country": "Slovakia", "subcountry": "Bratislavsk\u00fd"}, "Partiz\u00e1nske": {"country": "Slovakia", "subcountry": "Nitriansky"}, "Nov\u00e9 Z\u00e1mky": {"country": "Slovakia", "subcountry": "Nitriansky"}, "Nov\u00e9 Mesto Nad V\u00e1hom": {"country": "Slovakia", "subcountry": "Tren\u010diansky"}, "Nitra": {"country": "Slovakia", "subcountry": "Nitriansky"}, "Martin": {"country": "Slovakia", "subcountry": "\u017dilinsk\u00fd"}, "Malacky": {"country": "Slovakia", "subcountry": "Bratislavsk\u00fd"}, "Lu\u010denec": {"country": "Slovakia", "subcountry": "Banskobystrick\u00fd"}, "Liptovsk\u00fd Mikul\u00e1\u0161": {"country": "Slovakia", "subcountry": "\u017dilinsk\u00fd"}, "Levice": {"country": "Slovakia", "subcountry": "Nitriansky"}, "Kysuck\u00e9 Nov\u00e9 Mesto": {"country": "Slovakia", "subcountry": "\u017dilinsk\u00fd"}, "Kom\u00e1rno": {"country": "Slovakia", "subcountry": "Nitriansky"}, "Hlohovec": {"country": "Slovakia", "subcountry": "Trnavsk\u00fd"}, "Handlov\u00e1": {"country": "Slovakia", "subcountry": "Nitriansky"}, "Galanta": {"country": "Slovakia", "subcountry": "Trnavsk\u00fd"}, "Dunajsk\u00e1 Streda": {"country": "Slovakia", "subcountry": "Trnavsk\u00fd"}, "Dubnica Nad V\u00e1hom": {"country": "Slovakia", "subcountry": "Nitriansky"}, "Doln\u00fd Kub\u00edn": {"country": "Slovakia", "subcountry": "\u017dilinsk\u00fd"}, "Detva": {"country": "Slovakia", "subcountry": "Banskobystrick\u00fd"}, "\u010cadca": {"country": "Slovakia", "subcountry": "\u017dilinsk\u00fd"}, "Brezno": {"country": "Slovakia", "subcountry": "Banskobystrick\u00fd"}, "Bratislava": {"country": "Slovakia", "subcountry": "Bratislavsk\u00fd"}, "Bansk\u00e1 Bystrica": {"country": "Slovakia", "subcountry": "Banskobystrick\u00fd"}, "B\u00e1novce Nad Bebravou": {"country": "Slovakia", "subcountry": "Tren\u010diansky"}, "Segbwema": {"country": "Sierra Leone", "subcountry": "Eastern Province"}, "Port Loko": {"country": "Sierra Leone", "subcountry": "Northern Province"}, "Makeni": {"country": "Sierra Leone", "subcountry": "Northern Province"}, "Lunsar": {"country": "Sierra Leone", "subcountry": "Northern Province"}, "Koidu": {"country": "Sierra Leone", "subcountry": "Eastern Province"}, "Kenema": {"country": "Sierra Leone", "subcountry": "Eastern Province"}, "Kabala": {"country": "Sierra Leone", "subcountry": "Northern Province"}, "Freetown": {"country": "Sierra Leone", "subcountry": "Western Area"}, "Bo": {"country": "Sierra Leone", "subcountry": "Southern Province"}, "San Marino": {"country": "San Marino", "subcountry": "San Marino"}, "Ziguinchor": {"country": "Senegal", "subcountry": "Ziguinchor"}, "V\u00e9lingara": {"country": "Senegal", "subcountry": "Kolda"}, "Ti\u00e9bo": {"country": "Senegal", "subcountry": "Diourbel"}, "Thi\u00e8s Nones": {"country": "Senegal", "subcountry": "Thi\u00e8s"}, "Tambacounda": {"country": "Senegal", "subcountry": "Tambacounda"}, "S\u00e9dhiou": {"country": "Senegal", "subcountry": "S\u00e9dhiou"}, "Richard-Toll": {"country": "Senegal", "subcountry": "Saint-Louis"}, "Pout": {"country": "Senegal", "subcountry": "Thi\u00e8s"}, "Pourham": {"country": "Senegal", "subcountry": "Fatick"}, "Pikine": {"country": "Senegal", "subcountry": "Dakar"}, "Nioro Du Rip": {"country": "Senegal", "subcountry": "Kaolack"}, "Ngu\u00e9khokh": {"country": "Senegal", "subcountry": "Thi\u00e8s"}, "Ndib\u00e8ne Dahra": {"country": "Senegal", "subcountry": "Louga"}, "M\u00e9kh\u00e9": {"country": "Senegal", "subcountry": "Thi\u00e8s"}, "Mbak\u00e9": {"country": "Senegal", "subcountry": "Diourbel"}, "Matam": {"country": "Senegal", "subcountry": "Matam"}, "Louga": {"country": "Senegal", "subcountry": "Louga"}, "Kolda": {"country": "Senegal", "subcountry": "Kolda"}, "K\u00e9dougou": {"country": "Senegal", "subcountry": "K\u00e9dougou"}, "Kayar": {"country": "Senegal", "subcountry": "Thi\u00e8s"}, "Kaolack": {"country": "Senegal", "subcountry": "Kaolack"}, "Kaffrine": {"country": "Senegal", "subcountry": "Kaffrine"}, "Joal-Fadiout": {"country": "Senegal", "subcountry": "Thi\u00e8s"}, "Guinguin\u00e9o": {"country": "Senegal", "subcountry": "Fatick"}, "Dara": {"country": "Senegal", "subcountry": "Louga"}, "Dakar": {"country": "Senegal", "subcountry": "Dakar"}, "Bignona": {"country": "Senegal", "subcountry": "Ziguinchor"}, "Wanlaweyn": {"country": "Somalia", "subcountry": "Lower Shabeelle"}, "Qoryooley": {"country": "Somalia", "subcountry": "Lower Shabeelle"}, "Qandala": {"country": "Somalia", "subcountry": "Bari"}, "Mogadishu": {"country": "Somalia", "subcountry": "Banaadir"}, "Marka": {"country": "Somalia", "subcountry": "Lower Shabeelle"}, "Luuq": {"country": "Somalia", "subcountry": "Gedo"}, "Kismayo": {"country": "Somalia", "subcountry": "Lower Juba"}, "Jilib": {"country": "Somalia", "subcountry": "Middle Juba"}, "Jawhar": {"country": "Somalia", "subcountry": "Middle Shabele"}, "Jamaame": {"country": "Somalia", "subcountry": "Lower Juba"}, "Hargeysa": {"country": "Somalia", "subcountry": "Woqooyi Galbeed"}, "Garoowe": {"country": "Somalia", "subcountry": "Nugaal"}, "Gaalkacyo": {"country": "Somalia", "subcountry": "Mudug"}, "Eyl": {"country": "Somalia", "subcountry": "Nugaal"}, "Ceerigaabo": {"country": "Somalia", "subcountry": "Sanaag"}, "Ceeldheer": {"country": "Somalia", "subcountry": "Galguduud"}, "Buurhakaba": {"country": "Somalia", "subcountry": "Bay"}, "Buulobarde": {"country": "Somalia", "subcountry": "Hiiraan"}, "Burao": {"country": "Somalia", "subcountry": "Togdheer"}, "Bosaso": {"country": "Somalia", "subcountry": "Bari"}, "Berbera": {"country": "Somalia", "subcountry": "Woqooyi Galbeed"}, "Beledweyne": {"country": "Somalia", "subcountry": "Hiiraan"}, "Baidoa": {"country": "Somalia", "subcountry": "Bay"}, "Baardheere": {"country": "Somalia", "subcountry": "Gedo"}, "Afgooye": {"country": "Somalia", "subcountry": "Lower Shabeelle"}, "Laascaanood": {"country": "Somalia", "subcountry": "Sool"}, "Paramaribo": {"country": "Suriname", "subcountry": "Paramaribo"}, "Lelydorp": {"country": "Suriname", "subcountry": "Wanica"}, "Yei": {"country": "South Sudan", "subcountry": "Central Equatoria"}, "Yambio": {"country": "South Sudan", "subcountry": "Western Equatoria"}, "Wau": {"country": "South Sudan", "subcountry": "Western Bahr al Ghazal"}, "Aweil": {"country": "South Sudan", "subcountry": "Northern Bahr al Ghazal"}, "Torit": {"country": "South Sudan", "subcountry": "Eastern Equatoria"}, "Tonj": {"country": "South Sudan", "subcountry": "Warrap"}, "Rumbek": {"country": "South Sudan", "subcountry": "Lakes"}, "Malakal": {"country": "South Sudan", "subcountry": "Upper Nile"}, "Juba": {"country": "South Sudan", "subcountry": "Central Equatoria"}, "Gogrial": {"country": "South Sudan", "subcountry": "Warrap"}, "Pajok": {"country": "South Sudan", "subcountry": "Eastern Equatoria"}, "S\u00e3o Tom\u00e9": {"country": "Sao Tome and Principe", "subcountry": "S\u00e3o Tom\u00e9 Island"}, "Zacatecoluca": {"country": "El Salvador", "subcountry": "La Paz"}, "Usulut\u00e1n": {"country": "El Salvador", "subcountry": "Usulut\u00e1n"}, "Soyapango": {"country": "El Salvador", "subcountry": "San Salvador"}, "Sonzacate": {"country": "El Salvador", "subcountry": "Sonsonate"}, "Sonsonate": {"country": "El Salvador", "subcountry": "Sonsonate"}, "Sensuntepeque": {"country": "El Salvador", "subcountry": "Caba\u00f1as"}, "Santiago De Mar\u00eda": {"country": "El Salvador", "subcountry": "Usulut\u00e1n"}, "San Salvador": {"country": "El Salvador", "subcountry": "San Salvador"}, "San Rafael Oriente": {"country": "El Salvador", "subcountry": "San Miguel"}, "Quezaltepeque": {"country": "El Salvador", "subcountry": "La Libertad"}, "Puerto El Triunfo": {"country": "El Salvador", "subcountry": "Usulut\u00e1n"}, "Santa Tecla": {"country": "El Salvador", "subcountry": "La Libertad"}, "Metap\u00e1n": {"country": "El Salvador", "subcountry": "Santa Ana"}, "Mejicanos": {"country": "El Salvador", "subcountry": "San Salvador"}, "Izalco": {"country": "El Salvador", "subcountry": "Sonsonate"}, "Ilopango": {"country": "El Salvador", "subcountry": "San Salvador"}, "Delgado": {"country": "El Salvador", "subcountry": "San Salvador"}, "Cuscatancingo": {"country": "El Salvador", "subcountry": "San Salvador"}, "Cojutepeque": {"country": "El Salvador", "subcountry": "Cuscatl\u00e1n"}, "Chalchuapa": {"country": "El Salvador", "subcountry": "Santa Ana"}, "Chalatenango": {"country": "El Salvador", "subcountry": "Chalatenango"}, "Ayutuxtepeque": {"country": "El Salvador", "subcountry": "San Salvador"}, "Apopa": {"country": "El Salvador", "subcountry": "San Salvador"}, "Antiguo Cuscatl\u00e1n": {"country": "El Salvador", "subcountry": "La Libertad"}, "Ahuachap\u00e1n": {"country": "El Salvador", "subcountry": "Ahuachap\u00e1n"}, "Acajutla": {"country": "El Salvador", "subcountry": "Sonsonate"}, "Philipsburg": {"country": "Sint Maarten", "subcountry": "N/A"}, "Yabr\u016bd": {"country": "Syria", "subcountry": "Rif-dimashq"}, "\u0162ayyibat Al Im\u0101m": {"country": "Syria", "subcountry": "Hama"}, "Tartouss": {"country": "Syria", "subcountry": "Tartus"}, "Tall Rif\u2018At": {"country": "Syria", "subcountry": "Aleppo"}, "Tallkalakh": {"country": "Syria", "subcountry": "Homs"}, "Tallb\u012bsah": {"country": "Syria", "subcountry": "Homs"}, "\u0162afas": {"country": "Syria", "subcountry": "Daraa"}, "Tadmur": {"country": "Syria", "subcountry": "Homs"}, "T\u0101dif": {"country": "Syria", "subcountry": "Aleppo"}, "Souran": {"country": "Syria", "subcountry": "Hama"}, "Subaykh\u0101n": {"country": "Syria", "subcountry": "Deir ez-Zor"}, "Ash Shaykh Misk\u012bn": {"country": "Syria", "subcountry": "Daraa"}, "Sar\u0101qib": {"country": "Syria", "subcountry": "Idlib"}, "Salq\u012bn": {"country": "Syria", "subcountry": "Idlib"}, "As Salam\u012byah": {"country": "Syria", "subcountry": "Hama"}, "Satita": {"country": "Syria", "subcountry": "Tartus"}, "Qa\u0163an\u0101": {"country": "Syria", "subcountry": "Rif-dimashq"}, "J\u0101sim": {"country": "Syria", "subcountry": "Daraa"}, "Q\u0101rah": {"country": "Syria", "subcountry": "Rif-dimashq"}, "Nubl": {"country": "Syria", "subcountry": "Aleppo"}, "Ma\u015fy\u0101f": {"country": "Syria", "subcountry": "Hama"}, "Manbij": {"country": "Syria", "subcountry": "Aleppo"}, "Ma\u2018Arratmi\u015fr\u012bn": {"country": "Syria", "subcountry": "Idlib"}, "Kh\u0101n Shaykh\u016bn": {"country": "Syria", "subcountry": "Idlib"}, "Kafr Zayt\u0101": {"country": "Syria", "subcountry": "Hama"}, "Kafr Takh\u0101r\u012bm": {"country": "Syria", "subcountry": "Idlib"}, "Kafr Nubl": {"country": "Syria", "subcountry": "Idlib"}, "Kafr L\u0101h\u0101": {"country": "Syria", "subcountry": "Homs"}, "Jisr Ash Shugh\u016br": {"country": "Syria", "subcountry": "Idlib"}, "Jayr\u016bd": {"country": "Syria", "subcountry": "Rif-dimashq"}, "Jar\u0101bulus": {"country": "Syria", "subcountry": "Aleppo"}, "Jablah": {"country": "Syria", "subcountry": "Latakia"}, "\u2018Irb\u012bn": {"country": "Syria", "subcountry": "Rif-dimashq"}, "Inkhil": {"country": "Syria", "subcountry": "Daraa"}, "Idlib": {"country": "Syria", "subcountry": "Idlib"}, "Homs": {"country": "Syria", "subcountry": "Homs"}, "\u1e28arast\u0101": {"country": "Syria", "subcountry": "Rif-dimashq"}, "\u1e28am\u0101h": {"country": "Syria", "subcountry": "Hama"}, "\u1e28alf\u0101y\u0101": {"country": "Syria", "subcountry": "Hama"}, "Aleppo": {"country": "Syria", "subcountry": "Aleppo"}, "Douma": {"country": "Syria", "subcountry": "Rif-dimashq"}, "Damascus": {"country": "United States", "subcountry": "Maryland"}, "Dayr \u1e28\u0101fir": {"country": "Syria", "subcountry": "Aleppo"}, "Deir Ez-Zor": {"country": "Syria", "subcountry": "Deir ez-Zor"}, "Ad Darb\u0101s\u012byah": {"country": "Syria", "subcountry": "Al-Hasakah"}, "D\u0101rayy\u0101": {"country": "Syria", "subcountry": "Rif-dimashq"}, "Dar\u2018\u0100": {"country": "Syria", "subcountry": "Daraa"}, "Binnish": {"country": "Syria", "subcountry": "Idlib"}, "B\u0101niy\u0101s": {"country": "Syria", "subcountry": "Tartus"}, "Az Zabad\u0101n\u012b": {"country": "Syria", "subcountry": "Rif-dimashq"}, "I\u2018Z\u0101z": {"country": "Syria", "subcountry": "Aleppo"}, "\u2018Ayn Al \u2018Arab": {"country": "Syria", "subcountry": "Aleppo"}, "At Tall": {"country": "Syria", "subcountry": "Rif-dimashq"}, "Ath Thawrah": {"country": "Syria", "subcountry": "Ar-Raqqah"}, "As Suwayd\u0101\u2019": {"country": "Syria", "subcountry": "As-Suwayda"}, "A\u015f \u015eanamayn": {"country": "Syria", "subcountry": "Daraa"}, "As Saf\u012brah": {"country": "Syria", "subcountry": "Aleppo"}, "Ar Rastan": {"country": "Syria", "subcountry": "Homs"}, "Ar Raqqah": {"country": "Syria", "subcountry": "Ar-Raqqah"}, "An Nabk": {"country": "Syria", "subcountry": "Rif-dimashq"}, "Al Qu\u0163ayfah": {"country": "Syria", "subcountry": "Rif-dimashq"}, "Al Qunay\u0163irah": {"country": "Syria", "subcountry": "Quneitra"}, "Al Qaryatayn": {"country": "Syria", "subcountry": "Homs"}, "Al May\u0101d\u012bn": {"country": "Syria", "subcountry": "Deir ez-Zor"}, "Latakia": {"country": "Syria", "subcountry": "Latakia"}, "Al Kiswah": {"country": "Syria", "subcountry": "Rif-dimashq"}, "Al \u1e28asakah": {"country": "Syria", "subcountry": "Al-Hasakah"}, "Al \u1e28ar\u0101k": {"country": "Syria", "subcountry": "Daraa"}, "Al B\u0101b": {"country": "Syria", "subcountry": "Aleppo"}, "\u2018Afr\u012bn": {"country": "Syria", "subcountry": "Aleppo"}, "Ad D\u0101n\u0101": {"country": "Syria", "subcountry": "Idlib"}, "\u0100lb\u016b Kam\u0101l": {"country": "Syria", "subcountry": "Deir ez-Zor"}, "Haj\u012bn": {"country": "Syria", "subcountry": "Deir ez-Zor"}, "Mbabane": {"country": "Swaziland", "subcountry": "Hhohho"}, "Manzini": {"country": "Swaziland", "subcountry": "Manzini"}, "Lobamba": {"country": "Swaziland", "subcountry": "Hhohho"}, "Cockburn Town": {"country": "Turks and Caicos Islands", "subcountry": "N/A"}, "Fada": {"country": "Chad", "subcountry": "Ennedi-Ouest"}, "Am Timan": {"country": "Chad", "subcountry": "Salamat"}, "Ab\u00e9ch\u00e9": {"country": "Chad", "subcountry": "Ouadda\u00ef"}, "Sagh": {"country": "Chad", "subcountry": "Moyen-Chari"}, "Pala": {"country": "Chad", "subcountry": "Mayo-Kebbi Ouest"}, "Oum Hadjer": {"country": "Chad", "subcountry": "Batha"}, "N'Djamena": {"country": "Chad", "subcountry": "Chari-Baguirmi"}, "Moussoro": {"country": "Chad", "subcountry": "Barh el Gazel"}, "Moundou": {"country": "Chad", "subcountry": "Logone Occidental"}, "Mongo": {"country": "Chad", "subcountry": "Gu\u00e9ra"}, "Mboursou L\u00e9r\u00e9": {"country": "Chad", "subcountry": "Mayo-Kebbi Ouest"}, "Massakory": {"country": "Chad", "subcountry": "Hadjer-Lamis"}, "Massaguet": {"country": "Chad", "subcountry": "Hadjer-Lamis"}, "La\u00ef": {"country": "Chad", "subcountry": "Tandjil\u00e9"}, "Kyab\u00e9": {"country": "Chad", "subcountry": "Moyen-Chari"}, "Koumra": {"country": "Chad", "subcountry": "Mandoul"}, "Kelo": {"country": "Chad", "subcountry": "Tandjil\u00e9"}, "Dourbali": {"country": "Chad", "subcountry": "Chari-Baguirmi"}, "Doba": {"country": "Chad", "subcountry": "Logone Oriental"}, "Bongor": {"country": "Chad", "subcountry": "Mayo-Kebbi Est"}, "Bitkine": {"country": "Chad", "subcountry": "Gu\u00e9ra"}, "Benoy": {"country": "Chad", "subcountry": "Logone Occidental"}, "Ati": {"country": "Chad", "subcountry": "Batha"}, "Port-Aux-Fran\u00e7ais": {"country": "French Southern Territories", "subcountry": "Kerguelen"}, "Vogan": {"country": "Togo", "subcountry": "Maritime"}, "Ts\u00e9vi\u00e9": {"country": "Togo", "subcountry": "Maritime"}, "Tchamba": {"country": "Togo", "subcountry": "Centrale"}, "Sotouboua": {"country": "Togo", "subcountry": "Centrale"}, "Sokod\u00e9": {"country": "Togo", "subcountry": "Centrale"}, "Nots\u00e9": {"country": "Togo", "subcountry": "Plateaux"}, "Niamtougou": {"country": "Togo", "subcountry": "Kara"}, "Sansann\u00e9-Mango": {"country": "Togo", "subcountry": "Savanes"}, "Lom\u00e9": {"country": "Togo", "subcountry": "Maritime"}, "Kpalim\u00e9": {"country": "Togo", "subcountry": "Plateaux"}, "Kara": {"country": "Togo", "subcountry": "Kara"}, "Dapaong": {"country": "Togo", "subcountry": "Savanes"}, "Bassar": {"country": "Togo", "subcountry": "Kara"}, "Bafilo": {"country": "Togo", "subcountry": "Kara"}, "Badou": {"country": "Togo", "subcountry": "Plateaux"}, "Atakpam\u00e9": {"country": "Togo", "subcountry": "Plateaux"}, "An\u00e9ho": {"country": "Togo", "subcountry": "Maritime"}, "Ban Talat Yai": {"country": "Thailand", "subcountry": "Phuket"}, "Ban Talat Nua": {"country": "Thailand", "subcountry": "Phuket"}, "Sam Roi Yot": {"country": "Thailand", "subcountry": "Prachuap Khiri Khan"}, "Phetchaburi": {"country": "Thailand", "subcountry": "Phetchaburi"}, "Trang": {"country": "Thailand", "subcountry": "Trang"}, "Thung Song": {"country": "Thailand", "subcountry": "Nakhon Si Thammarat"}, "Thoen": {"country": "Thailand", "subcountry": "Lampang"}, "Thap Than": {"country": "Thailand", "subcountry": "Uthai Thani"}, "Tha Muang": {"country": "Thailand", "subcountry": "Kanchanaburi"}, "Tha Maka": {"country": "Thailand", "subcountry": "Kanchanaburi"}, "Tak": {"country": "Thailand", "subcountry": "Tak"}, "Surat Thani": {"country": "Thailand", "subcountry": "Surat Thani"}, "Sukhothai": {"country": "Thailand", "subcountry": "Sukhothai"}, "Si Satchanalai": {"country": "Thailand", "subcountry": "Sukhothai"}, "Sawankhalok": {"country": "Thailand", "subcountry": "Sukhothai"}, "San Pa Tong": {"country": "Thailand", "subcountry": "Chiang Mai"}, "San Kamphaeng": {"country": "Thailand", "subcountry": "Chiang Mai"}, "Ron Phibun": {"country": "Thailand", "subcountry": "Nakhon Si Thammarat"}, "Ratchaburi": {"country": "Thailand", "subcountry": "Ratchaburi"}, "Ranong": {"country": "Thailand", "subcountry": "Ranong"}, "Pran Buri": {"country": "Thailand", "subcountry": "Prachuap Khiri Khan"}, "Prachuap Khiri Khan": {"country": "Thailand", "subcountry": "Prachuap Khiri Khan"}, "Phunphin": {"country": "Thailand", "subcountry": "Surat Thani"}, "Phuket": {"country": "Thailand", "subcountry": "Phuket"}, "Photharam": {"country": "Thailand", "subcountry": "Ratchaburi"}, "Phayao": {"country": "Thailand", "subcountry": "Phayao"}, "Pa Sang": {"country": "Thailand", "subcountry": "Lamphun"}, "Nakhon Si Thammarat": {"country": "Thailand", "subcountry": "Nakhon Si Thammarat"}, "Mae Sot": {"country": "Thailand", "subcountry": "Tak"}, "Mae Sai": {"country": "Thailand", "subcountry": "Chiang Rai"}, "Mae Ramat": {"country": "Thailand", "subcountry": "Tak"}, "Mae Chan": {"country": "Thailand", "subcountry": "Chiang Rai"}, "Lat Yao": {"country": "Thailand", "subcountry": "Nakhon Sawan"}, "Lang Suan": {"country": "Thailand", "subcountry": "Chumphon"}, "Lamphun": {"country": "Thailand", "subcountry": "Lamphun"}, "Lampang": {"country": "Thailand", "subcountry": "Lampang"}, "Kui Buri": {"country": "Thailand", "subcountry": "Prachuap Khiri Khan"}, "Krabi": {"country": "Thailand", "subcountry": "Krabi"}, "Khao Yoi": {"country": "Thailand", "subcountry": "Phetchaburi"}, "Khanu Woralaksaburi": {"country": "Thailand", "subcountry": "Kamphaeng Phet"}, "Kathu": {"country": "Thailand", "subcountry": "Phuket"}, "Kanchanaburi": {"country": "Thailand", "subcountry": "Kanchanaburi"}, "Kamphaeng Phet": {"country": "Thailand", "subcountry": "Kamphaeng Phet"}, "Huai Yot": {"country": "Thailand", "subcountry": "Trang"}, "Hua Hin": {"country": "Thailand", "subcountry": "Prachuap Khiri Khan"}, "Hang Dong": {"country": "Thailand", "subcountry": "Chiang Mai"}, "Dok Kham Tai": {"country": "Thailand", "subcountry": "Phayao"}, "Damnoen Saduak": {"country": "Thailand", "subcountry": "Ratchaburi"}, "Chumphon": {"country": "Thailand", "subcountry": "Chumphon"}, "Chom Bueng": {"country": "Thailand", "subcountry": "Ratchaburi"}, "Chiang Rai": {"country": "Thailand", "subcountry": "Chiang Rai"}, "Chiang Mai": {"country": "Thailand", "subcountry": "Chiang Mai"}, "Cha-Am": {"country": "Thailand", "subcountry": "Phetchaburi"}, "Bo Phloi": {"country": "Thailand", "subcountry": "Kanchanaburi"}, "Ban Tak": {"country": "Thailand", "subcountry": "Tak"}, "Ko Samui": {"country": "Thailand", "subcountry": "Surat Thani"}, "Ban Pong": {"country": "Thailand", "subcountry": "Ratchaburi"}, "Ban Na San": {"country": "Thailand", "subcountry": "Surat Thani"}, "Ban Na": {"country": "Thailand", "subcountry": "Sukhothai"}, "Bang Saphan": {"country": "Thailand", "subcountry": "Prachuap Khiri Khan"}, "Bang Phae": {"country": "Thailand", "subcountry": "Ratchaburi"}, "Nong Kung Si": {"country": "Thailand", "subcountry": "Kalasin"}, "Ban Nong Wua So": {"country": "Thailand", "subcountry": "Changwat Udon Thani"}, "Ban Mai": {"country": "Thailand", "subcountry": "Songkhla"}, "Ban Huai Thalaeng": {"country": "Thailand", "subcountry": "Nakhon Ratchasima"}, "Ban Khlong Bang Sao Thong": {"country": "Thailand", "subcountry": "Samut Prakan"}, "Na Klang": {"country": "Thailand", "subcountry": "Changwat Nong Bua Lamphu"}, "Yasothon": {"country": "Thailand", "subcountry": "Yasothon"}, "Yaring": {"country": "Thailand", "subcountry": "Pattani"}, "Yala": {"country": "Thailand", "subcountry": "Yala"}, "Wiset Chaichan": {"country": "Thailand", "subcountry": "Ang Thong"}, "Wichian Buri": {"country": "Thailand", "subcountry": "Phetchabun"}, "Warin Chamrap": {"country": "Thailand", "subcountry": "Changwat Ubon Ratchathani"}, "Wang Saphung": {"country": "Thailand", "subcountry": "Loei"}, "Wang Noi": {"country": "Thailand", "subcountry": "Phra Nakhon Si Ayutthaya"}, "Wang Nam Yen": {"country": "Thailand", "subcountry": "Sa Kaeo"}, "Uttaradit": {"country": "Thailand", "subcountry": "Uttaradit"}, "Uthai Thani": {"country": "Thailand", "subcountry": "Uthai Thani"}, "Udon Thani": {"country": "Thailand", "subcountry": "Changwat Udon Thani"}, "Ubon Ratchathani": {"country": "Thailand", "subcountry": "Changwat Ubon Ratchathani"}, "Trat": {"country": "Thailand", "subcountry": "Trat"}, "Tha Yang": {"country": "Thailand", "subcountry": "Phetchaburi"}, "Tha Ruea": {"country": "Thailand", "subcountry": "Phra Nakhon Si Ayutthaya"}, "Thap Khlo": {"country": "Thailand", "subcountry": "Phichit"}, "Tha Mai": {"country": "Thailand", "subcountry": "Chanthaburi"}, "Tha Bo": {"country": "Thailand", "subcountry": "Nong Khai"}, "Taphan Hin": {"country": "Thailand", "subcountry": "Phichit"}, "Tak Bai": {"country": "Thailand", "subcountry": "Narathiwat"}, "Surin": {"country": "Thailand", "subcountry": "Surin"}, "Suphan Buri": {"country": "Thailand", "subcountry": "Suphan Buri"}, "Su-Ngai Kolok": {"country": "Thailand", "subcountry": "Narathiwat"}, "Songkhla": {"country": "Thailand", "subcountry": "Songkhla"}, "Si Sa Ket": {"country": "Thailand", "subcountry": "Sisaket"}, "Si Racha": {"country": "Thailand", "subcountry": "Chon Buri"}, "Sing Buri": {"country": "Thailand", "subcountry": "Sing Buri"}, "Seka": {"country": "Thailand", "subcountry": "Changwat Bueng Kan"}, "Sawang Daen Din": {"country": "Thailand", "subcountry": "Sakon Nakhon"}, "Satun": {"country": "Thailand", "subcountry": "Satun"}, "Sattahip": {"country": "Thailand", "subcountry": "Chon Buri"}, "Saraburi": {"country": "Thailand", "subcountry": "Sara Buri"}, "Samut Songkhram": {"country": "Thailand", "subcountry": "Samut Songkhram"}, "Samut Sakhon": {"country": "Thailand", "subcountry": "Samut Sakhon"}, "Samut Prakan": {"country": "Thailand", "subcountry": "Samut Prakan"}, "Sam Phran": {"country": "Thailand", "subcountry": "Nakhon Pathom"}, "Sakon Nakhon": {"country": "Thailand", "subcountry": "Sakon Nakhon"}, "Sa Kaeo": {"country": "Thailand", "subcountry": "Sa Kaeo"}, "Sadao": {"country": "Thailand", "subcountry": "Songkhla"}, "Roi Et": {"country": "Thailand", "subcountry": "Roi Et"}, "Rayong": {"country": "Thailand", "subcountry": "Rayong"}, "Ranot": {"country": "Thailand", "subcountry": "Songkhla"}, "Ra-Ngae": {"country": "Thailand", "subcountry": "Narathiwat"}, "Prakhon Chai": {"country": "Thailand", "subcountry": "Buriram"}, "Prachin Buri": {"country": "Thailand", "subcountry": "Prachin Buri"}, "Phu Kradueng": {"country": "Thailand", "subcountry": "Loei"}, "Phu Khiao": {"country": "Thailand", "subcountry": "Chaiyaphum"}, "Phra Pradaeng": {"country": "Thailand", "subcountry": "Samut Prakan"}, "Phra Phutthabat": {"country": "Thailand", "subcountry": "Sara Buri"}, "Phra Nakhon Si Ayutthaya": {"country": "Thailand", "subcountry": "Phra Nakhon Si Ayutthaya"}, "Phrae": {"country": "Thailand", "subcountry": "Phrae"}, "Phon Charoen": {"country": "Thailand", "subcountry": "Nong Khai"}, "Phitsanulok": {"country": "Thailand", "subcountry": "Phitsanulok"}, "Phichit": {"country": "Thailand", "subcountry": "Phichit"}, "Phibun Mangsahan": {"country": "Thailand", "subcountry": "Changwat Ubon Ratchathani"}, "Phetchabun": {"country": "Thailand", "subcountry": "Phetchabun"}, "Phatthalung": {"country": "Thailand", "subcountry": "Phatthalung"}, "Phan Thong": {"country": "Thailand", "subcountry": "Chon Buri"}, "Phanom Sarakham": {"country": "Thailand", "subcountry": "Chachoengsao"}, "Phanat Nikhom": {"country": "Thailand", "subcountry": "Chon Buri"}, "Phak Hai": {"country": "Thailand", "subcountry": "Phra Nakhon Si Ayutthaya"}, "Pattani": {"country": "Thailand", "subcountry": "Pattani"}, "Pathum Thani": {"country": "Thailand", "subcountry": "Pathum Thani"}, "Pak Phanang": {"country": "Thailand", "subcountry": "Nakhon Si Thammarat"}, "Pak Kret": {"country": "Thailand", "subcountry": "Nonthaburi"}, "Pak Chong": {"country": "Thailand", "subcountry": "Nakhon Ratchasima"}, "Mueang Nonthaburi": {"country": "Thailand", "subcountry": "Nonthaburi"}, "Non Sung": {"country": "Thailand", "subcountry": "Nakhon Ratchasima"}, "Nong Phai": {"country": "Thailand", "subcountry": "Phetchabun"}, "Nong Khai": {"country": "Thailand", "subcountry": "Nong Khai"}, "Nong Khae": {"country": "Thailand", "subcountry": "Sara Buri"}, "Nong Bua Lamphu": {"country": "Thailand", "subcountry": "Changwat Nong Bua Lamphu"}, "Narathiwat": {"country": "Thailand", "subcountry": "Narathiwat"}, "Nang Rong": {"country": "Thailand", "subcountry": "Buriram"}, "Nan": {"country": "Thailand", "subcountry": "Nan"}, "Nam Som": {"country": "Thailand", "subcountry": "Changwat Udon Thani"}, "Nakhon Sawan": {"country": "Thailand", "subcountry": "Nakhon Sawan"}, "Nakhon Ratchasima": {"country": "Thailand", "subcountry": "Nakhon Ratchasima"}, "Nakhon Phanom": {"country": "Thailand", "subcountry": "Nakhon Phanom"}, "Nakhon Pathom": {"country": "Thailand", "subcountry": "Nakhon Pathom"}, "Nakhon Nayok": {"country": "Thailand", "subcountry": "Nakhon Nayok"}, "Nakhon Luang": {"country": "Thailand", "subcountry": "Phra Nakhon Si Ayutthaya"}, "Mukdahan": {"country": "Thailand", "subcountry": "Mukdahan"}, "Maha Sarakham": {"country": "Thailand", "subcountry": "Maha Sarakham"}, "Lop Buri": {"country": "Thailand", "subcountry": "Lop Buri"}, "Lom Sak": {"country": "Thailand", "subcountry": "Phetchabun"}, "Loei": {"country": "Thailand", "subcountry": "Loei"}, "Laem Sing": {"country": "Thailand", "subcountry": "Chanthaburi"}, "Kut Chap": {"country": "Thailand", "subcountry": "Changwat Udon Thani"}, "Kuchinarai": {"country": "Thailand", "subcountry": "Kalasin"}, "Bangkok": {"country": "Thailand", "subcountry": "Bangkok"}, "Krathum Baen": {"country": "Thailand", "subcountry": "Samut Sakhon"}, "Klaeng": {"country": "Thailand", "subcountry": "Rayong"}, "Khon Kaen": {"country": "Thailand", "subcountry": "Khon Kaen"}, "Khon Buri": {"country": "Thailand", "subcountry": "Nakhon Ratchasima"}, "Khlong Luang": {"country": "Thailand", "subcountry": "Pathum Thani"}, "Khao Wong": {"country": "Thailand", "subcountry": "Kalasin"}, "Kaset Wisai": {"country": "Thailand", "subcountry": "Roi Et"}, "Kaset Sombun": {"country": "Thailand", "subcountry": "Chaiyaphum"}, "Kantharalak": {"country": "Thailand", "subcountry": "Sisaket"}, "Kamalasai": {"country": "Thailand", "subcountry": "Kalasin"}, "Kalasin": {"country": "Thailand", "subcountry": "Kalasin"}, "Kaeng Khoi": {"country": "Thailand", "subcountry": "Sara Buri"}, "Kaeng Khro": {"country": "Thailand", "subcountry": "Chaiyaphum"}, "Kabin Buri": {"country": "Thailand", "subcountry": "Prachin Buri"}, "Hat Yai": {"country": "Thailand", "subcountry": "Songkhla"}, "Det Udom": {"country": "Thailand", "subcountry": "Changwat Ubon Ratchathani"}, "Den Chai": {"country": "Thailand", "subcountry": "Phrae"}, "Dan Khun Thot": {"country": "Thailand", "subcountry": "Nakhon Ratchasima"}, "Chum Phae": {"country": "Thailand", "subcountry": "Khon Kaen"}, "Chon Daen": {"country": "Thailand", "subcountry": "Phetchabun"}, "Chon Buri": {"country": "Thailand", "subcountry": "Chon Buri"}, "Chok Chai": {"country": "Thailand", "subcountry": "Nakhon Ratchasima"}, "Chanthaburi": {"country": "Thailand", "subcountry": "Chanthaburi"}, "Chaiyaphum": {"country": "Thailand", "subcountry": "Chaiyaphum"}, "Chai Nat": {"country": "Thailand", "subcountry": "Chai Nat"}, "Chai Badan": {"country": "Thailand", "subcountry": "Lop Buri"}, "Chachoengsao": {"country": "Thailand", "subcountry": "Chachoengsao"}, "Buriram": {"country": "Thailand", "subcountry": "Buriram"}, "Bua Yai": {"country": "Thailand", "subcountry": "Nakhon Ratchasima"}, "Betong": {"country": "Thailand", "subcountry": "Yala"}, "Ban Selaphum": {"country": "Thailand", "subcountry": "Roi Et"}, "Ban Rangsit": {"country": "Thailand", "subcountry": "Pathum Thani"}, "Phatthaya": {"country": "Thailand", "subcountry": "Chon Buri"}, "Ban Phan Don": {"country": "Thailand", "subcountry": "Changwat Udon Thani"}, "Ban Phai": {"country": "Thailand", "subcountry": "Khon Kaen"}, "Ban Phaeo": {"country": "Thailand", "subcountry": "Samut Sakhon"}, "Ban Mo": {"country": "Thailand", "subcountry": "Sara Buri"}, "Ban Lam Luk Ka": {"country": "Thailand", "subcountry": "Pathum Thani"}, "Bang Rakam": {"country": "Thailand", "subcountry": "Phitsanulok"}, "Bang Racham": {"country": "Thailand", "subcountry": "Sing Buri"}, "Bang Pakong": {"country": "Thailand", "subcountry": "Chachoengsao"}, "Bang Pa-In": {"country": "Thailand", "subcountry": "Phra Nakhon Si Ayutthaya"}, "Bang Mun Nak": {"country": "Thailand", "subcountry": "Phichit"}, "Bang Len": {"country": "Thailand", "subcountry": "Nakhon Pathom"}, "Bang Lamung": {"country": "Thailand", "subcountry": "Chon Buri"}, "Bang Kruai": {"country": "Thailand", "subcountry": "Nonthaburi"}, "Bang Krathum": {"country": "Thailand", "subcountry": "Phitsanulok"}, "Bang Bua Thong": {"country": "Thailand", "subcountry": "Nonthaburi"}, "Bang Ban": {"country": "Thailand", "subcountry": "Phra Nakhon Si Ayutthaya"}, "Ban Dung": {"country": "Thailand", "subcountry": "Changwat Udon Thani"}, "Ban Chang": {"country": "Thailand", "subcountry": "Rayong"}, "Ban Bueng": {"country": "Thailand", "subcountry": "Chon Buri"}, "Ban Talat Bueng": {"country": "Thailand", "subcountry": "Chon Buri"}, "Ban Bang Kadi Pathum Thani": {"country": "Thailand", "subcountry": "Phra Nakhon Si Ayutthaya"}, "Bang Bo District": {"country": "Thailand", "subcountry": "Samut Prakan"}, "Aranyaprathet": {"country": "Thailand", "subcountry": "Sa Kaeo"}, "Amnat Charoen": {"country": "Thailand", "subcountry": "Amnat Charoen"}, "Amphoe Sikhiu": {"country": "Thailand", "subcountry": "Nakhon Ratchasima"}, "Wichit": {"country": "Thailand", "subcountry": "Phuket"}, "Ban Chalong": {"country": "Thailand", "subcountry": "Phuket"}, "Ban Ratsada": {"country": "Thailand", "subcountry": "Phuket"}, "Yovon": {"country": "Tajikistan", "subcountry": "Khatlon"}, "Vose\u2019": {"country": "Tajikistan", "subcountry": "Khatlon"}, "Vakhsh": {"country": "Tajikistan", "subcountry": "Khatlon"}, "Istaravshan": {"country": "Tajikistan", "subcountry": "Viloyati Sughd"}, "Tursunzoda": {"country": "Tajikistan", "subcountry": "Republican Subordination"}, "Q\u016drghonteppa": {"country": "Tajikistan", "subcountry": "Khatlon"}, "Panjakent": {"country": "Tajikistan", "subcountry": "Viloyati Sughd"}, "Farkhor": {"country": "Tajikistan", "subcountry": "Khatlon"}, "Vahdat": {"country": "Tajikistan", "subcountry": "Republican Subordination"}, "Norak": {"country": "Tajikistan", "subcountry": "Khatlon"}, "K\u016dlob": {"country": "Tajikistan", "subcountry": "Khatlon"}, "Kolkhozobod": {"country": "Tajikistan", "subcountry": "Khatlon"}, "Khorugh": {"country": "Tajikistan", "subcountry": "Gorno-Badakhshan"}, "Ishqoshim": {"country": "Tajikistan", "subcountry": "Gorno-Badakhshan"}, "Hisor": {"country": "Tajikistan", "subcountry": "Republican Subordination"}, "Dushanbe": {"country": "Tajikistan", "subcountry": "Dushanbe"}, "Danghara": {"country": "Tajikistan", "subcountry": "Khatlon"}, "Chubek": {"country": "Tajikistan", "subcountry": "Khatlon"}, "Boshkengash": {"country": "Tajikistan", "subcountry": "Dushanbe"}, "Proletar": {"country": "Tajikistan", "subcountry": "Viloyati Sughd"}, "Kh\u016djand": {"country": "Tajikistan", "subcountry": "Viloyati Sughd"}, "Konibodom": {"country": "Tajikistan", "subcountry": "Viloyati Sughd"}, "Isfara": {"country": "Tajikistan", "subcountry": "Viloyati Sughd"}, "Chkalov": {"country": "Tajikistan", "subcountry": "Viloyati Sughd"}, "Suai": {"country": "East Timor", "subcountry": "Cova Lima"}, "Maubara": {"country": "East Timor", "subcountry": "Liqui\u00e7\u00e1"}, "Maliana": {"country": "East Timor", "subcountry": "Bobonaro"}, "Liquica": {"country": "East Timor", "subcountry": "Liqui\u00e7\u00e1"}, "Dili": {"country": "East Timor", "subcountry": "D\u00edli"}, "Baucau": {"country": "East Timor", "subcountry": "Baucau"}, "Aileu": {"country": "East Timor", "subcountry": "Aileu"}, "Same": {"country": "Tanzania", "subcountry": "Kilimanjaro"}, "Lospalos": {"country": "East Timor", "subcountry": "Laut\u00e9m"}, "Venilale": {"country": "East Timor", "subcountry": "Baucau"}, "Balkanabat": {"country": "Turkmenistan", "subcountry": "Balkan"}, "Kaka": {"country": "Turkmenistan", "subcountry": "Ahal"}, "Gumdag": {"country": "Turkmenistan", "subcountry": "Balkan"}, "Gazanjyk": {"country": "Turkmenistan", "subcountry": "Balkan"}, "Baharly": {"country": "Turkmenistan", "subcountry": "Ahal"}, "Ashgabat": {"country": "Turkmenistan", "subcountry": "Ahal"}, "Annau": {"country": "Turkmenistan", "subcountry": "Ahal"}, "Yylanly": {"country": "Turkmenistan", "subcountry": "Da\u015foguz"}, "Tagta": {"country": "Turkmenistan", "subcountry": "Da\u015foguz"}, "T\u00fcrkmenba\u015fy": {"country": "Turkmenistan", "subcountry": "Balkan"}, "K\u00f6ne\u00fcrgench": {"country": "Turkmenistan", "subcountry": "Da\u015foguz"}, "Boldumsaz": {"country": "Turkmenistan", "subcountry": "Da\u015foguz"}, "Da\u015foguz": {"country": "Turkmenistan", "subcountry": "Da\u015foguz"}, "Yol\u00f6ten": {"country": "Turkmenistan", "subcountry": "Mary"}, "Tejen": {"country": "Turkmenistan", "subcountry": "Ahal"}, "Seydi": {"country": "Turkmenistan", "subcountry": "Mary"}, "Sa\u00fdat": {"country": "Turkmenistan", "subcountry": "Lebap"}, "Mary": {"country": "Turkmenistan", "subcountry": "Mary"}, "Atamyrat": {"country": "Turkmenistan", "subcountry": "Lebap"}, "Gowurdak": {"country": "Turkmenistan", "subcountry": "Lebap"}, "T\u00fcrkmenabat": {"country": "Turkmenistan", "subcountry": "Lebap"}, "Bayramaly": {"country": "Turkmenistan", "subcountry": "Mary"}, "Gazojak": {"country": "Turkmenistan", "subcountry": "Lebap"}, "Zaghouan": {"country": "Tunisia", "subcountry": "Zaghw\u0101n"}, "Oued Lill": {"country": "Tunisia", "subcountry": "T\u016bnis"}, "Tunis": {"country": "Tunisia", "subcountry": "T\u016bnis"}, "Tozeur": {"country": "Tunisia", "subcountry": "Tawzar"}, "Tataouine": {"country": "Tunisia", "subcountry": "Tataouine"}, "Thala": {"country": "Tunisia", "subcountry": "Al Qa\u015frayn"}, "Takelsa": {"country": "Tunisia", "subcountry": "N\u0101bul"}, "Tajerouine": {"country": "Tunisia", "subcountry": "Kef"}, "Sousse": {"country": "Tunisia", "subcountry": "S\u016bsah"}, "Siliana": {"country": "Tunisia", "subcountry": "Sily\u0101nah"}, "Sidi Bouzid": {"country": "Tunisia", "subcountry": "S\u012bd\u012b B\u016b Zayd"}, "Skanes": {"country": "Tunisia", "subcountry": "Al Munast\u012br"}, "Sfax": {"country": "Tunisia", "subcountry": "\u015eaf\u0101qis"}, "La Sebala Du Mornag": {"country": "Tunisia", "subcountry": "T\u016bnis"}, "Rad\u00e8s": {"country": "Tunisia", "subcountry": "T\u016bnis"}, "Ksour Essaf": {"country": "Tunisia", "subcountry": "Al Mahd\u012byah"}, "K\u00e9libia": {"country": "Tunisia", "subcountry": "N\u0101bul"}, "Kebili": {"country": "Tunisia", "subcountry": "Qibil\u012b"}, "Ksar Hellal": {"country": "Tunisia", "subcountry": "Al Munast\u012br"}, "Carthage": {"country": "Tunisia", "subcountry": "T\u016bnis"}, "El Fahs": {"country": "Tunisia", "subcountry": "Zaghw\u0101n"}, "Galaat El Andeless": {"country": "Tunisia", "subcountry": "Ariana"}, "Gafsa": {"country": "Tunisia", "subcountry": "Gafsa"}, "Gab\u00e8s": {"country": "Tunisia", "subcountry": "Q\u0101bis"}, "Nefta": {"country": "Tunisia", "subcountry": "Tawzar"}, "Nabeul": {"country": "Tunisia", "subcountry": "N\u0101bul"}, "Midoun": {"country": "Tunisia", "subcountry": "Madan\u012bn"}, "Mateur": {"country": "Tunisia", "subcountry": "Banzart"}, "Msaken": {"country": "Tunisia", "subcountry": "S\u016bsah"}, "Menzel Jemil": {"country": "Tunisia", "subcountry": "Banzart"}, "Mennzel Bou Zelfa": {"country": "Tunisia", "subcountry": "N\u0101bul"}, "Menzel Bourguiba": {"country": "Tunisia", "subcountry": "Banzart"}, "Menzel Abderhaman": {"country": "Tunisia", "subcountry": "Banzart"}, "Manouba": {"country": "Tunisia", "subcountry": "Manouba"}, "Medjez El Bab": {"country": "Tunisia", "subcountry": "B\u0101jah"}, "Medenine": {"country": "Tunisia", "subcountry": "Madan\u012bn"}, "Jendouba": {"country": "Tunisia", "subcountry": "Jund\u016bbah"}, "Zarzis": {"country": "Tunisia", "subcountry": "Madan\u012bn"}, "Djemmal": {"country": "Tunisia", "subcountry": "Al Munast\u012br"}, "Houmt Souk": {"country": "Tunisia", "subcountry": "Madan\u012bn"}, "Hammam Sousse": {"country": "Tunisia", "subcountry": "S\u016bsah"}, "Hammam-Lif": {"country": "Tunisia", "subcountry": "T\u016bnis"}, "La Goulette": {"country": "Tunisia", "subcountry": "T\u016bnis"}, "Douz": {"country": "Tunisia", "subcountry": "Qibil\u012b"}, "Douar Tindja": {"country": "Tunisia", "subcountry": "Banzart"}, "Dar Chabanne": {"country": "Tunisia", "subcountry": "N\u0101bul"}, "Ben Arous": {"country": "Tunisia", "subcountry": "Bin \u2018Ar\u016bs"}, "Bizerte": {"country": "Tunisia", "subcountry": "Banzart"}, "Beni Khiar": {"country": "Tunisia", "subcountry": "N\u0101bul"}, "B\u00e9ja": {"country": "Tunisia", "subcountry": "B\u0101jah"}, "Zouila": {"country": "Tunisia", "subcountry": "Al Mahd\u012byah"}, "Chebba": {"country": "Tunisia", "subcountry": "Al Mahd\u012byah"}, "Ariana": {"country": "Tunisia", "subcountry": "Ariana"}, "Ar Rudayyif": {"country": "Tunisia", "subcountry": "Gafsa"}, "Ouardenine": {"country": "Tunisia", "subcountry": "Al Munast\u012br"}, "Kairouan": {"country": "Tunisia", "subcountry": "Al Qayraw\u0101n"}, "Kasserine": {"country": "Tunisia", "subcountry": "Al Qa\u015frayn"}, "Gremda": {"country": "Tunisia", "subcountry": "\u015eaf\u0101qis"}, "Monastir": {"country": "Tunisia", "subcountry": "Al Munast\u012br"}, "La Mohammedia": {"country": "Tunisia", "subcountry": "T\u016bnis"}, "Metlaoui": {"country": "Tunisia", "subcountry": "Gafsa"}, "Al Mars\u00e1": {"country": "Tunisia", "subcountry": "T\u016bnis"}, "Mahdia": {"country": "Tunisia", "subcountry": "Al Mahd\u012byah"}, "El Kef": {"country": "Tunisia", "subcountry": "Kef"}, "El Jem": {"country": "Tunisia", "subcountry": "Al Mahd\u012byah"}, "El Hamma": {"country": "Tunisia", "subcountry": "Q\u0101bis"}, "Bekalta": {"country": "Tunisia", "subcountry": "Al Munast\u012br"}, "El Alia": {"country": "Tunisia", "subcountry": "Banzart"}, "Akouda": {"country": "Tunisia", "subcountry": "S\u016bsah"}, "Douane": {"country": "Tunisia", "subcountry": "N\u0101bul"}, "Nuku\u2018Alofa": {"country": "Tonga", "subcountry": "Tongatapu"}, "Y\u00fcksekova": {"country": "Turkey", "subcountry": "Hakk\u00e2ri"}, "Yozgat": {"country": "Turkey", "subcountry": "Yozgat"}, "Ye\u015filli": {"country": "Turkey", "subcountry": "Mardin"}, "Erzin": {"country": "Turkey", "subcountry": "Hatay"}, "Yerk\u00f6y": {"country": "Turkey", "subcountry": "Yozgat"}, "Didim": {"country": "Turkey", "subcountry": "Ayd\u0131n"}, "Yata\u011fan": {"country": "Turkey", "subcountry": "Mu\u011fla"}, "Yalva\u00e7": {"country": "Turkey", "subcountry": "Isparta"}, "Yahyal\u0131": {"country": "Turkey", "subcountry": "Kayseri"}, "Viran\u015fehir": {"country": "Turkey", "subcountry": "\u015eanl\u0131urfa"}, "Varto": {"country": "Turkey", "subcountry": "Mu\u015f"}, "Van": {"country": "Turkey", "subcountry": "Van"}, "Cimin": {"country": "Turkey", "subcountry": "Erzincan"}, "U\u015fak": {"country": "Turkey", "subcountry": "U\u015fak"}, "Urla": {"country": "Turkey", "subcountry": "\u0130zmir"}, "\u00dcrg\u00fcp": {"country": "Turkey", "subcountry": "Nev\u015fehir"}, "\u015eanl\u0131urfa": {"country": "Turkey", "subcountry": "\u015eanl\u0131urfa"}, "Turgutlu": {"country": "Turkey", "subcountry": "Manisa"}, "Tunceli": {"country": "Turkey", "subcountry": "Tunceli"}, "Torbal\u0131": {"country": "Turkey", "subcountry": "\u0130zmir"}, "Tire": {"country": "Turkey", "subcountry": "\u0130zmir"}, "Tekirova": {"country": "Turkey", "subcountry": "Antalya"}, "Tav\u015fanl\u0131": {"country": "Turkey", "subcountry": "K\u00fctahya"}, "Tatvan": {"country": "Turkey", "subcountry": "Bitlis"}, "Tarsus": {"country": "Turkey", "subcountry": "Mersin"}, "Susurluk": {"country": "Turkey", "subcountry": "Bal\u0131kesir"}, "Suru\u00e7": {"country": "Turkey", "subcountry": "\u015eanl\u0131urfa"}, "Sorgun": {"country": "Turkey", "subcountry": "Yozgat"}, "Soma": {"country": "Turkey", "subcountry": "Manisa"}, "Solhan": {"country": "Turkey", "subcountry": "Bing\u00f6l"}, "S\u00f6ke": {"country": "Turkey", "subcountry": "Ayd\u0131n"}, "Siverek": {"country": "Turkey", "subcountry": "\u015eanl\u0131urfa"}, "Sivas": {"country": "Turkey", "subcountry": "Sivas"}, "\u015e\u0131rnak": {"country": "Turkey", "subcountry": "\u015e\u0131rnak"}, "Simav": {"country": "Turkey", "subcountry": "K\u00fctahya"}, "Silvan": {"country": "Turkey", "subcountry": "Diyarbak\u0131r"}, "Silopi": {"country": "Turkey", "subcountry": "\u015e\u0131rnak"}, "Silifke": {"country": "Turkey", "subcountry": "Mersin"}, "Siirt": {"country": "Turkey", "subcountry": "Siirt"}, "Seydi\u015fehir": {"country": "Turkey", "subcountry": "Konya"}, "Serinyol": {"country": "Turkey", "subcountry": "Hatay"}, "Serik": {"country": "Turkey", "subcountry": "Antalya"}, "\u015eerefliko\u00e7hisar": {"country": "Turkey", "subcountry": "Ankara"}, "Senirkent": {"country": "Turkey", "subcountry": "Isparta"}, "\u015eemdinli": {"country": "Turkey", "subcountry": "Hakk\u00e2ri"}, "Sel\u00e7uk": {"country": "Turkey", "subcountry": "\u0130zmir"}, "Seferhisar": {"country": "Turkey", "subcountry": "\u0130zmir"}, "\u015eark\u0131\u015fla": {"country": "Turkey", "subcountry": "Sivas"}, "\u015eark\u00eekaraa\u011fa\u00e7": {"country": "Turkey", "subcountry": "Isparta"}, "Sarayk\u00f6y": {"country": "Turkey", "subcountry": "Denizli"}, "Sand\u0131kl\u0131": {"country": "Turkey", "subcountry": "Afyonkarahisar"}, "Salihli": {"country": "Turkey", "subcountry": "Manisa"}, "Reyhanl\u0131": {"country": "Turkey", "subcountry": "Hatay"}, "Polatl\u0131": {"country": "Turkey", "subcountry": "Ankara"}, "Pazarc\u0131k": {"country": "Turkey", "subcountry": "Kahramanmara\u015f"}, "Patnos": {"country": "Turkey", "subcountry": "A\u011fr\u0131"}, "Pasinler": {"country": "Turkey", "subcountry": "Erzurum"}, "Osmaniye": {"country": "Turkey", "subcountry": "Osmaniye"}, "Ortak\u00f6y": {"country": "Turkey", "subcountry": "Aksaray"}, "Ortaca": {"country": "Turkey", "subcountry": "Mu\u011fla"}, "\u00d6demi\u015f": {"country": "Turkey", "subcountry": "\u0130zmir"}, "Nusaybin": {"country": "Turkey", "subcountry": "Mardin"}, "Nizip": {"country": "Turkey", "subcountry": "Gaziantep"}, "Ni\u011fde": {"country": "Turkey", "subcountry": "Ni\u011fde"}, "Nev\u015fehir": {"country": "Turkey", "subcountry": "Nev\u015fehir"}, "Nazilli": {"country": "Turkey", "subcountry": "Ayd\u0131n"}, "Mut": {"country": "Turkey", "subcountry": "Mersin"}, "Mu\u015f": {"country": "Turkey", "subcountry": "Mu\u015f"}, "Mu\u011fla": {"country": "Turkey", "subcountry": "Mu\u011fla"}, "Mucur": {"country": "Turkey", "subcountry": "K\u0131r\u015fehir"}, "Milas": {"country": "Turkey", "subcountry": "Mu\u011fla"}, "Midyat": {"country": "Turkey", "subcountry": "Mardin"}, "Mercin": {"country": "Turkey", "subcountry": "Mersin"}, "Menemen": {"country": "Turkey", "subcountry": "\u0130zmir"}, "Marmaris": {"country": "Turkey", "subcountry": "Mu\u011fla"}, "Mardin": {"country": "Turkey", "subcountry": "Mardin"}, "Manisa": {"country": "Turkey", "subcountry": "Manisa"}, "Manavgat": {"country": "Turkey", "subcountry": "Antalya"}, "Malazgirt": {"country": "Turkey", "subcountry": "Mu\u015f"}, "Malatya": {"country": "Turkey", "subcountry": "Malatya"}, "Mahmutlar": {"country": "Turkey", "subcountry": "Antalya"}, "Lice": {"country": "Turkey", "subcountry": "Diyarbak\u0131r"}, "K\u00fctahya": {"country": "Turkey", "subcountry": "K\u00fctahya"}, "Ku\u015fadas\u0131": {"country": "Turkey", "subcountry": "Ayd\u0131n"}, "Kurtalan": {"country": "Turkey", "subcountry": "Siirt"}, "Beykonak": {"country": "Turkey", "subcountry": "Antalya"}, "Kulp": {"country": "Turkey", "subcountry": "Diyarbak\u0131r"}, "Kula": {"country": "Turkey", "subcountry": "Manisa"}, "Kozluk": {"country": "Turkey", "subcountry": "Batman"}, "Kozan": {"country": "Turkey", "subcountry": "Adana"}, "Kovanc\u0131lar": {"country": "Turkey", "subcountry": "Elaz\u0131\u011f"}, "Korkuteli": {"country": "Turkey", "subcountry": "Antalya"}, "Konya": {"country": "Turkey", "subcountry": "Konya"}, "K\u0131z\u0131ltepe": {"country": "Turkey", "subcountry": "Mardin"}, "Serinhisar": {"country": "Turkey", "subcountry": "Denizli"}, "K\u0131r\u015fehir": {"country": "Turkey", "subcountry": "K\u0131r\u015fehir"}, "K\u0131rka\u011fa\u00e7": {"country": "Turkey", "subcountry": "Manisa"}, "K\u0131r\u0131kkale": {"country": "Turkey", "subcountry": "K\u0131r\u0131kkale"}, "K\u0131r\u0131khan": {"country": "Turkey", "subcountry": "Hatay"}, "Kilis": {"country": "Turkey", "subcountry": "Kilis"}, "Keskin": {"country": "Turkey", "subcountry": "K\u0131r\u0131kkale"}, "Kemer": {"country": "Turkey", "subcountry": "Antalya"}, "Kemalpa\u015fa": {"country": "Turkey", "subcountry": "\u0130zmir"}, "Kayseri": {"country": "Turkey", "subcountry": "Kayseri"}, "Karap\u0131nar": {"country": "Turkey", "subcountry": "Konya"}, "Karaman": {"country": "Turkey", "subcountry": "Karaman"}, "A\u011fr\u0131": {"country": "Turkey", "subcountry": "A\u011fr\u0131"}, "Karako\u00e7an": {"country": "Turkey", "subcountry": "Elaz\u0131\u011f"}, "Kara\u00e7oban": {"country": "Turkey", "subcountry": "Erzurum"}, "Kaman": {"country": "Turkey", "subcountry": "K\u0131r\u015fehir"}, "K\u00e2hta": {"country": "Turkey", "subcountry": "Ad\u0131yaman"}, "Kahramanmara\u015f": {"country": "Turkey", "subcountry": "Kahramanmara\u015f"}, "Kadirli": {"country": "Turkey", "subcountry": "Adana"}, "Kad\u0131nhan\u0131": {"country": "Turkey", "subcountry": "Konya"}, "\u0130zmir": {"country": "Turkey", "subcountry": "\u0130zmir"}, "Isparta": {"country": "Turkey", "subcountry": "I\u011fd\u0131r"}, "\u0130dil": {"country": "Turkey", "subcountry": "\u015e\u0131rnak"}, "Hizan": {"country": "Turkey", "subcountry": "Bitlis"}, "H\u0131n\u0131s": {"country": "Turkey", "subcountry": "Erzurum"}, "Hilvan": {"country": "Turkey", "subcountry": "\u015eanl\u0131urfa"}, "Hadim": {"country": "Turkey", "subcountry": "Konya"}, "Hac\u0131lar": {"country": "Turkey", "subcountry": "Kayseri"}, "G\u00fcroymak": {"country": "Turkey", "subcountry": "Bitlis"}, "G\u00f6lba\u015f\u0131": {"country": "Turkey", "subcountry": "Ad\u0131yaman"}, "G\u00f6ksun": {"country": "Turkey", "subcountry": "Kahramanmara\u015f"}, "Gen\u00e7": {"country": "Turkey", "subcountry": "Bing\u00f6l"}, "Gemerek": {"country": "Turkey", "subcountry": "Sivas"}, "Gediz": {"country": "Turkey", "subcountry": "K\u00fctahya"}, "Gazipa\u015fa": {"country": "Turkey", "subcountry": "Antalya"}, "Gaziantep": {"country": "Turkey", "subcountry": "Gaziantep"}, "Fo\u00e7a": {"country": "Turkey", "subcountry": "\u0130zmir"}, "Fethiye": {"country": "Turkey", "subcountry": "Mu\u011fla"}, "Ezine": {"country": "Turkey", "subcountry": "\u00c7anakkale Province"}, "Eski\u015fehir": {"country": "Turkey", "subcountry": "Eski\u015fehir"}, "Erzurum": {"country": "Turkey", "subcountry": "Erzurum"}, "Erzincan": {"country": "Turkey", "subcountry": "Erzincan"}, "Ermenek": {"country": "Turkey", "subcountry": "Karaman"}, "Ergani": {"country": "Turkey", "subcountry": "Diyarbak\u0131r"}, "Ere\u011fli": {"country": "Turkey", "subcountry": "Zonguldak"}, "Erdemli": {"country": "Turkey", "subcountry": "Mersin"}, "Erci\u015f": {"country": "Turkey", "subcountry": "Van"}, "Emirda\u011f": {"country": "Turkey", "subcountry": "Afyonkarahisar"}, "Emet": {"country": "Turkey", "subcountry": "K\u00fctahya"}, "Elmal\u0131": {"country": "Turkey", "subcountry": "Antalya"}, "Elmada\u011f": {"country": "Turkey", "subcountry": "Ankara"}, "Ele\u015fkirt": {"country": "Turkey", "subcountry": "A\u011fr\u0131"}, "Elbistan": {"country": "Turkey", "subcountry": "Kahramanmara\u015f"}, "Elaz\u0131\u011f": {"country": "Turkey", "subcountry": "Elaz\u0131\u011f"}, "E\u011firdir": {"country": "Turkey", "subcountry": "Isparta"}, "Edremit": {"country": "Turkey", "subcountry": "Bal\u0131kesir"}, "Dursunbey": {"country": "Turkey", "subcountry": "Bal\u0131kesir"}, "D\u00f6rtyol": {"country": "Turkey", "subcountry": "Hatay"}, "Do\u011fubayaz\u0131t": {"country": "Turkey", "subcountry": "A\u011fr\u0131"}, "Diyarbak\u0131r": {"country": "Turkey", "subcountry": "Diyarbak\u0131r"}, "Diyadin": {"country": "Turkey", "subcountry": "A\u011fr\u0131"}, "Dinar": {"country": "Turkey", "subcountry": "Afyonkarahisar"}, "Develi": {"country": "Turkey", "subcountry": "Kayseri"}, "Denizli": {"country": "Turkey", "subcountry": "Denizli"}, "Demirci": {"country": "Turkey", "subcountry": "Manisa"}, "Darge\u00e7it": {"country": "Turkey", "subcountry": "Mardin"}, "Darende": {"country": "Turkey", "subcountry": "Malatya"}, "\u00c7umra": {"country": "Turkey", "subcountry": "Konya"}, "Menderes": {"country": "Turkey", "subcountry": "\u0130zmir"}, "Hakkari": {"country": "Turkey", "subcountry": "Hakk\u00e2ri"}, "Cizre": {"country": "Turkey", "subcountry": "\u015e\u0131rnak"}, "\u00c7ine": {"country": "Turkey", "subcountry": "Ayd\u0131n"}, "Ceylanp\u0131nar": {"country": "Turkey", "subcountry": "\u015eanl\u0131urfa"}, "Ceyhan": {"country": "Turkey", "subcountry": "Adana"}, "\u00c7e\u015fme": {"country": "Turkey", "subcountry": "\u0130zmir"}, "\u00c7ermik": {"country": "Turkey", "subcountry": "Diyarbak\u0131r"}, "\u00c7ay": {"country": "Turkey", "subcountry": "Afyonkarahisar"}, "\u00c7a\u011flayancerit": {"country": "Turkey", "subcountry": "Kahramanmara\u015f"}, "Burhaniye": {"country": "Turkey", "subcountry": "Bal\u0131kesir"}, "Burdur": {"country": "Turkey", "subcountry": "Burdur"}, "Bulan\u0131k": {"country": "Turkey", "subcountry": "Mu\u015f"}, "Bucak": {"country": "Turkey", "subcountry": "Burdur"}, "Bozyaz\u0131": {"country": "Turkey", "subcountry": "Mersin"}, "Boz\u00fcy\u00fck": {"country": "Turkey", "subcountry": "Bilecik"}, "Bozova": {"country": "Turkey", "subcountry": "\u015eanl\u0131urfa"}, "Bolvadin": {"country": "Turkey", "subcountry": "Afyonkarahisar"}, "Bodrum": {"country": "Turkey", "subcountry": "Mu\u011fla"}, "Bitlis": {"country": "Turkey", "subcountry": "Bitlis"}, "Bismil": {"country": "Turkey", "subcountry": "Diyarbak\u0131r"}, "Birecik": {"country": "Turkey", "subcountry": "\u015eanl\u0131urfa"}, "Bing\u00f6l": {"country": "Turkey", "subcountry": "Bing\u00f6l"}, "Bigadi\u00e7": {"country": "Turkey", "subcountry": "Bal\u0131kesir"}, "Bey\u015fehir": {"country": "Turkey", "subcountry": "Konya"}, "Besni": {"country": "Turkey", "subcountry": "Ad\u0131yaman"}, "Bergama": {"country": "Turkey", "subcountry": "\u0130zmir"}, "Belen": {"country": "Turkey", "subcountry": "Hatay"}, "Belek": {"country": "Turkey", "subcountry": "Antalya"}, "Bay\u0131nd\u0131r": {"country": "Turkey", "subcountry": "\u0130zmir"}, "Batman": {"country": "Turkey", "subcountry": "Batman"}, "Baskil": {"country": "Turkey", "subcountry": "Elaz\u0131\u011f"}, "Banaz": {"country": "Turkey", "subcountry": "U\u015fak"}, "Bal\u0131kesir": {"country": "Turkey", "subcountry": "Bal\u0131kesir"}, "Bah\u00e7e": {"country": "Turkey", "subcountry": "Adana"}, "Ayval\u0131k": {"country": "Turkey", "subcountry": "Bal\u0131kesir"}, "Ayd\u0131n": {"country": "Turkey", "subcountry": "Ayd\u0131n"}, "A\u015fkale": {"country": "Turkey", "subcountry": "Erzurum"}, "Antalya": {"country": "Turkey", "subcountry": "Antalya"}, "Antakya": {"country": "Turkey", "subcountry": "Hatay"}, "Ankara": {"country": "Turkey", "subcountry": "Ankara"}, "Anamur": {"country": "Turkey", "subcountry": "Mersin"}, "Alia\u011fa": {"country": "Turkey", "subcountry": "\u0130zmir"}, "Ala\u015fehir": {"country": "Turkey", "subcountry": "Manisa"}, "Alanya": {"country": "Turkey", "subcountry": "Antalya"}, "Ak\u015fehir": {"country": "Turkey", "subcountry": "Konya"}, "Aksaray": {"country": "Turkey", "subcountry": "Aksaray"}, "Akhisar": {"country": "Turkey", "subcountry": "Manisa"}, "Akda\u011fmadeni": {"country": "Turkey", "subcountry": "Yozgat"}, "Ak\u00e7akale": {"country": "Turkey", "subcountry": "\u015eanl\u0131urfa"}, "Ahlat": {"country": "Turkey", "subcountry": "Bitlis"}, "Afyonkarahisar": {"country": "Turkey", "subcountry": "Afyonkarahisar"}, "Af\u015fin": {"country": "Turkey", "subcountry": "Kahramanmara\u015f"}, "Ad\u0131yaman": {"country": "Turkey", "subcountry": "Ad\u0131yaman"}, "Adilcevaz": {"country": "Turkey", "subcountry": "Bitlis"}, "Adana": {"country": "Turkey", "subcountry": "Adana"}, "Denizciler": {"country": "Turkey", "subcountry": "Hatay"}, "Batikent": {"country": "Turkey", "subcountry": "Ankara"}, "Dalaman": {"country": "Turkey", "subcountry": "Mu\u011fla"}, "Zonguldak": {"country": "Turkey", "subcountry": "Zonguldak"}, "Zile": {"country": "Turkey", "subcountry": "Tokat"}, "Zeytinburnu": {"country": "Turkey", "subcountry": "Istanbul"}, "Yomra": {"country": "Turkey", "subcountry": "Trabzon"}, "Yeni\u015fehir": {"country": "Turkey", "subcountry": "Bursa"}, "K\u00f6rfez": {"country": "Turkey", "subcountry": "Kocaeli"}, "Yalova": {"country": "Turkey", "subcountry": "Yalova"}, "Yakuplu": {"country": "Turkey", "subcountry": "Istanbul"}, "Vezirk\u00f6pr\u00fc": {"country": "Turkey", "subcountry": "Samsun"}, "Vakf\u0131kebir": {"country": "Turkey", "subcountry": "Trabzon"}, "Uzunk\u00f6pr\u00fc": {"country": "Turkey", "subcountry": "Edirne"}, "\u00dcsk\u00fcdar": {"country": "Turkey", "subcountry": "Istanbul"}, "\u00dcnye": {"country": "Turkey", "subcountry": "Ordu"}, "Umraniye": {"country": "Turkey", "subcountry": "Istanbul"}, "Turhal": {"country": "Turkey", "subcountry": "Tokat"}, "Trabzon": {"country": "Turkey", "subcountry": "Trabzon"}, "Tosya": {"country": "Turkey", "subcountry": "Kastamonu"}, "Tokat": {"country": "Turkey", "subcountry": "Tokat"}, "Tirebolu": {"country": "Turkey", "subcountry": "Giresun"}, "Terme": {"country": "Turkey", "subcountry": "Samsun"}, "Tepecik": {"country": "Turkey", "subcountry": "Istanbul"}, "Tekkek\u00f6y": {"country": "Turkey", "subcountry": "Samsun"}, "Tekirda\u011f": {"country": "Turkey", "subcountry": "Tekirda\u011f"}, "Ta\u015fova": {"country": "Turkey", "subcountry": "Amasya"}, "Ta\u015fk\u00f6pr\u00fc": {"country": "Turkey", "subcountry": "Kastamonu"}, "Su\u015fehri": {"country": "Turkey", "subcountry": "Sivas"}, "S\u00fcrmene": {"country": "Turkey", "subcountry": "Trabzon"}, "Sungurlu": {"country": "Turkey", "subcountry": "\u00c7orum"}, "Suluova": {"country": "Turkey", "subcountry": "Amasya"}, "\u015ei\u015fli": {"country": "Turkey", "subcountry": "Istanbul"}, "Silivri": {"country": "Turkey", "subcountry": "Istanbul"}, "\u015eebin Karahisar": {"country": "Turkey", "subcountry": "Giresun"}, "Sar\u0131kam\u0131\u015f": {"country": "Turkey", "subcountry": "Kars"}, "Sapanca": {"country": "Turkey", "subcountry": "Sakarya"}, "Samsun": {"country": "Turkey", "subcountry": "Samsun"}, "Safranbolu": {"country": "Turkey", "subcountry": "Karab\u00fck"}, "Rize": {"country": "Turkey", "subcountry": "Rize"}, "Osmaneli": {"country": "Turkey", "subcountry": "Bilecik"}, "Osmanc\u0131k": {"country": "Turkey", "subcountry": "\u00c7orum"}, "Orhangazi": {"country": "Turkey", "subcountry": "Bursa"}, "Ordu": {"country": "Turkey", "subcountry": "Ordu"}, "Oltu": {"country": "Turkey", "subcountry": "Erzurum"}, "Of": {"country": "Turkey", "subcountry": "Trabzon"}, "Niksar": {"country": "Turkey", "subcountry": "Tokat"}, "Nall\u0131han": {"country": "Turkey", "subcountry": "Ankara"}, "Mustafakemalpa\u015fa": {"country": "Turkey", "subcountry": "Bursa"}, "Mudanya": {"country": "Turkey", "subcountry": "Bursa"}, "Mimarsinan": {"country": "Turkey", "subcountry": "Istanbul"}, "Merzifon": {"country": "Turkey", "subcountry": "Amasya"}, "Maltepe": {"country": "Turkey", "subcountry": "Istanbul"}, "Malkara": {"country": "Turkey", "subcountry": "Tekirda\u011f"}, "L\u00fcleburgaz": {"country": "Turkey", "subcountry": "K\u0131rklareli"}, "Kumru": {"country": "Turkey", "subcountry": "Ordu"}, "Korgan": {"country": "Turkey", "subcountry": "Ordu"}, "Kocaali": {"country": "Turkey", "subcountry": "Sakarya"}, "K\u0131z\u0131lcahamam": {"country": "Turkey", "subcountry": "Ankara"}, "K\u0131rklareli": {"country": "Turkey", "subcountry": "K\u0131rklareli"}, "Kestel": {"country": "Turkey", "subcountry": "Bursa"}, "Ke\u015fan": {"country": "Turkey", "subcountry": "Edirne"}, "Kelkit": {"country": "Turkey", "subcountry": "G\u00fcm\u00fc\u015fhane"}, "Kavakl\u0131": {"country": "Turkey", "subcountry": "Istanbul"}, "Kastamonu": {"country": "Turkey", "subcountry": "Kastamonu"}, "Kars": {"country": "Turkey", "subcountry": "Kars"}, "Karasu": {"country": "Turkey", "subcountry": "Sakarya"}, "Karam\u00fcrsel": {"country": "Turkey", "subcountry": "Kocaeli"}, "Karacabey": {"country": "Turkey", "subcountry": "Bursa"}, "Karab\u00fck": {"country": "Turkey", "subcountry": "Karab\u00fck"}, "Ka\u011f\u0131zman": {"country": "Turkey", "subcountry": "Kars"}, "\u0130znik": {"country": "Turkey", "subcountry": "Bursa"}, "\u0130zmit": {"country": "Turkey", "subcountry": "Kocaeli"}, "\u0130stanbul": {"country": "Turkey", "subcountry": "Istanbul"}, "\u0130skilip": {"country": "Turkey", "subcountry": "\u00c7orum"}, "\u0130negol": {"country": "Turkey", "subcountry": "Bursa"}, "Horasan": {"country": "Turkey", "subcountry": "Erzurum"}, "Hopa": {"country": "Turkey", "subcountry": "Artvin"}, "Hendek": {"country": "Turkey", "subcountry": "Sakarya"}, "Hayrabolu": {"country": "Turkey", "subcountry": "Tekirda\u011f"}, "Havza": {"country": "Turkey", "subcountry": "Samsun"}, "G\u00fcrsu": {"country": "Turkey", "subcountry": "Bursa"}, "G\u00fcrp\u0131nar": {"country": "Turkey", "subcountry": "Istanbul"}, "G\u00fcrgentepe": {"country": "Turkey", "subcountry": "Ordu"}, "Gumushkhane": {"country": "Turkey", "subcountry": "G\u00fcm\u00fc\u015fhane"}, "G\u00f6rele": {"country": "Turkey", "subcountry": "Giresun"}, "G\u00f6nen": {"country": "Turkey", "subcountry": "Bal\u0131kesir"}, "G\u00f6lc\u00fck": {"country": "Turkey", "subcountry": "Kocaeli"}, "Giresun": {"country": "Turkey", "subcountry": "Giresun"}, "Geyve": {"country": "Turkey", "subcountry": "Sakarya"}, "Gerede": {"country": "Turkey", "subcountry": "Bolu"}, "Gemlik": {"country": "Turkey", "subcountry": "Bursa"}, "Gelibolu": {"country": "Turkey", "subcountry": "\u00c7anakkale Province"}, "Gebze": {"country": "Turkey", "subcountry": "Kocaeli"}, "Ferizli": {"country": "Turkey", "subcountry": "Sakarya"}, "Fatsa": {"country": "Turkey", "subcountry": "Ordu"}, "Esenyurt": {"country": "Turkey", "subcountry": "Istanbul"}, "Esenler": {"country": "Turkey", "subcountry": "Istanbul"}, "Erdek": {"country": "Turkey", "subcountry": "Bal\u0131kesir"}, "Erbaa": {"country": "Turkey", "subcountry": "Tokat"}, "Emin\u00f6n\u00fc": {"country": "Turkey", "subcountry": "Istanbul"}, "Edirne": {"country": "Turkey", "subcountry": "Edirne"}, "D\u00fczce": {"country": "Turkey", "subcountry": "D\u00fczce"}, "Devrek": {"country": "Turkey", "subcountry": "Zonguldak"}, "\u00c7ubuk": {"country": "Turkey", "subcountry": "Ankara"}, "\u00c7orum": {"country": "Turkey", "subcountry": "\u00c7orum"}, "\u00c7orlu": {"country": "Turkey", "subcountry": "Tekirda\u011f"}, "\u00c7erkezk\u00f6y": {"country": "Turkey", "subcountry": "Tekirda\u011f"}, "\u00c7erke\u015f": {"country": "Turkey", "subcountry": "\u00c7ank\u0131r\u0131"}, "\u00c7ayeli": {"country": "Turkey", "subcountry": "Rize"}, "\u00c7aycuma": {"country": "Turkey", "subcountry": "Zonguldak"}, "\u00c7atalca": {"country": "Turkey", "subcountry": "Istanbul"}, "\u00c7ar\u015famba": {"country": "Turkey", "subcountry": "Samsun"}, "Khanjarah": {"country": "Turkey", "subcountry": "\u00c7ank\u0131r\u0131"}, "\u00c7anakkale": {"country": "Turkey", "subcountry": "\u00c7anakkale Province"}, "\u00c7an": {"country": "Turkey", "subcountry": "\u00c7anakkale Province"}, "Bursa": {"country": "Turkey", "subcountry": "Bursa"}, "Bulancak": {"country": "Turkey", "subcountry": "Giresun"}, "Boyabat": {"country": "Turkey", "subcountry": "Sinop"}, "Bolu": {"country": "Turkey", "subcountry": "Bolu"}, "Bilecik": {"country": "Turkey", "subcountry": "Bilecik"}, "Biga": {"country": "Turkey", "subcountry": "\u00c7anakkale Province"}, "Beypazar\u0131": {"country": "Turkey", "subcountry": "Ankara"}, "Be\u015fikd\u00fcz\u00fc": {"country": "Turkey", "subcountry": "Trabzon"}, "Bayburt": {"country": "Turkey", "subcountry": "Bayburt"}, "Bart\u0131n": {"country": "Turkey", "subcountry": "Bart\u0131n"}, "Band\u0131rma": {"country": "Turkey", "subcountry": "Bal\u0131kesir"}, "Ba\u011fc\u0131lar": {"country": "Turkey", "subcountry": "Istanbul"}, "Bafra": {"country": "Turkey", "subcountry": "Samsun"}, "Babaeski": {"country": "Turkey", "subcountry": "K\u0131rklareli"}, "Artvin": {"country": "Turkey", "subcountry": "Artvin"}, "Arsin": {"country": "Turkey", "subcountry": "Trabzon"}, "Arhavi": {"country": "Turkey", "subcountry": "Artvin"}, "Arde\u015fen": {"country": "Turkey", "subcountry": "Rize"}, "Ardahan": {"country": "Turkey", "subcountry": "Ardahan"}, "Arakl\u0131": {"country": "Turkey", "subcountry": "Trabzon"}, "Amasya": {"country": "Turkey", "subcountry": "Amasya"}, "Alapl\u0131": {"country": "Turkey", "subcountry": "Zonguldak"}, "Alaca": {"country": "Turkey", "subcountry": "\u00c7orum"}, "Akyaz\u0131": {"country": "Turkey", "subcountry": "Sakarya"}, "Ak\u00e7akoca": {"country": "Turkey", "subcountry": "D\u00fczce"}, "Ak\u00e7aabat": {"country": "Turkey", "subcountry": "Trabzon"}, "Adapazar\u0131": {"country": "Turkey", "subcountry": "Sakarya"}, "Espiye": {"country": "Turkey", "subcountry": "Giresun"}, "Merter Keresteciler": {"country": "Turkey", "subcountry": "Istanbul"}, "G\u00fcng\u00f6ren Merter": {"country": "Turkey", "subcountry": "Istanbul"}, "Turgutreis": {"country": "Turkey", "subcountry": "Mu\u011fla"}, "Sarigerme": {"country": "Turkey", "subcountry": "Mu\u011fla"}, "Ata\u015fehir": {"country": "Turkey", "subcountry": "Istanbul"}, "Ba\u015fak\u015fehir": {"country": "Turkey", "subcountry": "Istanbul"}, "Beylikd\u00fcz\u00fc": {"country": "Turkey", "subcountry": "Istanbul"}, "B\u00fcy\u00fck\u00e7ekmece": {"country": "Turkey", "subcountry": "Istanbul"}, "\u00c7ankaya": {"country": "Turkey", "subcountry": "Ankara"}, "Bah\u00e7elievler": {"country": "Turkey", "subcountry": "Istanbul"}, "Sultangazi": {"country": "Turkey", "subcountry": "Istanbul"}, "Sultanbeyli": {"country": "Turkey", "subcountry": "Istanbul"}, "Sancaktepe": {"country": "Turkey", "subcountry": "Istanbul"}, "Karaba\u011flar": {"country": "Turkey", "subcountry": "\u0130zmir"}, "Muratpa\u015fa": {"country": "Turkey", "subcountry": "Antalya"}, "Tunapuna": {"country": "Trinidad and Tobago", "subcountry": "Tunapuna/Piarco"}, "Sangre Grande": {"country": "Trinidad and Tobago", "subcountry": "Sangre Grande"}, "Port Of Spain": {"country": "Trinidad and Tobago", "subcountry": "City of Port of Spain"}, "Point Fortin": {"country": "Trinidad and Tobago", "subcountry": "Point Fortin"}, "Paradise": {"country": "United States", "subcountry": "Nevada"}, "Mon Repos": {"country": "Trinidad and Tobago", "subcountry": "City of San Fernando"}, "Marabella": {"country": "Trinidad and Tobago", "subcountry": "City of San Fernando"}, "Laventille": {"country": "Trinidad and Tobago", "subcountry": "San Juan/Laventille"}, "Chaguanas": {"country": "Trinidad and Tobago", "subcountry": "Chaguanas"}, "Arima": {"country": "Trinidad and Tobago", "subcountry": "Borough of Arima"}, "Funafuti": {"country": "Tuvalu", "subcountry": "Funafuti"}, "Douliu": {"country": "Taiwan", "subcountry": "Taiwan"}, "Yujing": {"country": "Taiwan", "subcountry": "Taiwan"}, "Taipei": {"country": "Taiwan", "subcountry": "Taipei"}, "Tainan": {"country": "Taiwan", "subcountry": "Taiwan"}, "Taichung": {"country": "Taiwan", "subcountry": "Taiwan"}, "Daxi": {"country": "Taiwan", "subcountry": "Taiwan"}, "Banqiao": {"country": "Taiwan", "subcountry": "Taipei"}, "Puli": {"country": "Taiwan", "subcountry": "Taiwan"}, "Nantou": {"country": "Taiwan", "subcountry": "Taiwan"}, "Magong": {"country": "Taiwan", "subcountry": "Taiwan"}, "Lugu": {"country": "Taiwan", "subcountry": "Taiwan"}, "Kaohsiung": {"country": "Taiwan", "subcountry": "Kaohsiung"}, "Hualien City": {"country": "Taiwan", "subcountry": "Taiwan"}, "Hsinchu": {"country": "Taiwan", "subcountry": "Taiwan"}, "Hengchun": {"country": "Taiwan", "subcountry": "Taiwan"}, "Keelung": {"country": "Taiwan", "subcountry": "Taiwan"}, "Taoyuan City": {"country": "Taiwan", "subcountry": "Taiwan"}, "Taitung City": {"country": "Taiwan", "subcountry": "Taiwan"}, "Zhongxing New Village": {"country": "Taiwan", "subcountry": "Taiwan"}, "Zanzibar": {"country": "Tanzania", "subcountry": "Zanzibar Urban/West"}, "Wete": {"country": "Tanzania", "subcountry": "Pemba North"}, "Vwawa": {"country": "Tanzania", "subcountry": "Mbeya"}, "Vikindu": {"country": "Tanzania", "subcountry": "Pwani"}, "Uyovu": {"country": "Tanzania", "subcountry": "Geita"}, "Uvinza": {"country": "Tanzania", "subcountry": "Kigoma"}, "Ushirombo": {"country": "Tanzania", "subcountry": "Geita"}, "Usevia": {"country": "Tanzania", "subcountry": "Katavi"}, "Usagara": {"country": "Tanzania", "subcountry": "Mwanza"}, "Usa River": {"country": "Tanzania", "subcountry": "Arusha"}, "Urambo": {"country": "Tanzania", "subcountry": "Tabora"}, "Tunduma": {"country": "Tanzania", "subcountry": "Mbeya"}, "Tumbi": {"country": "Tanzania", "subcountry": "Tabora"}, "Tukuyu": {"country": "Tanzania", "subcountry": "Mbeya"}, "Tinde": {"country": "Tanzania", "subcountry": "Shinyanga"}, "Tarime": {"country": "Tanzania", "subcountry": "Mara"}, "Tanga": {"country": "Tanzania", "subcountry": "Tanga"}, "Tabora": {"country": "Tanzania", "subcountry": "Tabora"}, "Sumbawanga": {"country": "Tanzania", "subcountry": "Rukwa"}, "Songwa": {"country": "Tanzania", "subcountry": "Shinyanga"}, "Somanda": {"country": "Tanzania", "subcountry": "Simiyu"}, "Sokoni": {"country": "Tanzania", "subcountry": "Zanzibar Central/South"}, "Sirari": {"country": "Tanzania", "subcountry": "Mara"}, "Singida": {"country": "Tanzania", "subcountry": "Singida"}, "Sikonge": {"country": "Tanzania", "subcountry": "Tabora"}, "Shinyanga": {"country": "Tanzania", "subcountry": "Shinyanga"}, "Shelui": {"country": "Tanzania", "subcountry": "Singida"}, "Sepuka": {"country": "Tanzania", "subcountry": "Singida"}, "Rulenge": {"country": "Tanzania", "subcountry": "Kagera"}, "Rujewa": {"country": "Tanzania", "subcountry": "Mbeya"}, "Puma": {"country": "Tanzania", "subcountry": "Singida"}, "Old Shinyanga": {"country": "Tanzania", "subcountry": "Shinyanga"}, "Nyamuswa": {"country": "Tanzania", "subcountry": "Mara"}, "Nyalikungu": {"country": "Tanzania", "subcountry": "Simiyu"}, "Nyakabindi": {"country": "Tanzania", "subcountry": "Simiyu"}, "Nsunga": {"country": "Tanzania", "subcountry": "Kagera"}, "Nshamba": {"country": "Tanzania", "subcountry": "Kagera"}, "Njombe": {"country": "Tanzania", "subcountry": "Njombe"}, "Nguruka": {"country": "Tanzania", "subcountry": "Kigoma"}, "Ngudu": {"country": "Tanzania", "subcountry": "Mwanza"}, "Ngerengere": {"country": "Tanzania", "subcountry": "Morogoro"}, "Ngara": {"country": "Tanzania", "subcountry": "Kagera"}, "Nangwa": {"country": "Tanzania", "subcountry": "Manyara"}, "Namanyere": {"country": "Tanzania", "subcountry": "Rukwa"}, "Mwanza": {"country": "Tanzania", "subcountry": "Mwanza"}, "Mwadui": {"country": "Tanzania", "subcountry": "Shinyanga"}, "Mvomero": {"country": "Tanzania", "subcountry": "Pwani"}, "Musoma": {"country": "Tanzania", "subcountry": "Mara"}, "Muriti": {"country": "Tanzania", "subcountry": "Mara"}, "Mungaa": {"country": "Tanzania", "subcountry": "Singida"}, "Muheza": {"country": "Tanzania", "subcountry": "Tanga"}, "Mugumu": {"country": "Tanzania", "subcountry": "Mara"}, "Mtwango": {"country": "Tanzania", "subcountry": "Njombe"}, "Mto Wa Mbu": {"country": "Tanzania", "subcountry": "Arusha"}, "Mtinko": {"country": "Tanzania", "subcountry": "Singida"}, "Msowero": {"country": "Tanzania", "subcountry": "Morogoro"}, "Mpwapwa": {"country": "Tanzania", "subcountry": "Dodoma"}, "Mpanda": {"country": "Tanzania", "subcountry": "Katavi"}, "Moshi": {"country": "Tanzania", "subcountry": "Kilimanjaro"}, "Morogoro": {"country": "Tanzania", "subcountry": "Morogoro"}, "Mlowo": {"country": "Tanzania", "subcountry": "Mbeya"}, "Mlimba": {"country": "Tanzania", "subcountry": "Morogoro"}, "Mlangali": {"country": "Tanzania", "subcountry": "Njombe"}, "Mlandizi": {"country": "Tanzania", "subcountry": "Pwani"}, "Mlalo": {"country": "Tanzania", "subcountry": "Tanga"}, "Mkuranga": {"country": "Tanzania", "subcountry": "Pwani"}, "Mwandiga": {"country": "Tanzania", "subcountry": "Kigoma"}, "Misungwi": {"country": "Tanzania", "subcountry": "Mwanza"}, "Mikumi": {"country": "Tanzania", "subcountry": "Morogoro"}, "Mhango": {"country": "Tanzania", "subcountry": "Shinyanga"}, "Mgandu": {"country": "Tanzania", "subcountry": "Singida"}, "Mbuguni": {"country": "Tanzania", "subcountry": "Arusha"}, "Mbeya": {"country": "Tanzania", "subcountry": "Mbeya"}, "Mazinde": {"country": "Tanzania", "subcountry": "Tanga"}, "Matui": {"country": "Tanzania", "subcountry": "Tanga"}, "Matai": {"country": "Tanzania", "subcountry": "Rukwa"}, "Maswa": {"country": "Tanzania", "subcountry": "Simiyu"}, "Masumbwe": {"country": "Tanzania", "subcountry": "Geita"}, "Maramba": {"country": "Tanzania", "subcountry": "Tanga"}, "Malinyi": {"country": "Tanzania", "subcountry": "Morogoro"}, "Malampaka": {"country": "Tanzania", "subcountry": "Simiyu"}, "Makuyuni": {"country": "Tanzania", "subcountry": "Tanga"}, "Makumbako": {"country": "Tanzania", "subcountry": "Njombe"}, "Mahanje": {"country": "Tanzania", "subcountry": "Ruvuma"}, "Kihangara": {"country": "Tanzania", "subcountry": "Mwanza"}, "Magugu": {"country": "Tanzania", "subcountry": "Manyara"}, "Magomeni": {"country": "Tanzania", "subcountry": "Dar es Salaam"}, "Magole": {"country": "Tanzania", "subcountry": "Morogoro"}, "Mafinga": {"country": "Tanzania", "subcountry": "Iringa"}, "Mabama": {"country": "Tanzania", "subcountry": "Tabora"}, "Lushoto": {"country": "Tanzania", "subcountry": "Tanga"}, "Lugoba": {"country": "Tanzania", "subcountry": "Pwani"}, "Liwale": {"country": "Tanzania", "subcountry": "Lindi"}, "Lembeni": {"country": "Tanzania", "subcountry": "Kilimanjaro"}, "Lalago": {"country": "Tanzania", "subcountry": "Simiyu"}, "Laela": {"country": "Tanzania", "subcountry": "Rukwa"}, "Kyela": {"country": "Tanzania", "subcountry": "Mbeya"}, "Kondoa": {"country": "Tanzania", "subcountry": "Dodoma"}, "Kiwira": {"country": "Tanzania", "subcountry": "Mbeya"}, "Kishapu": {"country": "Tanzania", "subcountry": "Shinyanga"}, "Kisesa": {"country": "Tanzania", "subcountry": "Simiyu"}, "Kirando": {"country": "Tanzania", "subcountry": "Rukwa"}, "Kiomboi": {"country": "Tanzania", "subcountry": "Singida"}, "Kingori": {"country": "Tanzania", "subcountry": "Arusha"}, "Kilosa": {"country": "Tanzania", "subcountry": "Morogoro"}, "Kigoma": {"country": "Tanzania", "subcountry": "Kigoma"}, "Kidodi": {"country": "Tanzania", "subcountry": "Morogoro"}, "Kidatu": {"country": "Tanzania", "subcountry": "Morogoro"}, "Kibondo": {"country": "Tanzania", "subcountry": "Kigoma"}, "Kibiti": {"country": "Tanzania", "subcountry": "Pwani"}, "Kibara": {"country": "Tanzania", "subcountry": "Mara"}, "Kibakwe": {"country": "Tanzania", "subcountry": "Dodoma"}, "Kibaha": {"country": "Tanzania", "subcountry": "Pwani"}, "Katumba": {"country": "Tanzania", "subcountry": "Mbeya"}, "Katoro": {"country": "Tanzania", "subcountry": "Geita"}, "Katerero": {"country": "Tanzania", "subcountry": "Kagera"}, "Kasulu": {"country": "Tanzania", "subcountry": "Kigoma"}, "Kasamwa": {"country": "Tanzania", "subcountry": "Geita"}, "Kiratu": {"country": "Tanzania", "subcountry": "Arusha"}, "Kamachumu": {"country": "Tanzania", "subcountry": "Kagera"}, "Kakonko": {"country": "Tanzania", "subcountry": "Kigoma"}, "Kahama": {"country": "Tanzania", "subcountry": "Shinyanga"}, "Kabanga": {"country": "Tanzania", "subcountry": "Kagera"}, "Izazi": {"country": "Tanzania", "subcountry": "Iringa"}, "Itigi": {"country": "Tanzania", "subcountry": "Singida"}, "Isaka": {"country": "Tanzania", "subcountry": "Shinyanga"}, "Iringa": {"country": "Tanzania", "subcountry": "Iringa"}, "Ipinda": {"country": "Tanzania", "subcountry": "Mbeya"}, "Ilula": {"country": "Tanzania", "subcountry": "Iringa"}, "Ilongero": {"country": "Tanzania", "subcountry": "Singida"}, "Ilembula": {"country": "Tanzania", "subcountry": "Njombe"}, "Ikungi": {"country": "Tanzania", "subcountry": "Singida"}, "Igurusi": {"country": "Tanzania", "subcountry": "Mbeya"}, "Igunga": {"country": "Tanzania", "subcountry": "Tabora"}, "Igugunu": {"country": "Tanzania", "subcountry": "Singida"}, "Ifakara": {"country": "Tanzania", "subcountry": "Morogoro"}, "Hedaru": {"country": "Tanzania", "subcountry": "Kilimanjaro"}, "Geita": {"country": "Tanzania", "subcountry": "Geita"}, "Geiro": {"country": "Tanzania", "subcountry": "Morogoro"}, "Galappo": {"country": "Tanzania", "subcountry": "Manyara"}, "Dongobesh": {"country": "Tanzania", "subcountry": "Manyara"}, "Dodoma": {"country": "Tanzania", "subcountry": "Dodoma"}, "Dar Es Salaam": {"country": "Tanzania", "subcountry": "Dar es Salaam"}, "Dareda": {"country": "Tanzania", "subcountry": "Manyara"}, "Chimala": {"country": "Tanzania", "subcountry": "Mbeya"}, "Chato": {"country": "Tanzania", "subcountry": "Geita"}, "Chanika": {"country": "Tanzania", "subcountry": "Tanga"}, "Chalinze": {"country": "Tanzania", "subcountry": "Pwani"}, "Chala": {"country": "Tanzania", "subcountry": "Rukwa"}, "Chake Chake": {"country": "Tanzania", "subcountry": "Pemba South"}, "Butiama": {"country": "Tanzania", "subcountry": "Mara"}, "Buseresere": {"country": "Tanzania", "subcountry": "Geita"}, "Bungu": {"country": "Tanzania", "subcountry": "Pwani"}, "Bunda": {"country": "Tanzania", "subcountry": "Mara"}, "Bukoba": {"country": "Tanzania", "subcountry": "Kagera"}, "Bugarama": {"country": "Tanzania", "subcountry": "Kagera"}, "Biharamulo": {"country": "Tanzania", "subcountry": "Kagera"}, "Basotu": {"country": "Tanzania", "subcountry": "Manyara"}, "Bashanet": {"country": "Tanzania", "subcountry": "Manyara"}, "Bariadi": {"country": "Tanzania", "subcountry": "Simiyu"}, "Bagamoyo": {"country": "Tanzania", "subcountry": "Pwani"}, "Babati": {"country": "Tanzania", "subcountry": "Manyara"}, "Arusha": {"country": "Tanzania", "subcountry": "Arusha"}, "Tingi": {"country": "Tanzania", "subcountry": "Ruvuma"}, "Tandahimba": {"country": "Tanzania", "subcountry": "Mtwara"}, "Songea": {"country": "Tanzania", "subcountry": "Ruvuma"}, "Nyangao": {"country": "Tanzania", "subcountry": "Lindi"}, "Newala Kisimani": {"country": "Tanzania", "subcountry": "Mtwara"}, "Nanyamba": {"country": "Tanzania", "subcountry": "Mtwara"}, "Nangomba": {"country": "Tanzania", "subcountry": "Mtwara"}, "Nanganga": {"country": "Tanzania", "subcountry": "Mtwara"}, "Nachingwea": {"country": "Tanzania", "subcountry": "Lindi"}, "Mtwara": {"country": "Tanzania", "subcountry": "Mtwara"}, "Mbinga": {"country": "Tanzania", "subcountry": "Ruvuma"}, "Matiri": {"country": "Tanzania", "subcountry": "Ruvuma"}, "Masasi": {"country": "Tanzania", "subcountry": "Mtwara"}, "Maposeni": {"country": "Tanzania", "subcountry": "Ruvuma"}, "Lukuledi": {"country": "Tanzania", "subcountry": "Mtwara"}, "Luchingu": {"country": "Tanzania", "subcountry": "Mtwara"}, "Lindi": {"country": "Tanzania", "subcountry": "Lindi"}, "Kitama": {"country": "Tanzania", "subcountry": "Mtwara"}, "Kigonsera": {"country": "Tanzania", "subcountry": "Ruvuma"}, "Merelani": {"country": "Tanzania", "subcountry": "Arusha"}, "Lebedyn": {"country": "Ukraine", "subcountry": "Sumy"}, "Druzhkivka": {"country": "Ukraine", "subcountry": "Donetsk"}, "Vasylivka": {"country": "Ukraine", "subcountry": "Zaporizhia"}, "Zvenyhorodka": {"country": "Ukraine", "subcountry": "Cherkasy"}, "Zuhres": {"country": "Ukraine", "subcountry": "Donetsk"}, "Zolotonosha": {"country": "Ukraine", "subcountry": "Cherkasy"}, "Zolochiv": {"country": "Ukraine", "subcountry": "Lviv"}, "Znomenka": {"country": "Ukraine", "subcountry": "Kirovohrad"}, "Zmiyiv": {"country": "Ukraine", "subcountry": "Kharkiv"}, "Zhytomyr": {"country": "Ukraine", "subcountry": "Zhytomyr"}, "Zhmerynka": {"country": "Ukraine", "subcountry": "Vinnyts'ka"}, "Zhovti Vody": {"country": "Ukraine", "subcountry": "Dnipropetrovsk"}, "Zhashkiv": {"country": "Ukraine", "subcountry": "Cherkasy"}, "Zdolbuniv": {"country": "Ukraine", "subcountry": "Rivne"}, "Zaporizhzhya": {"country": "Ukraine", "subcountry": "Zaporizhia"}, "Yuzhne": {"country": "Ukraine", "subcountry": "Odessa"}, "Yevpatoriya": {"country": "Ukraine", "subcountry": "Crimea"}, "Yenakiyeve": {"country": "Ukraine", "subcountry": "Donetsk"}, "Yasynuvata": {"country": "Ukraine", "subcountry": "Donetsk"}, "Yalta": {"country": "Ukraine", "subcountry": "Crimea"}, "Yahotyn": {"country": "Ukraine", "subcountry": "Kiev"}, "Vyshhorod": {"country": "Ukraine", "subcountry": "Kiev"}, "Vynohradiv": {"country": "Ukraine", "subcountry": "Zakarpattia"}, "Voznesensk": {"country": "Ukraine", "subcountry": "Mykolaiv"}, "Volnovakha": {"country": "Ukraine", "subcountry": "Donetsk"}, "Vovchans\u2019K": {"country": "Ukraine", "subcountry": "Kharkiv"}, "Volodymyr-Volyns\u2019Kyy": {"country": "Ukraine", "subcountry": "Volyn"}, "Vyshneve": {"country": "Ukraine", "subcountry": "Kiev"}, "Vinnytsya": {"country": "Ukraine", "subcountry": "Vinnyts'ka"}, "Vatutine": {"country": "Ukraine", "subcountry": "Cherkasy"}, "Vasylkiv": {"country": "Ukraine", "subcountry": "Kiev"}, "Uzhhorod": {"country": "Ukraine", "subcountry": "Zakarpattia"}, "Uman\u2019": {"country": "Ukraine", "subcountry": "Cherkasy"}, "Tul\u2019Chyn": {"country": "Ukraine", "subcountry": "Vinnyts'ka"}, "Tsyurupyns\u2019K": {"country": "Ukraine", "subcountry": "Kherson"}, "Truskavets": {"country": "Ukraine", "subcountry": "Lviv"}, "Torez": {"country": "Ukraine", "subcountry": "Donetsk"}, "Tokmak": {"country": "Ukraine", "subcountry": "Zaporizhia"}, "Ternopil\u2019": {"country": "Ukraine", "subcountry": "Ternopil"}, "Tal\u2019Ne": {"country": "Ukraine", "subcountry": "Cherkasy"}, "Syevyerodonets\u2019K": {"country": "Ukraine", "subcountry": "Luhansk"}, "Svitlovods\u2019K": {"country": "Ukraine", "subcountry": "Kirovohrad"}, "Sverdlovs\u2019K": {"country": "Ukraine", "subcountry": "Luhansk"}, "Svatove": {"country": "Ukraine", "subcountry": "Luhansk"}, "Svalyava": {"country": "Ukraine", "subcountry": "Zakarpattia"}, "Sumy": {"country": "Ukraine", "subcountry": "Sumy"}, "Stryi": {"country": "Ukraine", "subcountry": "Lviv"}, "Stebnyk": {"country": "Ukraine", "subcountry": "Lviv"}, "Starokostyantyniv": {"country": "Ukraine", "subcountry": "Khmelnytskyi"}, "Starobil\u2019S\u2019K": {"country": "Ukraine", "subcountry": "Luhansk"}, "Stakhanov": {"country": "Ukraine", "subcountry": "Luhansk"}, "Sokal\u2019": {"country": "Ukraine", "subcountry": "Lviv"}, "Snizhne": {"country": "Ukraine", "subcountry": "Donetsk"}, "Smila": {"country": "Ukraine", "subcountry": "Cherkasy"}, "Sloviansk": {"country": "Ukraine", "subcountry": "Donetsk"}, "Slavuta": {"country": "Ukraine", "subcountry": "Khmelnytskyi"}, "Skvyra": {"country": "Ukraine", "subcountry": "Kiev"}, "Skadovs\u2019K": {"country": "Ukraine", "subcountry": "Kherson"}, "Synel\u2019Nykove": {"country": "Ukraine", "subcountry": "Dnipropetrovsk"}, "Simferopol": {"country": "Ukraine", "subcountry": "Crimea"}, "Shpola": {"country": "Ukraine", "subcountry": "Cherkasy"}, "Shostka": {"country": "Ukraine", "subcountry": "Sumy"}, "Shepetivka": {"country": "Ukraine", "subcountry": "Khmelnytskyi"}, "Shakhtars\u2019K": {"country": "Ukraine", "subcountry": "Donetsk"}, "Sevastopol": {"country": "Ukraine", "subcountry": "Misto Sevastopol\u2019"}, "Selydove": {"country": "Ukraine", "subcountry": "Donetsk"}, "Sarny": {"country": "Ukraine", "subcountry": "Rivne"}, "Sambir": {"country": "Ukraine", "subcountry": "Lviv"}, "Saky": {"country": "Ukraine", "subcountry": "Crimea"}, "Rubizhne": {"country": "Ukraine", "subcountry": "Luhansk"}, "Rozdil\u2019Na": {"country": "Ukraine", "subcountry": "Odessa"}, "Roven\u2019Ky": {"country": "Ukraine", "subcountry": "Luhansk"}, "Romny": {"country": "Ukraine", "subcountry": "Sumy"}, "Rivne": {"country": "Ukraine", "subcountry": "Rivne"}, "Reni": {"country": "Ukraine", "subcountry": "Odessa"}, "Radomyshl\u2019": {"country": "Ukraine", "subcountry": "Zhytomyr"}, "Piatykhatky": {"country": "Ukraine", "subcountry": "Dnipropetrovsk"}, "Putyvl\u2019": {"country": "Ukraine", "subcountry": "Sumy"}, "Pryluky": {"country": "Ukraine", "subcountry": "Chernihiv"}, "Popasna": {"country": "Ukraine", "subcountry": "Luhansk"}, "Poltava": {"country": "Ukraine", "subcountry": "Poltava"}, "Polonne": {"country": "Ukraine", "subcountry": "Khmelnytskyi"}, "Polohy": {"country": "Ukraine", "subcountry": "Zaporizhia"}, "Pidhorodne": {"country": "Ukraine", "subcountry": "Dnipropetrovsk"}, "Pyryatyn": {"country": "Ukraine", "subcountry": "Poltava"}, "Pervomays\u2019K": {"country": "Ukraine", "subcountry": "Mykolaiv"}, "Pereyaslav-Khmel\u2019Nyts\u2019Kyy": {"country": "Ukraine", "subcountry": "Kiev"}, "Pereval\u2019S\u2019K": {"country": "Ukraine", "subcountry": "Luhansk"}, "Pavlohrad": {"country": "Ukraine", "subcountry": "Dnipropetrovsk"}, "Ovruch": {"country": "Ukraine", "subcountry": "Zhytomyr"}, "Orikhiv": {"country": "Ukraine", "subcountry": "Zaporizhia"}, "Oleksandriya": {"country": "Ukraine", "subcountry": "Kirovohrad"}, "Odessa": {"country": "United States", "subcountry": "Texas"}, "Ochakiv": {"country": "Ukraine", "subcountry": "Mykolaiv"}, "Obukhiv": {"country": "Ukraine", "subcountry": "Kiev"}, "Novyy Buh": {"country": "Ukraine", "subcountry": "Mykolaiv"}, "Novovolyns\u2019K": {"country": "Ukraine", "subcountry": "Volyn"}, "Novoukrayinka": {"country": "Ukraine", "subcountry": "Kirovohrad"}, "Novomoskovs\u2019K": {"country": "Ukraine", "subcountry": "Dnipropetrovsk"}, "Novohrad-Volyns\u2019Kyy": {"country": "Ukraine", "subcountry": "Zhytomyr"}, "Nova Kakhovka": {"country": "Ukraine", "subcountry": "Kherson"}, "Nosivka": {"country": "Ukraine", "subcountry": "Chernihiv"}, "Nizhyn": {"country": "Ukraine", "subcountry": "Chernihiv"}, "Nyzhn\u2019Ohirs\u2019Kyy": {"country": "Ukraine", "subcountry": "Crimea"}, "Nikopol\u2019": {"country": "Ukraine", "subcountry": "Dnipropetrovsk"}, "Netishyn": {"country": "Ukraine", "subcountry": "Khmelnytskyi"}, "Nadvirna": {"country": "Ukraine", "subcountry": "Ivano-Frankivsk"}, "Mykolayiv": {"country": "Ukraine", "subcountry": "Mykolaiv"}, "Mukacheve": {"country": "Ukraine", "subcountry": "Zakarpattia"}, "Molodohvardiys\u2019K": {"country": "Ukraine", "subcountry": "Luhansk"}, "Mohyliv-Podil\u2019S\u2019Kyy": {"country": "Ukraine", "subcountry": "Vinnyts'ka"}, "Miskhor": {"country": "Ukraine", "subcountry": "Crimea"}, "Myrhorod": {"country": "Ukraine", "subcountry": "Poltava"}, "Merefa": {"country": "Ukraine", "subcountry": "Kharkiv"}, "Melitopol\u2019": {"country": "Ukraine", "subcountry": "Zaporizhia"}, "Mariupol": {"country": "Ukraine", "subcountry": "Donetsk"}, "Marhanets\u2019": {"country": "Ukraine", "subcountry": "Dnipropetrovsk"}, "Malyn": {"country": "Ukraine", "subcountry": "Zhytomyr"}, "Makiyivka": {"country": "Ukraine", "subcountry": "Donetsk"}, "Lyubotyn": {"country": "Ukraine", "subcountry": "Kharkiv"}, "Lviv": {"country": "Ukraine", "subcountry": "Lviv"}, "Lutuhyne": {"country": "Ukraine", "subcountry": "Luhansk"}, "Luts\u2019K": {"country": "Ukraine", "subcountry": "Volyn"}, "Luhansk": {"country": "Ukraine", "subcountry": "Luhansk"}, "Lubny": {"country": "Ukraine", "subcountry": "Poltava"}, "Lozova": {"country": "Ukraine", "subcountry": "Kharkiv"}, "Lysychans\u2019K": {"country": "Ukraine", "subcountry": "Luhansk"}, "Ladyzhyn": {"country": "Ukraine", "subcountry": "Vinnyts'ka"}, "Kiev": {"country": "Ukraine", "subcountry": "Kyiv City"}, "Kuznetsovs\u2019K": {"country": "Ukraine", "subcountry": "Rivne"}, "Kurakhovo": {"country": "Ukraine", "subcountry": "Donetsk"}, "Kupjansk": {"country": "Ukraine", "subcountry": "Kharkiv"}, "Kryvyi Rih": {"country": "Ukraine", "subcountry": "Dnipropetrovsk"}, "Krolevets\u2019": {"country": "Ukraine", "subcountry": "Sumy"}, "Kreminna": {"country": "Ukraine", "subcountry": "Luhansk"}, "Kremenets\u2019": {"country": "Ukraine", "subcountry": "Ternopil"}, "Kremenchuk": {"country": "Ukraine", "subcountry": "Poltava"}, "Krasnyy Luch": {"country": "Ukraine", "subcountry": "Luhansk"}, "Krasnyy Lyman": {"country": "Ukraine", "subcountry": "Donetsk"}, "Krasnoperekops\u2019K": {"country": "Ukraine", "subcountry": "Crimea"}, "Krasnohrad": {"country": "Ukraine", "subcountry": "Kharkiv"}, "Krasnodon": {"country": "Ukraine", "subcountry": "Luhansk"}, "Krasnoarmiys\u2019K": {"country": "Ukraine", "subcountry": "Donetsk"}, "Krasyliv": {"country": "Ukraine", "subcountry": "Khmelnytskyi"}, "Kramators\u2019K": {"country": "Ukraine", "subcountry": "Donetsk"}, "Kivsharivka": {"country": "Ukraine", "subcountry": "Kharkiv"}, "Kovel\u2019": {"country": "Ukraine", "subcountry": "Volyn"}, "Kotovs\u2019K": {"country": "Ukraine", "subcountry": "Odessa"}, "Kostopil\u2019": {"country": "Ukraine", "subcountry": "Rivne"}, "Korsun\u2019-Shevchenkivs\u2019Kyy": {"country": "Ukraine", "subcountry": "Cherkasy"}, "Korostyshiv": {"country": "Ukraine", "subcountry": "Zhytomyr"}, "Korosten\u2019": {"country": "Ukraine", "subcountry": "Zhytomyr"}, "Kostyantynivka": {"country": "Ukraine", "subcountry": "Donetsk"}, "Konotop": {"country": "Ukraine", "subcountry": "Sumy"}, "Komsomol\u2019S\u2019Ke": {"country": "Ukraine", "subcountry": "Kharkiv"}, "Kolomyya": {"country": "Ukraine", "subcountry": "Ivano-Frankivsk"}, "Kivertsi": {"country": "Ukraine", "subcountry": "Volyn"}, "Kirovs\u2019K": {"country": "Ukraine", "subcountry": "Luhansk"}, "Kirovohrad": {"country": "Ukraine", "subcountry": "Kirovohrad"}, "Kiliya": {"country": "Ukraine", "subcountry": "Odessa"}, "Khust": {"country": "Ukraine", "subcountry": "Zakarpattia"}, "Khmel\u2019Nyts\u2019Kyy": {"country": "Ukraine", "subcountry": "Khmelnytskyi"}, "Khmil\u2019Nyk": {"country": "Ukraine", "subcountry": "Vinnyts'ka"}, "Kherson": {"country": "Ukraine", "subcountry": "Kherson"}, "Khartsyz\u2019K": {"country": "Ukraine", "subcountry": "Donetsk"}, "Kharkiv": {"country": "Ukraine", "subcountry": "Kharkiv"}, "Kerch": {"country": "Ukraine", "subcountry": "Crimea"}, "Kozyatyn": {"country": "Ukraine", "subcountry": "Vinnyts'ka"}, "Karlivka": {"country": "Ukraine", "subcountry": "Poltava"}, "Kaniv": {"country": "Ukraine", "subcountry": "Cherkasy"}, "Kamieniec Podolski": {"country": "Ukraine", "subcountry": "Khmelnytskyi"}, "Kalush": {"country": "Ukraine", "subcountry": "Ivano-Frankivsk"}, "Kalynivka": {"country": "Ukraine", "subcountry": "Vinnyts'ka"}, "Kakhovka": {"country": "Ukraine", "subcountry": "Kherson"}, "Izyum": {"country": "Ukraine", "subcountry": "Kharkiv"}, "Izyaslav": {"country": "Ukraine", "subcountry": "Khmelnytskyi"}, "Izmayil": {"country": "Ukraine", "subcountry": "Odessa"}, "Ivano-Frankivs\u2019K": {"country": "Ukraine", "subcountry": "Ivano-Frankivsk"}, "Irpin": {"country": "Ukraine", "subcountry": "Kiev"}, "Ilovays\u2019K": {"country": "Ukraine", "subcountry": "Donetsk"}, "Illichivs\u2019K": {"country": "Ukraine", "subcountry": "Odessa"}, "Horodok": {"country": "Ukraine", "subcountry": "Lviv"}, "Horlivka": {"country": "Ukraine", "subcountry": "Donetsk"}, "Hlukhiv": {"country": "Ukraine", "subcountry": "Sumy"}, "Hulyaypole": {"country": "Ukraine", "subcountry": "Zaporizhia"}, "Horodyshche": {"country": "Ukraine", "subcountry": "Cherkasy"}, "Hola Prystan\u2019": {"country": "Ukraine", "subcountry": "Kherson"}, "Heniches\u2019K": {"country": "Ukraine", "subcountry": "Kherson"}, "Hayvoron": {"country": "Ukraine", "subcountry": "Kirovohrad"}, "Haysyn": {"country": "Ukraine", "subcountry": "Vinnyts'ka"}, "Hadyach": {"country": "Ukraine", "subcountry": "Poltava"}, "Feodosiya": {"country": "Ukraine", "subcountry": "Crimea"}, "Fastiv": {"country": "Ukraine", "subcountry": "Kiev"}, "Energodar": {"country": "Ukraine", "subcountry": "Zaporizhia"}, "Dzhankoy": {"country": "Ukraine", "subcountry": "Crimea"}, "Dzerzhyns\u2019K": {"country": "Ukraine", "subcountry": "Donetsk"}, "Dunaivtsi": {"country": "Ukraine", "subcountry": "Khmelnytskyi"}, "Dubno": {"country": "Ukraine", "subcountry": "Rivne"}, "Drohobych": {"country": "Ukraine", "subcountry": "Lviv"}, "Dolyna": {"country": "Ukraine", "subcountry": "Ivano-Frankivsk"}, "Dolyns'Ka": {"country": "Ukraine", "subcountry": "Kirovohrad"}, "Dokuchayevs\u2019K": {"country": "Ukraine", "subcountry": "Donetsk"}, "Dobropillya": {"country": "Ukraine", "subcountry": "Donetsk"}, "Dnipropetrovsk": {"country": "Ukraine", "subcountry": "Dnipropetrovsk"}, "Dniprodzerzhyns\u2019K": {"country": "Ukraine", "subcountry": "Dnipropetrovsk"}, "Dniprorudne": {"country": "Ukraine", "subcountry": "Zaporizhia"}, "Dymytrov": {"country": "Ukraine", "subcountry": "Donetsk"}, "Derhachi": {"country": "Ukraine", "subcountry": "Kharkiv"}, "Debal\u2019Tseve": {"country": "Ukraine", "subcountry": "Donetsk"}, "Chuhuyiv": {"country": "Ukraine", "subcountry": "Kharkiv"}, "Chortkiv": {"country": "Ukraine", "subcountry": "Ternopil"}, "Chervonopartyzans\u2019K": {"country": "Ukraine", "subcountry": "Luhansk"}, "Chervonohrad": {"country": "Ukraine", "subcountry": "Lviv"}, "Chernivtsi": {"country": "Ukraine", "subcountry": "Chernivtsi"}, "Chernihiv": {"country": "Ukraine", "subcountry": "Chernihiv"}, "Cherkasy": {"country": "Ukraine", "subcountry": "Cherkasy"}, "Bucha": {"country": "Ukraine", "subcountry": "Kiev"}, "Bryanka": {"country": "Ukraine", "subcountry": "Luhansk"}, "Brovary": {"country": "Ukraine", "subcountry": "Kiev"}, "Brody": {"country": "Ukraine", "subcountry": "Lviv"}, "Boyarka": {"country": "Ukraine", "subcountry": "Kiev"}, "Boryspil\u2019": {"country": "Ukraine", "subcountry": "Kiev"}, "Boryslav": {"country": "Ukraine", "subcountry": "Lviv"}, "Bolhrad": {"country": "Ukraine", "subcountry": "Odessa"}, "Bohuslav": {"country": "Ukraine", "subcountry": "Kiev"}, "Bohodukhiv": {"country": "Ukraine", "subcountry": "Kharkiv"}, "Bilhorod-Dnistrovs\u2019Kyy": {"country": "Ukraine", "subcountry": "Odessa"}, "Bila Tserkva": {"country": "Ukraine", "subcountry": "Kiev"}, "\u0411\u0435\u0440\u0435\u0436\u0430\u043d\u0438": {"country": "Ukraine", "subcountry": "Ternopil"}, "Berehove": {"country": "Ukraine", "subcountry": "Zakarpattia"}, "Berdychiv": {"country": "Ukraine", "subcountry": "Zhytomyr"}, "Berdyans\u2019K": {"country": "Ukraine", "subcountry": "Zaporizhia"}, "Bilopillya": {"country": "Ukraine", "subcountry": "Sumy"}, "Bilohirs\u2019K": {"country": "Ukraine", "subcountry": "Crimea"}, "Balta": {"country": "Ukraine", "subcountry": "Odessa"}, "Balakliya": {"country": "Ukraine", "subcountry": "Kharkiv"}, "Balaklava": {"country": "Ukraine", "subcountry": "Misto Sevastopol\u2019"}, "Bakhmach": {"country": "Ukraine", "subcountry": "Chernihiv"}, "Bakhchysaray": {"country": "Ukraine", "subcountry": "Crimea"}, "Avdiyivka": {"country": "Ukraine", "subcountry": "Donetsk"}, "Artsyz": {"country": "Ukraine", "subcountry": "Odessa"}, "Artemivs\u2019K": {"country": "Ukraine", "subcountry": "Donetsk"}, "Armyans\u2019K": {"country": "Ukraine", "subcountry": "Crimea"}, "Apostolove": {"country": "Ukraine", "subcountry": "Dnipropetrovsk"}, "Antratsyt": {"country": "Ukraine", "subcountry": "Luhansk"}, "Amvrosiyivka": {"country": "Ukraine", "subcountry": "Donetsk"}, "Alushta": {"country": "Ukraine", "subcountry": "Crimea"}, "Alchevs\u2019K": {"country": "Ukraine", "subcountry": "Luhansk"}, "Okhtyrka": {"country": "Ukraine", "subcountry": "Sumy"}, "Komsomolsk": {"country": "Ukraine", "subcountry": "Poltava"}, "\u0421\u043b\u0430\u0432\u0443\u0442\u0438\u0447": {"country": "Ukraine", "subcountry": "Kiev"}, "Yuzhnoukrains'K": {"country": "Ukraine", "subcountry": "Mykolaiv"}, "Novoyavorivs'K": {"country": "Ukraine", "subcountry": "Lviv"}, "Yumbe": {"country": "Uganda", "subcountry": "Northern Region"}, "Wobulenzi": {"country": "Uganda", "subcountry": "Central Region"}, "Wakiso": {"country": "Uganda", "subcountry": "Central Region"}, "Tororo": {"country": "Uganda", "subcountry": "Eastern Region"}, "Soroti": {"country": "Uganda", "subcountry": "Eastern Region"}, "Pallisa": {"country": "Uganda", "subcountry": "Eastern Region"}, "Paidha": {"country": "Uganda", "subcountry": "Northern Region"}, "Nyachera": {"country": "Uganda", "subcountry": "Western Region"}, "Ntungamo": {"country": "Uganda", "subcountry": "Western Region"}, "Njeru": {"country": "Uganda", "subcountry": "Central Region"}, "Nebbi": {"country": "Uganda", "subcountry": "Northern Region"}, "Namasuba": {"country": "Uganda", "subcountry": "Central Region"}, "Mukono": {"country": "Uganda", "subcountry": "Central Region"}, "Mubende": {"country": "Uganda", "subcountry": "Central Region"}, "Moyo": {"country": "Uganda", "subcountry": "Northern Region"}, "Mityana": {"country": "Uganda", "subcountry": "Central Region"}, "Mbarara": {"country": "Uganda", "subcountry": "Western Region"}, "Masindi": {"country": "Uganda", "subcountry": "Western Region"}, "Masaka": {"country": "Uganda", "subcountry": "Central Region"}, "Luwero": {"country": "Uganda", "subcountry": "Central Region"}, "Lugazi": {"country": "Uganda", "subcountry": "Central Region"}, "Lira": {"country": "Uganda", "subcountry": "Northern Region"}, "Kyenjojo": {"country": "Uganda", "subcountry": "Western Region"}, "Kotido": {"country": "Uganda", "subcountry": "Northern Region"}, "Kitgum": {"country": "Uganda", "subcountry": "Northern Region"}, "Kireka": {"country": "Uganda", "subcountry": "Central Region"}, "Kayunga": {"country": "Uganda", "subcountry": "Central Region"}, "Kasese": {"country": "Uganda", "subcountry": "Western Region"}, "Kamwenge": {"country": "Uganda", "subcountry": "Western Region"}, "Kampala": {"country": "Uganda", "subcountry": "Central Region"}, "Kabale": {"country": "Uganda", "subcountry": "Western Region"}, "Jinja": {"country": "Uganda", "subcountry": "Eastern Region"}, "Iganga": {"country": "Uganda", "subcountry": "Eastern Region"}, "Hoima": {"country": "Uganda", "subcountry": "Western Region"}, "Gulu": {"country": "Uganda", "subcountry": "Northern Region"}, "Fort Portal": {"country": "Uganda", "subcountry": "Western Region"}, "Entebbe": {"country": "Uganda", "subcountry": "Central Region"}, "Bwizibwera": {"country": "Uganda", "subcountry": "Western Region"}, "Buwenge": {"country": "Uganda", "subcountry": "Eastern Region"}, "Busembatia": {"country": "Uganda", "subcountry": "Eastern Region"}, "Bundibugyo": {"country": "Uganda", "subcountry": "Western Region"}, "Bugiri": {"country": "Uganda", "subcountry": "Eastern Region"}, "Arua": {"country": "Uganda", "subcountry": "Northern Region"}, "Adjumani": {"country": "Uganda", "subcountry": "Northern Region"}, "Fort Hunt": {"country": "United States", "subcountry": "Virginia"}, "Bessemer": {"country": "United States", "subcountry": "Alabama"}, "Paducah": {"country": "United States", "subcountry": "Kentucky"}, "Center Point": {"country": "United States", "subcountry": "Alabama"}, "Daphne": {"country": "United States", "subcountry": "Alabama"}, "Decatur": {"country": "United States", "subcountry": "Illinois"}, "Dothan": {"country": "United States", "subcountry": "Alabama"}, "East Florence": {"country": "United States", "subcountry": "Alabama"}, "Enterprise": {"country": "United States", "subcountry": "Nevada"}, "Fairhope": {"country": "United States", "subcountry": "Alabama"}, "Gadsden": {"country": "United States", "subcountry": "Alabama"}, "Helena": {"country": "United States", "subcountry": "Montana"}, "Homewood": {"country": "United States", "subcountry": "Illinois"}, "Hoover": {"country": "United States", "subcountry": "Alabama"}, "Hueytown": {"country": "United States", "subcountry": "Alabama"}, "Madison": {"country": "United States", "subcountry": "Wisconsin"}, "Mobile": {"country": "United States", "subcountry": "Alabama"}, "Montgomery": {"country": "United States", "subcountry": "Illinois"}, "Mountain Brook": {"country": "United States", "subcountry": "Alabama"}, "Northport": {"country": "United States", "subcountry": "Alabama"}, "Opelika": {"country": "United States", "subcountry": "Alabama"}, "Pelham": {"country": "United States", "subcountry": "Alabama"}, "Phenix City": {"country": "United States", "subcountry": "Alabama"}, "Prattville": {"country": "United States", "subcountry": "Alabama"}, "Prichard": {"country": "United States", "subcountry": "Alabama"}, "Selma": {"country": "United States", "subcountry": "California"}, "Talladega": {"country": "United States", "subcountry": "Alabama"}, "Tillmans Corner": {"country": "United States", "subcountry": "Alabama"}, "Troy": {"country": "United States", "subcountry": "Ohio"}, "Trussville": {"country": "United States", "subcountry": "Alabama"}, "Tuscaloosa": {"country": "United States", "subcountry": "Alabama"}, "Vestavia Hills": {"country": "United States", "subcountry": "Alabama"}, "Benton": {"country": "United States", "subcountry": "Arkansas"}, "Bentonville": {"country": "United States", "subcountry": "Arkansas"}, "Blytheville": {"country": "United States", "subcountry": "Arkansas"}, "Bryant": {"country": "United States", "subcountry": "Arkansas"}, "Cabot": {"country": "United States", "subcountry": "Arkansas"}, "Conway": {"country": "United States", "subcountry": "South Carolina"}, "El Dorado": {"country": "United States", "subcountry": "Arkansas"}, "Fayetteville": {"country": "United States", "subcountry": "North Carolina"}, "Forrest City": {"country": "United States", "subcountry": "Arkansas"}, "Fort Smith": {"country": "United States", "subcountry": "Arkansas"}, "Hot Springs": {"country": "United States", "subcountry": "Arkansas"}, "Jacksonville": {"country": "United States", "subcountry": "North Carolina"}, "Jonesboro": {"country": "United States", "subcountry": "Arkansas"}, "Little Rock": {"country": "United States", "subcountry": "Arkansas"}, "Maumelle": {"country": "United States", "subcountry": "Arkansas"}, "North Little Rock": {"country": "United States", "subcountry": "Arkansas"}, "Paragould": {"country": "United States", "subcountry": "Arkansas"}, "Pine Bluff": {"country": "United States", "subcountry": "Arkansas"}, "Rogers": {"country": "United States", "subcountry": "Arkansas"}, "Russellville": {"country": "United States", "subcountry": "Arkansas"}, "Searcy": {"country": "United States", "subcountry": "Arkansas"}, "Siloam Springs": {"country": "United States", "subcountry": "Arkansas"}, "Springdale": {"country": "United States", "subcountry": "Arkansas"}, "Texarkana": {"country": "United States", "subcountry": "Arkansas"}, "Van Buren": {"country": "United States", "subcountry": "Arkansas"}, "West Memphis": {"country": "United States", "subcountry": "Arkansas"}, "Washington, D.C.": {"country": "United States", "subcountry": "Washington, D.C."}, "Bear": {"country": "United States", "subcountry": "Delaware"}, "Dover": {"country": "United States", "subcountry": "New Jersey"}, "Middletown": {"country": "United States", "subcountry": "Rhode Island"}, "Newark": {"country": "United States", "subcountry": "California"}, "Wilmington": {"country": "United States", "subcountry": "Massachusetts"}, "Allapattah": {"country": "United States", "subcountry": "Florida"}, "Altamonte Springs": {"country": "United States", "subcountry": "Florida"}, "Apopka": {"country": "United States", "subcountry": "Florida"}, "Aventura": {"country": "United States", "subcountry": "Florida"}, "Bartow": {"country": "United States", "subcountry": "Florida"}, "Bayonet Point": {"country": "United States", "subcountry": "Florida"}, "Bayshore Gardens": {"country": "United States", "subcountry": "Florida"}, "Belle Glade": {"country": "United States", "subcountry": "Florida"}, "Bellview": {"country": "United States", "subcountry": "Florida"}, "Bloomingdale": {"country": "United States", "subcountry": "Illinois"}, "Boca Del Mar": {"country": "United States", "subcountry": "Florida"}, "Boca Raton": {"country": "United States", "subcountry": "Florida"}, "Bonita Springs": {"country": "United States", "subcountry": "Florida"}, "Boynton Beach": {"country": "United States", "subcountry": "Florida"}, "Bradenton": {"country": "United States", "subcountry": "Florida"}, "Brent": {"country": "United States", "subcountry": "Florida"}, "Brownsville": {"country": "United States", "subcountry": "Texas"}, "Buenaventura Lakes": {"country": "United States", "subcountry": "Florida"}, "Cantonment": {"country": "United States", "subcountry": "Florida"}, "Cape Coral": {"country": "United States", "subcountry": "Florida"}, "Carol City": {"country": "United States", "subcountry": "Florida"}, "Carrollwood": {"country": "United States", "subcountry": "Florida"}, "Carrollwood Village": {"country": "United States", "subcountry": "Florida"}, "Casselberry": {"country": "United States", "subcountry": "Florida"}, "Citrus Park": {"country": "United States", "subcountry": "Florida"}, "Clearwater": {"country": "United States", "subcountry": "Florida"}, "Clermont": {"country": "United States", "subcountry": "Florida"}, "Cocoa": {"country": "United States", "subcountry": "Florida"}, "Coconut Creek": {"country": "United States", "subcountry": "Florida"}, "Coconut Grove": {"country": "United States", "subcountry": "Florida"}, "Cooper City": {"country": "United States", "subcountry": "Florida"}, "Coral Gables": {"country": "United States", "subcountry": "Florida"}, "Coral Springs": {"country": "United States", "subcountry": "Florida"}, "Coral Terrace": {"country": "United States", "subcountry": "Florida"}, "Country Walk": {"country": "United States", "subcountry": "Florida"}, "Country Club": {"country": "United States", "subcountry": "Florida"}, "Crestview": {"country": "United States", "subcountry": "Florida"}, "Cutler": {"country": "United States", "subcountry": "Florida"}, "Cutler Ridge": {"country": "United States", "subcountry": "Florida"}, "Dania Beach": {"country": "United States", "subcountry": "Florida"}, "Davie": {"country": "United States", "subcountry": "Florida"}, "Daytona Beach": {"country": "United States", "subcountry": "Florida"}, "Deland": {"country": "United States", "subcountry": "Florida"}, "Debary": {"country": "United States", "subcountry": "Florida"}, "Deerfield Beach": {"country": "United States", "subcountry": "Florida"}, "Delray Beach": {"country": "United States", "subcountry": "Florida"}, "Deltona": {"country": "United States", "subcountry": "Florida"}, "Doral": {"country": "United States", "subcountry": "Florida"}, "East Lake": {"country": "United States", "subcountry": "Florida"}, "East Pensacola Heights": {"country": "United States", "subcountry": "Florida"}, "Edgewater": {"country": "United States", "subcountry": "Florida"}, "Egypt Lake-Leto": {"country": "United States", "subcountry": "Florida"}, "Ensley": {"country": "United States", "subcountry": "Florida"}, "Estero": {"country": "United States", "subcountry": "Florida"}, "Eustis": {"country": "United States", "subcountry": "Florida"}, "Ferry Pass": {"country": "United States", "subcountry": "Florida"}, "Flagami": {"country": "United States", "subcountry": "Florida"}, "Florida Ridge": {"country": "United States", "subcountry": "Florida"}, "Fort Lauderdale": {"country": "United States", "subcountry": "Florida"}, "Fort Myers": {"country": "United States", "subcountry": "Florida"}, "Fort Pierce": {"country": "United States", "subcountry": "Florida"}, "Fort Walton Beach": {"country": "United States", "subcountry": "Florida"}, "Fountainebleau": {"country": "United States", "subcountry": "Florida"}, "Fruit Cove": {"country": "United States", "subcountry": "Florida"}, "Gainesville": {"country": "United States", "subcountry": "Texas"}, "Glenvar Heights": {"country": "United States", "subcountry": "Florida"}, "Golden Gate": {"country": "United States", "subcountry": "Florida"}, "Golden Glades": {"country": "United States", "subcountry": "Florida"}, "Greenacres City": {"country": "United States", "subcountry": "Florida"}, "Haines City": {"country": "United States", "subcountry": "Florida"}, "Hallandale Beach": {"country": "United States", "subcountry": "Florida"}, "Hialeah": {"country": "United States", "subcountry": "Florida"}, "Hialeah Gardens": {"country": "United States", "subcountry": "Florida"}, "Holiday": {"country": "United States", "subcountry": "Florida"}, "Hollywood": {"country": "United States", "subcountry": "California"}, "Homestead": {"country": "United States", "subcountry": "Florida"}, "Immokalee": {"country": "United States", "subcountry": "Florida"}, "Iona": {"country": "United States", "subcountry": "Florida"}, "Ives Estates": {"country": "United States", "subcountry": "Florida"}, "Jacksonville Beach": {"country": "United States", "subcountry": "Florida"}, "Jasmine Estates": {"country": "United States", "subcountry": "Florida"}, "Jupiter": {"country": "United States", "subcountry": "Florida"}, "Kendale Lakes": {"country": "United States", "subcountry": "Florida"}, "Kendall": {"country": "United States", "subcountry": "Florida"}, "Key West": {"country": "United States", "subcountry": "Florida"}, "Keystone": {"country": "United States", "subcountry": "Florida"}, "Kissimmee": {"country": "United States", "subcountry": "Florida"}, "Lake Butler": {"country": "United States", "subcountry": "Florida"}, "Lake Magdalene": {"country": "United States", "subcountry": "Florida"}, "Lake Worth": {"country": "United States", "subcountry": "Florida"}, "Lake Worth Corridor": {"country": "United States", "subcountry": "Florida"}, "Lakeland": {"country": "United States", "subcountry": "Florida"}, "Lakeside": {"country": "United States", "subcountry": "Florida"}, "Land O' Lakes": {"country": "United States", "subcountry": "Florida"}, "Largo": {"country": "United States", "subcountry": "Florida"}, "Lauderdale Lakes": {"country": "United States", "subcountry": "Florida"}, "Lauderhill": {"country": "United States", "subcountry": "Florida"}, "Lealman": {"country": "United States", "subcountry": "Florida"}, "Leesburg": {"country": "United States", "subcountry": "Florida"}, "Lehigh Acres": {"country": "United States", "subcountry": "Florida"}, "Leisure City": {"country": "United States", "subcountry": "Florida"}, "Lutz": {"country": "United States", "subcountry": "Florida"}, "Lynn Haven": {"country": "United States", "subcountry": "Florida"}, "Meadow Woods": {"country": "United States", "subcountry": "Florida"}, "Merritt Island": {"country": "United States", "subcountry": "Florida"}, "Miami": {"country": "United States", "subcountry": "Florida"}, "Miami Beach": {"country": "United States", "subcountry": "Florida"}, "Miami Gardens": {"country": "United States", "subcountry": "Florida"}, "Miami Lakes": {"country": "United States", "subcountry": "Florida"}, "Myrtle Grove": {"country": "United States", "subcountry": "Florida"}, "Naples": {"country": "United States", "subcountry": "Florida"}, "Navarre": {"country": "United States", "subcountry": "Florida"}, "New Smyrna Beach": {"country": "United States", "subcountry": "Florida"}, "Norland": {"country": "United States", "subcountry": "Florida"}, "North Fort Myers": {"country": "United States", "subcountry": "Florida"}, "North Lauderdale": {"country": "United States", "subcountry": "Florida"}, "North Miami": {"country": "United States", "subcountry": "Florida"}, "North Miami Beach": {"country": "United States", "subcountry": "Florida"}, "North Port": {"country": "United States", "subcountry": "Florida"}, "Oak Ridge": {"country": "United States", "subcountry": "Tennessee"}, "Oakland Park": {"country": "United States", "subcountry": "Florida"}, "Ocala": {"country": "United States", "subcountry": "Florida"}, "Ocoee": {"country": "United States", "subcountry": "Florida"}, "Ojus": {"country": "United States", "subcountry": "Florida"}, "Opa-Locka": {"country": "United States", "subcountry": "Florida"}, "Orlando": {"country": "United States", "subcountry": "Florida"}, "Ormond Beach": {"country": "United States", "subcountry": "Florida"}, "Pace": {"country": "United States", "subcountry": "Florida"}, "Palm Bay": {"country": "United States", "subcountry": "Florida"}, "Palm Beach Gardens": {"country": "United States", "subcountry": "Florida"}, "Palm City": {"country": "United States", "subcountry": "Florida"}, "Palm Coast": {"country": "United States", "subcountry": "Florida"}, "Palm Harbor": {"country": "United States", "subcountry": "Florida"}, "Palm Springs": {"country": "United States", "subcountry": "California"}, "Palm Valley": {"country": "United States", "subcountry": "Florida"}, "Palmetto Bay": {"country": "United States", "subcountry": "Florida"}, "Panama City": {"country": "United States", "subcountry": "Florida"}, "Parkland": {"country": "United States", "subcountry": "Washington"}, "Pembroke Pines": {"country": "United States", "subcountry": "Florida"}, "Pensacola": {"country": "United States", "subcountry": "Florida"}, "Pine Hills": {"country": "United States", "subcountry": "Florida"}, "Pinecrest": {"country": "United States", "subcountry": "Florida"}, "Pinellas Park": {"country": "United States", "subcountry": "Florida"}, "Pinewood": {"country": "United States", "subcountry": "Florida"}, "Plant City": {"country": "United States", "subcountry": "Florida"}, "Plantation": {"country": "United States", "subcountry": "Florida"}, "Poinciana": {"country": "United States", "subcountry": "Florida"}, "Pompano Beach": {"country": "United States", "subcountry": "Florida"}, "Ponte Vedra Beach": {"country": "United States", "subcountry": "Florida"}, "Port Charlotte": {"country": "United States", "subcountry": "Florida"}, "Port Orange": {"country": "United States", "subcountry": "Florida"}, "Port Saint Lucie": {"country": "United States", "subcountry": "Florida"}, "Princeton": {"country": "United States", "subcountry": "Florida"}, "Punta Gorda": {"country": "United States", "subcountry": "Florida"}, "Punta Gorda Isles": {"country": "United States", "subcountry": "Florida"}, "Richmond West": {"country": "United States", "subcountry": "Florida"}, "Riverview": {"country": "United States", "subcountry": "Florida"}, "Riviera Beach": {"country": "United States", "subcountry": "Florida"}, "Rockledge": {"country": "United States", "subcountry": "Florida"}, "Royal Palm Beach": {"country": "United States", "subcountry": "Florida"}, "Ruskin": {"country": "United States", "subcountry": "Florida"}, "Safety Harbor": {"country": "United States", "subcountry": "Florida"}, "Saint Cloud": {"country": "United States", "subcountry": "Minnesota"}, "San Carlos Park": {"country": "United States", "subcountry": "Florida"}, "Sanford": {"country": "United States", "subcountry": "North Carolina"}, "Sarasota": {"country": "United States", "subcountry": "Florida"}, "Sebastian": {"country": "United States", "subcountry": "Florida"}, "Seminole": {"country": "United States", "subcountry": "Florida"}, "South Bradenton": {"country": "United States", "subcountry": "Florida"}, "South Miami Heights": {"country": "United States", "subcountry": "Florida"}, "Southchase": {"country": "United States", "subcountry": "Florida"}, "Spring Hill": {"country": "United States", "subcountry": "Tennessee"}, "Stuart": {"country": "United States", "subcountry": "Florida"}, "Sun City Center": {"country": "United States", "subcountry": "Florida"}, "Sunny Isles Beach": {"country": "United States", "subcountry": "Florida"}, "Sunrise": {"country": "United States", "subcountry": "Florida"}, "Sunset": {"country": "United States", "subcountry": "Florida"}, "Tallahassee": {"country": "United States", "subcountry": "Florida"}, "Tamarac": {"country": "United States", "subcountry": "Florida"}, "Tamiami": {"country": "United States", "subcountry": "Florida"}, "Tampa": {"country": "United States", "subcountry": "Florida"}, "Tarpon Springs": {"country": "United States", "subcountry": "Florida"}, "Temple Terrace": {"country": "United States", "subcountry": "Florida"}, "The Crossings": {"country": "United States", "subcountry": "Florida"}, "The Hammocks": {"country": "United States", "subcountry": "Florida"}, "The Villages": {"country": "United States", "subcountry": "Florida"}, "Three Lakes": {"country": "United States", "subcountry": "Florida"}, "Titusville": {"country": "United States", "subcountry": "Florida"}, "Town 'N' Country": {"country": "United States", "subcountry": "Florida"}, "University Park": {"country": "United States", "subcountry": "Florida"}, "Valrico": {"country": "United States", "subcountry": "Florida"}, "Vero Beach": {"country": "United States", "subcountry": "Florida"}, "Wekiwa Springs": {"country": "United States", "subcountry": "Florida"}, "Wesley Chapel": {"country": "United States", "subcountry": "Florida"}, "Westchase": {"country": "United States", "subcountry": "Florida"}, "West Little River": {"country": "United States", "subcountry": "Florida"}, "West Melbourne": {"country": "United States", "subcountry": "Florida"}, "West Palm Beach": {"country": "United States", "subcountry": "Florida"}, "West Pensacola": {"country": "United States", "subcountry": "Florida"}, "West And East Lealman": {"country": "United States", "subcountry": "Florida"}, "Westchester": {"country": "United States", "subcountry": "Illinois"}, "Weston": {"country": "United States", "subcountry": "Florida"}, "Winter Garden": {"country": "United States", "subcountry": "Florida"}, "Winter Haven": {"country": "United States", "subcountry": "Florida"}, "Winter Park": {"country": "United States", "subcountry": "Florida"}, "Winter Springs": {"country": "United States", "subcountry": "Florida"}, "Wright": {"country": "United States", "subcountry": "Florida"}, "Acworth": {"country": "United States", "subcountry": "Georgia"}, "Alpharetta": {"country": "United States", "subcountry": "Georgia"}, "Americus": {"country": "United States", "subcountry": "Georgia"}, "Atlanta": {"country": "United States", "subcountry": "Georgia"}, "Belvedere Park": {"country": "United States", "subcountry": "Georgia"}, "Brookhaven": {"country": "United States", "subcountry": "Georgia"}, "Calhoun": {"country": "United States", "subcountry": "Georgia"}, "Canton": {"country": "United States", "subcountry": "Ohio"}, "Carrollton": {"country": "United States", "subcountry": "Texas"}, "Cartersville": {"country": "United States", "subcountry": "Georgia"}, "Columbus": {"country": "United States", "subcountry": "Nebraska"}, "Conyers": {"country": "United States", "subcountry": "Georgia"}, "Dalton": {"country": "United States", "subcountry": "Georgia"}, "Douglasville": {"country": "United States", "subcountry": "Georgia"}, "Duluth": {"country": "United States", "subcountry": "Minnesota"}, "Dunwoody": {"country": "United States", "subcountry": "Georgia"}, "East Point": {"country": "United States", "subcountry": "Georgia"}, "Evans": {"country": "United States", "subcountry": "Colorado"}, "Forest Park": {"country": "United States", "subcountry": "Ohio"}, "Griffin": {"country": "United States", "subcountry": "Georgia"}, "Hinesville": {"country": "United States", "subcountry": "Georgia"}, "Kennesaw": {"country": "United States", "subcountry": "Georgia"}, "Kingsland": {"country": "United States", "subcountry": "Georgia"}, "La Grange": {"country": "United States", "subcountry": "Illinois"}, "Lawrenceville": {"country": "United States", "subcountry": "Georgia"}, "Lithia Springs": {"country": "United States", "subcountry": "Georgia"}, "Mableton": {"country": "United States", "subcountry": "Georgia"}, "Macon": {"country": "United States", "subcountry": "Georgia"}, "Marietta": {"country": "United States", "subcountry": "Georgia"}, "Martinez": {"country": "United States", "subcountry": "California"}, "Mcdonough": {"country": "United States", "subcountry": "Georgia"}, "Milledgeville": {"country": "United States", "subcountry": "Georgia"}, "Newnan": {"country": "United States", "subcountry": "Georgia"}, "North Decatur": {"country": "United States", "subcountry": "Georgia"}, "North Druid Hills": {"country": "United States", "subcountry": "Georgia"}, "Peachtree City": {"country": "United States", "subcountry": "Georgia"}, "Pooler": {"country": "United States", "subcountry": "Georgia"}, "Redan": {"country": "United States", "subcountry": "Georgia"}, "Riverdale": {"country": "United States", "subcountry": "Georgia"}, "Roswell": {"country": "United States", "subcountry": "New Mexico"}, "St. Marys": {"country": "United States", "subcountry": "Georgia"}, "Sandy Springs": {"country": "United States", "subcountry": "Georgia"}, "Savannah": {"country": "United States", "subcountry": "Georgia"}, "Smyrna": {"country": "United States", "subcountry": "Tennessee"}, "Snellville": {"country": "United States", "subcountry": "Georgia"}, "Statesboro": {"country": "United States", "subcountry": "Georgia"}, "Stockbridge": {"country": "United States", "subcountry": "Georgia"}, "Sugar Hill": {"country": "United States", "subcountry": "Georgia"}, "Suwanee": {"country": "United States", "subcountry": "Georgia"}, "Thomasville": {"country": "United States", "subcountry": "North Carolina"}, "Tifton": {"country": "United States", "subcountry": "Georgia"}, "Tucker": {"country": "United States", "subcountry": "Georgia"}, "Union City": {"country": "United States", "subcountry": "California"}, "Valdosta": {"country": "United States", "subcountry": "Georgia"}, "Warner Robins": {"country": "United States", "subcountry": "Georgia"}, "Wilmington Island": {"country": "United States", "subcountry": "Georgia"}, "Cahokia": {"country": "United States", "subcountry": "Illinois"}, "Carbondale": {"country": "United States", "subcountry": "Illinois"}, "Charleston": {"country": "United States", "subcountry": "South Carolina"}, "Collinsville": {"country": "United States", "subcountry": "Illinois"}, "East Saint Louis": {"country": "United States", "subcountry": "Illinois"}, "Edwardsville": {"country": "United States", "subcountry": "Illinois"}, "Fairview Heights": {"country": "United States", "subcountry": "Illinois"}, "Godfrey": {"country": "United States", "subcountry": "Illinois"}, "Granite City": {"country": "United States", "subcountry": "Illinois"}, "Marion": {"country": "United States", "subcountry": "Ohio"}, "Mattoon": {"country": "United States", "subcountry": "Illinois"}, "Mount Vernon": {"country": "United States", "subcountry": "Washington"}, "O'Fallon": {"country": "United States", "subcountry": "Missouri"}, "Quincy": {"country": "United States", "subcountry": "Massachusetts"}, "Springfield": {"country": "United States", "subcountry": "Oregon"}, "Upper Alton": {"country": "United States", "subcountry": "Illinois"}, "Bloomington": {"country": "United States", "subcountry": "California"}, "Broad Ripple": {"country": "United States", "subcountry": "Indiana"}, "Brownsburg": {"country": "United States", "subcountry": "Indiana"}, "Carmel": {"country": "United States", "subcountry": "Indiana"}, "Clarksville": {"country": "United States", "subcountry": "Tennessee"}, "Evansville": {"country": "United States", "subcountry": "Indiana"}, "Fishers": {"country": "United States", "subcountry": "Indiana"}, "Greenfield": {"country": "United States", "subcountry": "California"}, "Greenwood": {"country": "United States", "subcountry": "South Carolina"}, "Indianapolis": {"country": "United States", "subcountry": "Indiana"}, "Jasper": {"country": "United States", "subcountry": "Indiana"}, "Jeffersonville": {"country": "United States", "subcountry": "Indiana"}, "Lawrence": {"country": "United States", "subcountry": "Massachusetts"}, "New Albany": {"country": "United States", "subcountry": "Indiana"}, "New Castle": {"country": "United States", "subcountry": "Pennsylvania"}, "Plainfield": {"country": "United States", "subcountry": "New Jersey"}, "Seymour": {"country": "United States", "subcountry": "Indiana"}, "Shelbyville": {"country": "United States", "subcountry": "Tennessee"}, "Terre Haute": {"country": "United States", "subcountry": "Indiana"}, "Derby": {"country": "United States", "subcountry": "Kansas"}, "Emporia": {"country": "United States", "subcountry": "Kansas"}, "Gardner": {"country": "United States", "subcountry": "Massachusetts"}, "Great Bend": {"country": "United States", "subcountry": "Kansas"}, "Hays": {"country": "United States", "subcountry": "Kansas"}, "Hutchinson": {"country": "United States", "subcountry": "Kansas"}, "Junction City": {"country": "United States", "subcountry": "Kansas"}, "Kansas City": {"country": "United States", "subcountry": "Missouri"}, "Leavenworth": {"country": "United States", "subcountry": "Kansas"}, "Leawood": {"country": "United States", "subcountry": "Kansas"}, "Lenexa": {"country": "United States", "subcountry": "Kansas"}, "Manhattan": {"country": "United States", "subcountry": "New York"}, "Newton": {"country": "United States", "subcountry": "Massachusetts"}, "Olathe": {"country": "United States", "subcountry": "Kansas"}, "Overland Park": {"country": "United States", "subcountry": "Kansas"}, "Pittsburg": {"country": "United States", "subcountry": "California"}, "Prairie Village": {"country": "United States", "subcountry": "Kansas"}, "Salina": {"country": "United States", "subcountry": "Kansas"}, "Shawnee": {"country": "United States", "subcountry": "Oklahoma"}, "Topeka": {"country": "United States", "subcountry": "Kansas"}, "Wichita": {"country": "United States", "subcountry": "Kansas"}, "Ashland": {"country": "United States", "subcountry": "Oregon"}, "Bowling Green": {"country": "United States", "subcountry": "Ohio"}, "Covington": {"country": "United States", "subcountry": "Washington"}, "Danville": {"country": "United States", "subcountry": "California"}, "Elizabethtown": {"country": "United States", "subcountry": "Kentucky"}, "Erlanger": {"country": "United States", "subcountry": "Kentucky"}, "Fern Creek": {"country": "United States", "subcountry": "Kentucky"}, "Fort Thomas": {"country": "United States", "subcountry": "Kentucky"}, "Frankfort": {"country": "United States", "subcountry": "Indiana"}, "Henderson": {"country": "United States", "subcountry": "Nevada"}, "Highview": {"country": "United States", "subcountry": "Kentucky"}, "Hopkinsville": {"country": "United States", "subcountry": "Kentucky"}, "Independence": {"country": "United States", "subcountry": "Missouri"}, "Ironville": {"country": "United States", "subcountry": "Kentucky"}, "Jeffersontown": {"country": "United States", "subcountry": "Kentucky"}, "Lexington": {"country": "United States", "subcountry": "Massachusetts"}, "Lexington-Fayette": {"country": "United States", "subcountry": "Kentucky"}, "Louisville": {"country": "United States", "subcountry": "Colorado"}, "Madisonville": {"country": "United States", "subcountry": "Kentucky"}, "Meads": {"country": "United States", "subcountry": "Kentucky"}, "Murray": {"country": "United States", "subcountry": "Utah"}, "Newburg": {"country": "United States", "subcountry": "Kentucky"}, "Nicholasville": {"country": "United States", "subcountry": "Kentucky"}, "Okolona": {"country": "United States", "subcountry": "Kentucky"}, "Owensboro": {"country": "United States", "subcountry": "Kentucky"}, "Pleasure Ridge Park": {"country": "United States", "subcountry": "Kentucky"}, "Radcliff": {"country": "United States", "subcountry": "Kentucky"}, "Saint Matthews": {"country": "United States", "subcountry": "Kentucky"}, "Shively": {"country": "United States", "subcountry": "Kentucky"}, "Valley Station": {"country": "United States", "subcountry": "Kentucky"}, "Baton Rouge": {"country": "United States", "subcountry": "Louisiana"}, "Bayou Cane": {"country": "United States", "subcountry": "Louisiana"}, "Bossier City": {"country": "United States", "subcountry": "Louisiana"}, "Central": {"country": "United States", "subcountry": "Louisiana"}, "Chalmette": {"country": "United States", "subcountry": "Louisiana"}, "Estelle": {"country": "United States", "subcountry": "Louisiana"}, "Gretna": {"country": "United States", "subcountry": "Louisiana"}, "Hammond": {"country": "United States", "subcountry": "Indiana"}, "Harvey": {"country": "United States", "subcountry": "Illinois"}, "Houma": {"country": "United States", "subcountry": "Louisiana"}, "Kenner": {"country": "United States", "subcountry": "Louisiana"}, "Lafayette": {"country": "United States", "subcountry": "Colorado"}, "Lake Charles": {"country": "United States", "subcountry": "Louisiana"}, "Laplace": {"country": "United States", "subcountry": "Louisiana"}, "Marrero": {"country": "United States", "subcountry": "Louisiana"}, "Metairie": {"country": "United States", "subcountry": "Louisiana"}, "Metairie Terrace": {"country": "United States", "subcountry": "Louisiana"}, "Monroe": {"country": "United States", "subcountry": "Washington"}, "Natchitoches": {"country": "United States", "subcountry": "Louisiana"}, "New Iberia": {"country": "United States", "subcountry": "Louisiana"}, "New Orleans": {"country": "United States", "subcountry": "Louisiana"}, "Opelousas": {"country": "United States", "subcountry": "Louisiana"}, "Prairieville": {"country": "United States", "subcountry": "Louisiana"}, "Ruston": {"country": "United States", "subcountry": "Louisiana"}, "Shenandoah": {"country": "United States", "subcountry": "Louisiana"}, "Shreveport": {"country": "United States", "subcountry": "Louisiana"}, "Slidell": {"country": "United States", "subcountry": "Louisiana"}, "Sulphur": {"country": "United States", "subcountry": "Louisiana"}, "Terrytown": {"country": "United States", "subcountry": "Louisiana"}, "Adelphi": {"country": "United States", "subcountry": "Maryland"}, "Annapolis": {"country": "United States", "subcountry": "Maryland"}, "Arbutus": {"country": "United States", "subcountry": "Maryland"}, "Aspen Hill": {"country": "United States", "subcountry": "Maryland"}, "Baltimore": {"country": "United States", "subcountry": "Maryland"}, "Ballenger Creek": {"country": "United States", "subcountry": "Maryland"}, "Beltsville": {"country": "United States", "subcountry": "Maryland"}, "Bethesda": {"country": "United States", "subcountry": "Maryland"}, "Bowie": {"country": "United States", "subcountry": "Maryland"}, "Calverton": {"country": "United States", "subcountry": "Maryland"}, "Camp Springs": {"country": "United States", "subcountry": "Maryland"}, "Carney": {"country": "United States", "subcountry": "Maryland"}, "Catonsville": {"country": "United States", "subcountry": "Maryland"}, "Chillum": {"country": "United States", "subcountry": "Maryland"}, "Cloverly": {"country": "United States", "subcountry": "Maryland"}, "Clinton": {"country": "United States", "subcountry": "Utah"}, "Cockeysville": {"country": "United States", "subcountry": "Maryland"}, "College Park": {"country": "United States", "subcountry": "Maryland"}, "Columbia": {"country": "United States", "subcountry": "Tennessee"}, "Crofton": {"country": "United States", "subcountry": "Maryland"}, "Cumberland": {"country": "United States", "subcountry": "Rhode Island"}, "East Riverdale": {"country": "United States", "subcountry": "Maryland"}, "Easton": {"country": "United States", "subcountry": "Pennsylvania"}, "Edgewood": {"country": "United States", "subcountry": "Maryland"}, "Eldersburg": {"country": "United States", "subcountry": "Maryland"}, "Elkton": {"country": "United States", "subcountry": "Maryland"}, "Elkridge": {"country": "United States", "subcountry": "Maryland"}, "Ellicott City": {"country": "United States", "subcountry": "Maryland"}, "Essex": {"country": "United States", "subcountry": "Maryland"}, "Fairland": {"country": "United States", "subcountry": "Maryland"}, "Ferndale": {"country": "United States", "subcountry": "Michigan"}, "Fort Washington": {"country": "United States", "subcountry": "Maryland"}, "Frederick": {"country": "United States", "subcountry": "Maryland"}, "Gaithersburg": {"country": "United States", "subcountry": "Maryland"}, "Germantown": {"country": "United States", "subcountry": "Wisconsin"}, "Glassmanor": {"country": "United States", "subcountry": "Maryland"}, "Glen Burnie": {"country": "United States", "subcountry": "Maryland"}, "Green Haven": {"country": "United States", "subcountry": "Maryland"}, "Greenbelt": {"country": "United States", "subcountry": "Maryland"}, "Hagerstown": {"country": "United States", "subcountry": "Maryland"}, "Hanover": {"country": "United States", "subcountry": "Massachusetts"}, "Hillcrest Heights": {"country": "United States", "subcountry": "Maryland"}, "Hunt Valley": {"country": "United States", "subcountry": "Maryland"}, "Hyattsville": {"country": "United States", "subcountry": "Maryland"}, "Ilchester": {"country": "United States", "subcountry": "Maryland"}, "Lake Shore": {"country": "United States", "subcountry": "Maryland"}, "Landover": {"country": "United States", "subcountry": "Maryland"}, "Langley Park": {"country": "United States", "subcountry": "Maryland"}, "Laurel": {"country": "United States", "subcountry": "Mississippi"}, "Lochearn": {"country": "United States", "subcountry": "Maryland"}, "Maryland City": {"country": "United States", "subcountry": "Maryland"}, "Middle River": {"country": "United States", "subcountry": "Maryland"}, "Milford Mill": {"country": "United States", "subcountry": "Maryland"}, "Montgomery Village": {"country": "United States", "subcountry": "Maryland"}, "North Bel Air": {"country": "United States", "subcountry": "Maryland"}, "North Bethesda": {"country": "United States", "subcountry": "Maryland"}, "North Potomac": {"country": "United States", "subcountry": "Maryland"}, "Odenton": {"country": "United States", "subcountry": "Maryland"}, "Olney": {"country": "United States", "subcountry": "Maryland"}, "Owings Mills": {"country": "United States", "subcountry": "Maryland"}, "Oxon Hill": {"country": "United States", "subcountry": "Maryland"}, "Parkville": {"country": "United States", "subcountry": "Maryland"}, "Parole": {"country": "United States", "subcountry": "Maryland"}, "Pasadena": {"country": "United States", "subcountry": "California"}, "Perry Hall": {"country": "United States", "subcountry": "Maryland"}, "Pikesville": {"country": "United States", "subcountry": "Maryland"}, "Potomac": {"country": "United States", "subcountry": "Maryland"}, "Randallstown": {"country": "United States", "subcountry": "Maryland"}, "Redland": {"country": "United States", "subcountry": "Maryland"}, "Reisterstown": {"country": "United States", "subcountry": "Maryland"}, "Rockville": {"country": "United States", "subcountry": "Maryland"}, "Rosedale": {"country": "United States", "subcountry": "Maryland"}, "Rossville": {"country": "United States", "subcountry": "Maryland"}, "Saint Charles": {"country": "United States", "subcountry": "Illinois"}, "Seabrook": {"country": "United States", "subcountry": "Maryland"}, "Severn": {"country": "United States", "subcountry": "Maryland"}, "Severna Park": {"country": "United States", "subcountry": "Maryland"}, "Silver Spring": {"country": "United States", "subcountry": "Maryland"}, "South Bel Air": {"country": "United States", "subcountry": "Maryland"}, "South Gate": {"country": "United States", "subcountry": "California"}, "South Laurel": {"country": "United States", "subcountry": "Maryland"}, "Suitland": {"country": "United States", "subcountry": "Maryland"}, "Takoma Park": {"country": "United States", "subcountry": "Maryland"}, "Towson": {"country": "United States", "subcountry": "Maryland"}, "Waldorf": {"country": "United States", "subcountry": "Maryland"}, "West Elkridge": {"country": "United States", "subcountry": "Maryland"}, "Westminster": {"country": "United States", "subcountry": "Colorado"}, "Wheaton": {"country": "United States", "subcountry": "Illinois"}, "White Oak": {"country": "United States", "subcountry": "Ohio"}, "Woodlawn": {"country": "United States", "subcountry": "Maryland"}, "Affton": {"country": "United States", "subcountry": "Missouri"}, "Ballwin": {"country": "United States", "subcountry": "Missouri"}, "Belton": {"country": "United States", "subcountry": "Texas"}, "Blue Springs": {"country": "United States", "subcountry": "Missouri"}, "Cape Girardeau": {"country": "United States", "subcountry": "Missouri"}, "Concord": {"country": "United States", "subcountry": "California"}, "Creve Coeur": {"country": "United States", "subcountry": "Missouri"}, "East Independence": {"country": "United States", "subcountry": "Missouri"}, "Farmington": {"country": "United States", "subcountry": "Utah"}, "Ferguson": {"country": "United States", "subcountry": "Missouri"}, "Florissant": {"country": "United States", "subcountry": "Missouri"}, "Grandview": {"country": "United States", "subcountry": "Missouri"}, "Hannibal": {"country": "United States", "subcountry": "Missouri"}, "Hazelwood": {"country": "United States", "subcountry": "Missouri"}, "Jefferson City": {"country": "United States", "subcountry": "Missouri"}, "Joplin": {"country": "United States", "subcountry": "Missouri"}, "Kirkwood": {"country": "United States", "subcountry": "Missouri"}, "Lee'S Summit": {"country": "United States", "subcountry": "Missouri"}, "Lemay": {"country": "United States", "subcountry": "Missouri"}, "Liberty": {"country": "United States", "subcountry": "Missouri"}, "Maryland Heights": {"country": "United States", "subcountry": "Missouri"}, "Mehlville": {"country": "United States", "subcountry": "Missouri"}, "Nixa": {"country": "United States", "subcountry": "Missouri"}, "Overland": {"country": "United States", "subcountry": "Missouri"}, "Ozark": {"country": "United States", "subcountry": "Missouri"}, "Poplar Bluff": {"country": "United States", "subcountry": "Missouri"}, "Raymore": {"country": "United States", "subcountry": "Missouri"}, "Raytown": {"country": "United States", "subcountry": "Missouri"}, "Rolla": {"country": "United States", "subcountry": "Missouri"}, "Saint Joseph": {"country": "United States", "subcountry": "Missouri"}, "St. Louis": {"country": "United States", "subcountry": "Missouri"}, "Saint Peters": {"country": "United States", "subcountry": "Missouri"}, "Sedalia": {"country": "United States", "subcountry": "Missouri"}, "Sikeston": {"country": "United States", "subcountry": "Missouri"}, "Spanish Lake": {"country": "United States", "subcountry": "Missouri"}, "University City": {"country": "United States", "subcountry": "Missouri"}, "Warrensburg": {"country": "United States", "subcountry": "Missouri"}, "Webster Groves": {"country": "United States", "subcountry": "Missouri"}, "Wentzville": {"country": "United States", "subcountry": "Missouri"}, "Wildwood": {"country": "United States", "subcountry": "Missouri"}, "Biloxi": {"country": "United States", "subcountry": "Mississippi"}, "Clarksdale": {"country": "United States", "subcountry": "Mississippi"}, "Gautier": {"country": "United States", "subcountry": "Mississippi"}, "Gulfport": {"country": "United States", "subcountry": "Mississippi"}, "Hattiesburg": {"country": "United States", "subcountry": "Mississippi"}, "Horn Lake": {"country": "United States", "subcountry": "Mississippi"}, "Jackson": {"country": "United States", "subcountry": "Michigan"}, "Meridian": {"country": "United States", "subcountry": "Idaho"}, "Natchez": {"country": "United States", "subcountry": "Mississippi"}, "Ocean Springs": {"country": "United States", "subcountry": "Mississippi"}, "Olive Branch": {"country": "United States", "subcountry": "Mississippi"}, "Pascagoula": {"country": "United States", "subcountry": "Mississippi"}, "Pearl": {"country": "United States", "subcountry": "Mississippi"}, "Ridgeland": {"country": "United States", "subcountry": "Mississippi"}, "Southaven": {"country": "United States", "subcountry": "Mississippi"}, "Starkville": {"country": "United States", "subcountry": "Mississippi"}, "Tupelo": {"country": "United States", "subcountry": "Mississippi"}, "Vicksburg": {"country": "United States", "subcountry": "Mississippi"}, "West Gulfport": {"country": "United States", "subcountry": "Mississippi"}, "Albemarle": {"country": "United States", "subcountry": "North Carolina"}, "Apex": {"country": "United States", "subcountry": "North Carolina"}, "Asheboro": {"country": "United States", "subcountry": "North Carolina"}, "Asheville": {"country": "United States", "subcountry": "North Carolina"}, "Boone": {"country": "United States", "subcountry": "North Carolina"}, "Carrboro": {"country": "United States", "subcountry": "North Carolina"}, "Cary": {"country": "United States", "subcountry": "Illinois"}, "Chapel Hill": {"country": "United States", "subcountry": "North Carolina"}, "Charlotte": {"country": "United States", "subcountry": "North Carolina"}, "Clemmons": {"country": "United States", "subcountry": "North Carolina"}, "Cornelius": {"country": "United States", "subcountry": "North Carolina"}, "Durham": {"country": "United States", "subcountry": "North Carolina"}, "Eden": {"country": "United States", "subcountry": "North Carolina"}, "Elizabeth City": {"country": "United States", "subcountry": "North Carolina"}, "Fuquay-Varina": {"country": "United States", "subcountry": "North Carolina"}, "Garner": {"country": "United States", "subcountry": "North Carolina"}, "Gastonia": {"country": "United States", "subcountry": "North Carolina"}, "Goldsboro": {"country": "United States", "subcountry": "North Carolina"}, "Greensboro": {"country": "United States", "subcountry": "North Carolina"}, "Havelock": {"country": "United States", "subcountry": "North Carolina"}, "Hickory": {"country": "United States", "subcountry": "North Carolina"}, "High Point": {"country": "United States", "subcountry": "North Carolina"}, "Holly Springs": {"country": "United States", "subcountry": "North Carolina"}, "Hope Mills": {"country": "United States", "subcountry": "North Carolina"}, "Huntersville": {"country": "United States", "subcountry": "North Carolina"}, "Indian Trail": {"country": "United States", "subcountry": "North Carolina"}, "Kannapolis": {"country": "United States", "subcountry": "North Carolina"}, "Kernersville": {"country": "United States", "subcountry": "North Carolina"}, "Kinston": {"country": "United States", "subcountry": "North Carolina"}, "Laurinburg": {"country": "United States", "subcountry": "North Carolina"}, "Lenoir": {"country": "United States", "subcountry": "North Carolina"}, "Lumberton": {"country": "United States", "subcountry": "North Carolina"}, "Matthews": {"country": "United States", "subcountry": "North Carolina"}, "Mint Hill": {"country": "United States", "subcountry": "North Carolina"}, "Mooresville": {"country": "United States", "subcountry": "North Carolina"}, "Morganton": {"country": "United States", "subcountry": "North Carolina"}, "Morrisville": {"country": "United States", "subcountry": "North Carolina"}, "New Bern": {"country": "United States", "subcountry": "North Carolina"}, "Raleigh": {"country": "United States", "subcountry": "North Carolina"}, "Roanoke Rapids": {"country": "United States", "subcountry": "North Carolina"}, "Rocky Mount": {"country": "United States", "subcountry": "North Carolina"}, "Shelby": {"country": "United States", "subcountry": "Michigan"}, "Statesville": {"country": "United States", "subcountry": "North Carolina"}, "Wake Forest": {"country": "United States", "subcountry": "North Carolina"}, "West Raleigh": {"country": "United States", "subcountry": "North Carolina"}, "Wilson": {"country": "United States", "subcountry": "North Carolina"}, "Winston-Salem": {"country": "United States", "subcountry": "North Carolina"}, "Atlantic City": {"country": "United States", "subcountry": "New Jersey"}, "Bridgeton": {"country": "United States", "subcountry": "New Jersey"}, "Camden": {"country": "United States", "subcountry": "New Jersey"}, "Cherry Hill": {"country": "United States", "subcountry": "New Jersey"}, "Glassboro": {"country": "United States", "subcountry": "New Jersey"}, "Lindenwold": {"country": "United States", "subcountry": "New Jersey"}, "Maple Shade": {"country": "United States", "subcountry": "New Jersey"}, "Millville": {"country": "United States", "subcountry": "New Jersey"}, "Mount Laurel": {"country": "United States", "subcountry": "New Jersey"}, "Ocean Acres": {"country": "United States", "subcountry": "New Jersey"}, "Pennsauken": {"country": "United States", "subcountry": "New Jersey"}, "Pleasantville": {"country": "United States", "subcountry": "New Jersey"}, "Sicklerville": {"country": "United States", "subcountry": "New Jersey"}, "South Vineland": {"country": "United States", "subcountry": "New Jersey"}, "Toms River": {"country": "United States", "subcountry": "New Jersey"}, "Vineland": {"country": "United States", "subcountry": "New Jersey"}, "Williamstown": {"country": "United States", "subcountry": "New Jersey"}, "Beavercreek": {"country": "United States", "subcountry": "Ohio"}, "Centerville": {"country": "United States", "subcountry": "Utah"}, "Cincinnati": {"country": "United States", "subcountry": "Ohio"}, "Dayton": {"country": "United States", "subcountry": "Ohio"}, "Fairborn": {"country": "United States", "subcountry": "Ohio"}, "Fairfield": {"country": "United States", "subcountry": "California"}, "Grove City": {"country": "United States", "subcountry": "Ohio"}, "Huber Heights": {"country": "United States", "subcountry": "Ohio"}, "Lebanon": {"country": "United States", "subcountry": "Oregon"}, "Mason": {"country": "United States", "subcountry": "Ohio"}, "Miamisburg": {"country": "United States", "subcountry": "Ohio"}, "Norwood": {"country": "United States", "subcountry": "Massachusetts"}, "Pickerington": {"country": "United States", "subcountry": "Ohio"}, "Reynoldsburg": {"country": "United States", "subcountry": "Ohio"}, "Riverside": {"country": "United States", "subcountry": "California"}, "Springboro": {"country": "United States", "subcountry": "Ohio"}, "Trotwood": {"country": "United States", "subcountry": "Ohio"}, "Upper Arlington": {"country": "United States", "subcountry": "Ohio"}, "Vandalia": {"country": "United States", "subcountry": "Ohio"}, "Whitehall": {"country": "United States", "subcountry": "Ohio"}, "Xenia": {"country": "United States", "subcountry": "Ohio"}, "Zanesville": {"country": "United States", "subcountry": "Ohio"}, "Ada": {"country": "United States", "subcountry": "Oklahoma"}, "Altus": {"country": "United States", "subcountry": "Oklahoma"}, "Ardmore": {"country": "United States", "subcountry": "Oklahoma"}, "Bartlesville": {"country": "United States", "subcountry": "Oklahoma"}, "Bethany": {"country": "United States", "subcountry": "Oregon"}, "Bixby": {"country": "United States", "subcountry": "Oklahoma"}, "Broken Arrow": {"country": "United States", "subcountry": "Oklahoma"}, "Chickasha": {"country": "United States", "subcountry": "Oklahoma"}, "Claremore": {"country": "United States", "subcountry": "Oklahoma"}, "Del City": {"country": "United States", "subcountry": "Oklahoma"}, "Durant": {"country": "United States", "subcountry": "Oklahoma"}, "Edmond": {"country": "United States", "subcountry": "Oklahoma"}, "El Reno": {"country": "United States", "subcountry": "Oklahoma"}, "Enid": {"country": "United States", "subcountry": "Oklahoma"}, "Jenks": {"country": "United States", "subcountry": "Oklahoma"}, "Lawton": {"country": "United States", "subcountry": "Oklahoma"}, "Mcalester": {"country": "United States", "subcountry": "Oklahoma"}, "Midwest City": {"country": "United States", "subcountry": "Oklahoma"}, "Moore": {"country": "United States", "subcountry": "Oklahoma"}, "Muskogee": {"country": "United States", "subcountry": "Oklahoma"}, "Mustang": {"country": "United States", "subcountry": "Oklahoma"}, "Norman": {"country": "United States", "subcountry": "Oklahoma"}, "Oklahoma City": {"country": "United States", "subcountry": "Oklahoma"}, "Owasso": {"country": "United States", "subcountry": "Oklahoma"}, "Ponca City": {"country": "United States", "subcountry": "Oklahoma"}, "Sand Springs": {"country": "United States", "subcountry": "Oklahoma"}, "Sapulpa": {"country": "United States", "subcountry": "Oklahoma"}, "Stillwater": {"country": "United States", "subcountry": "Minnesota"}, "Tahlequah": {"country": "United States", "subcountry": "Oklahoma"}, "Tulsa": {"country": "United States", "subcountry": "Oklahoma"}, "Yukon": {"country": "United States", "subcountry": "Oklahoma"}, "Chambersburg": {"country": "United States", "subcountry": "Pennsylvania"}, "Drexel Hill": {"country": "United States", "subcountry": "Pennsylvania"}, "Philadelphia": {"country": "United States", "subcountry": "Pennsylvania"}, "West Chester": {"country": "United States", "subcountry": "Pennsylvania"}, "Aiken": {"country": "United States", "subcountry": "South Carolina"}, "Anderson": {"country": "United States", "subcountry": "Indiana"}, "Easley": {"country": "United States", "subcountry": "South Carolina"}, "Goose Creek": {"country": "United States", "subcountry": "South Carolina"}, "Greer": {"country": "United States", "subcountry": "South Carolina"}, "Hanahan": {"country": "United States", "subcountry": "South Carolina"}, "Hilton Head Island": {"country": "United States", "subcountry": "South Carolina"}, "Mauldin": {"country": "United States", "subcountry": "South Carolina"}, "Mount Pleasant": {"country": "United States", "subcountry": "Michigan"}, "Myrtle Beach": {"country": "United States", "subcountry": "South Carolina"}, "North Augusta": {"country": "United States", "subcountry": "South Carolina"}, "North Charleston": {"country": "United States", "subcountry": "South Carolina"}, "Rock Hill": {"country": "United States", "subcountry": "South Carolina"}, "Seven Oaks": {"country": "United States", "subcountry": "South Carolina"}, "Simpsonville": {"country": "United States", "subcountry": "South Carolina"}, "Socastee": {"country": "United States", "subcountry": "South Carolina"}, "Spartanburg": {"country": "United States", "subcountry": "South Carolina"}, "Summerville": {"country": "United States", "subcountry": "South Carolina"}, "Sumter": {"country": "United States", "subcountry": "South Carolina"}, "Taylors": {"country": "United States", "subcountry": "South Carolina"}, "Wade Hampton": {"country": "United States", "subcountry": "South Carolina"}, "Bartlett": {"country": "United States", "subcountry": "Illinois"}, "Brentwood Estates": {"country": "United States", "subcountry": "Tennessee"}, "Chattanooga": {"country": "United States", "subcountry": "Tennessee"}, "Cleveland": {"country": "United States", "subcountry": "Ohio"}, "Collierville": {"country": "United States", "subcountry": "Tennessee"}, "Cookeville": {"country": "United States", "subcountry": "Tennessee"}, "Dyersburg": {"country": "United States", "subcountry": "Tennessee"}, "East Brainerd": {"country": "United States", "subcountry": "Tennessee"}, "East Chattanooga": {"country": "United States", "subcountry": "Tennessee"}, "East Ridge": {"country": "United States", "subcountry": "Tennessee"}, "Farragut": {"country": "United States", "subcountry": "Tennessee"}, "Franklin": {"country": "United States", "subcountry": "Wisconsin"}, "Gallatin": {"country": "United States", "subcountry": "Tennessee"}, "Goodlettsville": {"country": "United States", "subcountry": "Tennessee"}, "Greeneville": {"country": "United States", "subcountry": "Tennessee"}, "Hendersonville": {"country": "United States", "subcountry": "Tennessee"}, "Johnson City": {"country": "United States", "subcountry": "New York"}, "Kingsport": {"country": "United States", "subcountry": "Tennessee"}, "Knoxville": {"country": "United States", "subcountry": "Tennessee"}, "La Vergne": {"country": "United States", "subcountry": "Tennessee"}, "Maryville": {"country": "United States", "subcountry": "Tennessee"}, "Memphis": {"country": "United States", "subcountry": "Tennessee"}, "Morristown": {"country": "United States", "subcountry": "New Jersey"}, "Mount Juliet": {"country": "United States", "subcountry": "Tennessee"}, "Murfreesboro": {"country": "United States", "subcountry": "Tennessee"}, "Nashville": {"country": "United States", "subcountry": "Tennessee"}, "New South Memphis": {"country": "United States", "subcountry": "Tennessee"}, "Tullahoma": {"country": "United States", "subcountry": "Tennessee"}, "Abilene": {"country": "United States", "subcountry": "Texas"}, "Alamo": {"country": "United States", "subcountry": "Texas"}, "Aldine": {"country": "United States", "subcountry": "Texas"}, "Alice": {"country": "United States", "subcountry": "Texas"}, "Alvin": {"country": "United States", "subcountry": "Texas"}, "Angleton": {"country": "United States", "subcountry": "Texas"}, "Arlington": {"country": "United States", "subcountry": "Washington"}, "Atascocita": {"country": "United States", "subcountry": "Texas"}, "Austin": {"country": "United States", "subcountry": "Minnesota"}, "Balch Springs": {"country": "United States", "subcountry": "Texas"}, "Baytown": {"country": "United States", "subcountry": "Texas"}, "Beaumont": {"country": "United States", "subcountry": "California"}, "Bellaire": {"country": "United States", "subcountry": "Texas"}, "Benbrook": {"country": "United States", "subcountry": "Texas"}, "Brenham": {"country": "United States", "subcountry": "Texas"}, "Brownwood": {"country": "United States", "subcountry": "Texas"}, "Brushy Creek": {"country": "United States", "subcountry": "Texas"}, "Bryan": {"country": "United States", "subcountry": "Texas"}, "Burleson": {"country": "United States", "subcountry": "Texas"}, "Canyon Lake": {"country": "United States", "subcountry": "Texas"}, "Cedar Hill": {"country": "United States", "subcountry": "Texas"}, "Cedar Park": {"country": "United States", "subcountry": "Texas"}, "Channelview": {"country": "United States", "subcountry": "Texas"}, "Cibolo": {"country": "United States", "subcountry": "Texas"}, "Cinco Ranch": {"country": "United States", "subcountry": "Texas"}, "Cleburne": {"country": "United States", "subcountry": "Texas"}, "Cloverleaf": {"country": "United States", "subcountry": "Texas"}, "College Station": {"country": "United States", "subcountry": "Texas"}, "Colleyville": {"country": "United States", "subcountry": "Texas"}, "Conroe": {"country": "United States", "subcountry": "Texas"}, "Converse": {"country": "United States", "subcountry": "Texas"}, "Coppell": {"country": "United States", "subcountry": "Texas"}, "Copperas Cove": {"country": "United States", "subcountry": "Texas"}, "Corinth": {"country": "United States", "subcountry": "Texas"}, "Corpus Christi": {"country": "United States", "subcountry": "Texas"}, "Corsicana": {"country": "United States", "subcountry": "Texas"}, "Cypress": {"country": "United States", "subcountry": "California"}, "Dallas": {"country": "United States", "subcountry": "Texas"}, "Desoto": {"country": "United States", "subcountry": "Texas"}, "Denison": {"country": "United States", "subcountry": "Texas"}, "Denton": {"country": "United States", "subcountry": "Texas"}, "Dickinson": {"country": "United States", "subcountry": "North Dakota"}, "Donna": {"country": "United States", "subcountry": "Texas"}, "Duncanville": {"country": "United States", "subcountry": "Texas"}, "Edinburg": {"country": "United States", "subcountry": "Texas"}, "Euless": {"country": "United States", "subcountry": "Texas"}, "Farmers Branch": {"country": "United States", "subcountry": "Texas"}, "Flower Mound": {"country": "United States", "subcountry": "Texas"}, "Fort Worth": {"country": "United States", "subcountry": "Texas"}, "Friendswood": {"country": "United States", "subcountry": "Texas"}, "Frisco": {"country": "United States", "subcountry": "Texas"}, "Galveston": {"country": "United States", "subcountry": "Texas"}, "Garland": {"country": "United States", "subcountry": "Texas"}, "Gatesville": {"country": "United States", "subcountry": "Texas"}, "Grand Prairie": {"country": "United States", "subcountry": "Texas"}, "Grapevine": {"country": "United States", "subcountry": "Texas"}, "Groves": {"country": "United States", "subcountry": "Texas"}, "Haltom City": {"country": "United States", "subcountry": "Texas"}, "Harker Heights": {"country": "United States", "subcountry": "Texas"}, "Highland Village": {"country": "United States", "subcountry": "Texas"}, "Houston": {"country": "United States", "subcountry": "Texas"}, "Humble": {"country": "United States", "subcountry": "Texas"}, "Hurst": {"country": "United States", "subcountry": "Texas"}, "Irving": {"country": "United States", "subcountry": "Connecticut"}, "West Hartford": {"country": "United States", "subcountry": "Connecticut"}, "West Haven": {"country": "United States", "subcountry": "Connecticut"}, "West Torrington": {"country": "United States", "subcountry": "Connecticut"}, "Westport": {"country": "United States", "subcountry": "Connecticut"}, "Wethersfield": {"country": "United States", "subcountry": "Connecticut"}, "Willimantic": {"country": "United States", "subcountry": "Connecticut"}, "Wilton": {"country": "United States", "subcountry": "Connecticut"}, "Windham": {"country": "United States", "subcountry": "Connecticut"}, "Wolcott": {"country": "United States", "subcountry": "Connecticut"}, "Ames": {"country": "United States", "subcountry": "Iowa"}, "Ankeny": {"country": "United States", "subcountry": "Iowa"}, "Bettendorf": {"country": "United States", "subcountry": "Iowa"}, "Cedar Falls": {"country": "United States", "subcountry": "Iowa"}, "Cedar Rapids": {"country": "United States", "subcountry": "Iowa"}, "Clive": {"country": "United States", "subcountry": "Iowa"}, "Coralville": {"country": "United States", "subcountry": "Iowa"}, "Council Bluffs": {"country": "United States", "subcountry": "Iowa"}, "Davenport": {"country": "United States", "subcountry": "Iowa"}, "Des Moines": {"country": "United States", "subcountry": "Washington"}, "Dubuque": {"country": "United States", "subcountry": "Iowa"}, "Fort Dodge": {"country": "United States", "subcountry": "Iowa"}, "Iowa City": {"country": "United States", "subcountry": "Iowa"}, "Johnston": {"country": "United States", "subcountry": "Iowa"}, "Marshalltown": {"country": "United States", "subcountry": "Iowa"}, "Mason City": {"country": "United States", "subcountry": "Iowa"}, "Muscatine": {"country": "United States", "subcountry": "Iowa"}, "Ottumwa": {"country": "United States", "subcountry": "Iowa"}, "Sioux City": {"country": "United States", "subcountry": "Iowa"}, "Urbandale": {"country": "United States", "subcountry": "Iowa"}, "West Des Moines": {"country": "United States", "subcountry": "Iowa"}, "Addison": {"country": "United States", "subcountry": "Illinois"}, "Algonquin": {"country": "United States", "subcountry": "Illinois"}, "Alsip": {"country": "United States", "subcountry": "Illinois"}, "Arlington Heights": {"country": "United States", "subcountry": "Illinois"}, "Batavia": {"country": "United States", "subcountry": "New York"}, "Bellwood": {"country": "United States", "subcountry": "Illinois"}, "Belvidere": {"country": "United States", "subcountry": "Illinois"}, "Bensenville": {"country": "United States", "subcountry": "Illinois"}, "Berwyn": {"country": "United States", "subcountry": "Illinois"}, "Blue Island": {"country": "United States", "subcountry": "Illinois"}, "Bolingbrook": {"country": "United States", "subcountry": "Illinois"}, "Bourbonnais": {"country": "United States", "subcountry": "Illinois"}, "Bradley": {"country": "United States", "subcountry": "Illinois"}, "Bridgeview": {"country": "United States", "subcountry": "Illinois"}, "Brookfield": {"country": "United States", "subcountry": "Wisconsin"}, "Buffalo Grove": {"country": "United States", "subcountry": "Illinois"}, "Burbank": {"country": "United States", "subcountry": "California"}, "Calumet City": {"country": "United States", "subcountry": "Illinois"}, "Carol Stream": {"country": "United States", "subcountry": "Illinois"}, "Carpentersville": {"country": "United States", "subcountry": "Illinois"}, "Champaign": {"country": "United States", "subcountry": "Illinois"}, "Chicago": {"country": "United States", "subcountry": "Illinois"}, "Chicago Heights": {"country": "United States", "subcountry": "Illinois"}, "Cicero": {"country": "United States", "subcountry": "Illinois"}, "Country Club Hills": {"country": "United States", "subcountry": "Illinois"}, "Crest Hill": {"country": "United States", "subcountry": "Illinois"}, "Crystal Lake": {"country": "United States", "subcountry": "Illinois"}, "Darien": {"country": "United States", "subcountry": "Illinois"}, "Dekalb": {"country": "United States", "subcountry": "Illinois"}, "Deerfield": {"country": "United States", "subcountry": "Illinois"}, "Des Plaines": {"country": "United States", "subcountry": "Illinois"}, "Dixon": {"country": "United States", "subcountry": "California"}, "Dolton": {"country": "United States", "subcountry": "Illinois"}, "Downers Grove": {"country": "United States", "subcountry": "Illinois"}, "East Moline": {"country": "United States", "subcountry": "Illinois"}, "East Peoria": {"country": "United States", "subcountry": "Illinois"}, "Elgin": {"country": "United States", "subcountry": "Illinois"}, "Elk Grove Village": {"country": "United States", "subcountry": "Illinois"}, "Elmhurst": {"country": "United States", "subcountry": "Illinois"}, "Elmwood Park": {"country": "United States", "subcountry": "New Jersey"}, "Evanston": {"country": "United States", "subcountry": "Illinois"}, "Evergreen Park": {"country": "United States", "subcountry": "Illinois"}, "Franklin Park": {"country": "United States", "subcountry": "Illinois"}, "Galesburg": {"country": "United States", "subcountry": "Illinois"}, "Geneva": {"country": "United States", "subcountry": "Illinois"}, "Glen Ellyn": {"country": "United States", "subcountry": "Illinois"}, "Glenview": {"country": "United States", "subcountry": "Illinois"}, "Goodings Grove": {"country": "United States", "subcountry": "Illinois"}, "Grayslake": {"country": "United States", "subcountry": "Illinois"}, "Gurnee": {"country": "United States", "subcountry": "Illinois"}, "Hanover Park": {"country": "United States", "subcountry": "Illinois"}, "Highland Park": {"country": "United States", "subcountry": "Illinois"}, "Hinsdale": {"country": "United States", "subcountry": "Illinois"}, "Hoffman Estates": {"country": "United States", "subcountry": "Illinois"}, "Homer Glen": {"country": "United States", "subcountry": "Illinois"}, "Huntley": {"country": "United States", "subcountry": "Illinois"}, "Joliet": {"country": "United States", "subcountry": "Illinois"}, "Kankakee": {"country": "United States", "subcountry": "Illinois"}, "Lake Forest": {"country": "United States", "subcountry": "Illinois"}, "Lake Zurich": {"country": "United States", "subcountry": "Illinois"}, "Lake In The Hills": {"country": "United States", "subcountry": "Illinois"}, "Lansing": {"country": "United States", "subcountry": "Michigan"}, "Lemont": {"country": "United States", "subcountry": "Illinois"}, "Libertyville": {"country": "United States", "subcountry": "Illinois"}, "Lisle": {"country": "United States", "subcountry": "Illinois"}, "Lockport": {"country": "United States", "subcountry": "New York"}, "Lombard": {"country": "United States", "subcountry": "Illinois"}, "Loves Park": {"country": "United States", "subcountry": "Illinois"}, "Machesney Park": {"country": "United States", "subcountry": "Illinois"}, "Macomb": {"country": "United States", "subcountry": "Illinois"}, "Matteson": {"country": "United States", "subcountry": "Illinois"}, "Maywood": {"country": "United States", "subcountry": "California"}, "Mchenry": {"country": "United States", "subcountry": "Illinois"}, "Melrose Park": {"country": "United States", "subcountry": "Illinois"}, "Mokena": {"country": "United States", "subcountry": "Illinois"}, "Moline": {"country": "United States", "subcountry": "Illinois"}, "Morton": {"country": "United States", "subcountry": "Illinois"}, "Morton Grove": {"country": "United States", "subcountry": "Illinois"}, "Mount Prospect": {"country": "United States", "subcountry": "Illinois"}, "Mundelein": {"country": "United States", "subcountry": "Illinois"}, "Naperville": {"country": "United States", "subcountry": "Illinois"}, "New Lenox": {"country": "United States", "subcountry": "Illinois"}, "Niles": {"country": "United States", "subcountry": "Ohio"}, "Normal": {"country": "United States", "subcountry": "Illinois"}, "North Aurora": {"country": "United States", "subcountry": "Illinois"}, "North Chicago": {"country": "United States", "subcountry": "Illinois"}, "North Peoria": {"country": "United States", "subcountry": "Illinois"}, "Northbrook": {"country": "United States", "subcountry": "Illinois"}, "Oak Forest": {"country": "United States", "subcountry": "Illinois"}, "Oak Lawn": {"country": "United States", "subcountry": "Illinois"}, "Oak Park": {"country": "United States", "subcountry": "Michigan"}, "Orland Park": {"country": "United States", "subcountry": "Illinois"}, "Oswego": {"country": "United States", "subcountry": "New York"}, "Palatine": {"country": "United States", "subcountry": "Illinois"}, "Palos Hills": {"country": "United States", "subcountry": "Illinois"}, "Park Forest": {"country": "United States", "subcountry": "Illinois"}, "Park Ridge": {"country": "United States", "subcountry": "Illinois"}, "Pekin": {"country": "United States", "subcountry": "Illinois"}, "Peoria": {"country": "United States", "subcountry": "Arizona"}, "Prospect Heights": {"country": "United States", "subcountry": "Illinois"}, "Rock Island": {"country": "United States", "subcountry": "Illinois"}, "Rockford": {"country": "United States", "subcountry": "Illinois"}, "Rolling Meadows": {"country": "United States", "subcountry": "Illinois"}, "Romeoville": {"country": "United States", "subcountry": "Illinois"}, "Roselle": {"country": "United States", "subcountry": "New Jersey"}, "Round Lake": {"country": "United States", "subcountry": "Illinois"}, "Round Lake Beach": {"country": "United States", "subcountry": "Illinois"}, "Schaumburg": {"country": "United States", "subcountry": "Illinois"}, "Shorewood": {"country": "United States", "subcountry": "Illinois"}, "Skokie": {"country": "United States", "subcountry": "Illinois"}, "South Elgin": {"country": "United States", "subcountry": "Illinois"}, "South Holland": {"country": "United States", "subcountry": "Illinois"}, "Sterling": {"country": "United States", "subcountry": "Illinois"}, "Streamwood": {"country": "United States", "subcountry": "Illinois"}, "Sycamore": {"country": "United States", "subcountry": "Illinois"}, "Tinley Park": {"country": "United States", "subcountry": "Illinois"}, "Urbana": {"country": "United States", "subcountry": "Illinois"}, "Vernon Hills": {"country": "United States", "subcountry": "Illinois"}, "Villa Park": {"country": "United States", "subcountry": "Illinois"}, "Wasco": {"country": "United States", "subcountry": "California"}, "Waukegan": {"country": "United States", "subcountry": "Illinois"}, "West Chicago": {"country": "United States", "subcountry": "Illinois"}, "Westmont": {"country": "United States", "subcountry": "California"}, "Wheeling": {"country": "United States", "subcountry": "West Virginia"}, "Wilmette": {"country": "United States", "subcountry": "Illinois"}, "Yorkville": {"country": "United States", "subcountry": "Illinois"}, "Zion": {"country": "United States", "subcountry": "Illinois"}, "Crawfordsville": {"country": "United States", "subcountry": "Indiana"}, "Crown Point": {"country": "United States", "subcountry": "Indiana"}, "Dyer": {"country": "United States", "subcountry": "Indiana"}, "East Chicago": {"country": "United States", "subcountry": "Indiana"}, "Elkhart": {"country": "United States", "subcountry": "Indiana"}, "Fort Wayne": {"country": "United States", "subcountry": "Indiana"}, "Gary": {"country": "United States", "subcountry": "Indiana"}, "Goshen": {"country": "United States", "subcountry": "Indiana"}, "Granger": {"country": "United States", "subcountry": "Indiana"}, "Highland": {"country": "United States", "subcountry": "Utah"}, "Huntington": {"country": "United States", "subcountry": "New York"}, "Kokomo": {"country": "United States", "subcountry": "Indiana"}, "Laporte": {"country": "United States", "subcountry": "Indiana"}, "Logansport": {"country": "United States", "subcountry": "Indiana"}, "Merrillville": {"country": "United States", "subcountry": "Indiana"}, "Michigan City": {"country": "United States", "subcountry": "Indiana"}, "Mishawaka": {"country": "United States", "subcountry": "Indiana"}, "Muncie": {"country": "United States", "subcountry": "Indiana"}, "Noblesville": {"country": "United States", "subcountry": "Indiana"}, "Portage": {"country": "United States", "subcountry": "Michigan"}, "Schererville": {"country": "United States", "subcountry": "Indiana"}, "South Bend": {"country": "United States", "subcountry": "Indiana"}, "Valparaiso": {"country": "United States", "subcountry": "Indiana"}, "West Lafayette": {"country": "United States", "subcountry": "Indiana"}, "Westfield": {"country": "United States", "subcountry": "New Jersey"}, "Abington": {"country": "United States", "subcountry": "Massachusetts"}, "Agawam": {"country": "United States", "subcountry": "Massachusetts"}, "Amesbury": {"country": "United States", "subcountry": "Massachusetts"}, "Amherst Center": {"country": "United States", "subcountry": "Massachusetts"}, "Attleboro": {"country": "United States", "subcountry": "Massachusetts"}, "Barnstable": {"country": "United States", "subcountry": "Massachusetts"}, "Belmont": {"country": "United States", "subcountry": "California"}, "Beverly": {"country": "United States", "subcountry": "Massachusetts"}, "Beverly Cove": {"country": "United States", "subcountry": "Massachusetts"}, "Billerica": {"country": "United States", "subcountry": "Massachusetts"}, "Brockton": {"country": "United States", "subcountry": "Massachusetts"}, "Brookline": {"country": "United States", "subcountry": "Massachusetts"}, "Chicopee": {"country": "United States", "subcountry": "Massachusetts"}, "Danvers": {"country": "United States", "subcountry": "Massachusetts"}, "Dedham": {"country": "United States", "subcountry": "Massachusetts"}, "Dracut": {"country": "United States", "subcountry": "Massachusetts"}, "East Longmeadow": {"country": "United States", "subcountry": "Massachusetts"}, "Easthampton": {"country": "United States", "subcountry": "Massachusetts"}, "Everett": {"country": "United States", "subcountry": "Washington"}, "Fairhaven": {"country": "United States", "subcountry": "Massachusetts"}, "Fall River": {"country": "United States", "subcountry": "Massachusetts"}, "Fitchburg": {"country": "United States", "subcountry": "Wisconsin"}, "Framingham": {"country": "United States", "subcountry": "Massachusetts"}, "Framingham Center": {"country": "United States", "subcountry": "Massachusetts"}, "Gloucester": {"country": "United States", "subcountry": "Massachusetts"}, "Grafton": {"country": "United States", "subcountry": "Massachusetts"}, "Haverhill": {"country": "United States", "subcountry": "Massachusetts"}, "Holden": {"country": "United States", "subcountry": "Massachusetts"}, "Holyoke": {"country": "United States", "subcountry": "Massachusetts"}, "Jamaica Plain": {"country": "United States", "subcountry": "Massachusetts"}, "Leominster": {"country": "United States", "subcountry": "Massachusetts"}, "Longmeadow": {"country": "United States", "subcountry": "Massachusetts"}, "Lowell": {"country": "United States", "subcountry": "Massachusetts"}, "Ludlow": {"country": "United States", "subcountry": "Massachusetts"}, "Lynn": {"country": "United States", "subcountry": "Massachusetts"}, "Malden": {"country": "United States", "subcountry": "Massachusetts"}, "Marblehead": {"country": "United States", "subcountry": "Massachusetts"}, "Marlborough": {"country": "United States", "subcountry": "Massachusetts"}, "Medford": {"country": "United States", "subcountry": "Oregon"}, "Melrose": {"country": "United States", "subcountry": "Massachusetts"}, "Methuen": {"country": "United States", "subcountry": "Massachusetts"}, "Milford": {"country": "United States", "subcountry": "Massachusetts"}, "Natick": {"country": "United States", "subcountry": "Massachusetts"}, "Needham": {"country": "United States", "subcountry": "Massachusetts"}, "New Bedford": {"country": "United States", "subcountry": "Massachusetts"}, "Newburyport": {"country": "United States", "subcountry": "Massachusetts"}, "North Chicopee": {"country": "United States", "subcountry": "Massachusetts"}, "Norton": {"country": "Zimbabwe", "subcountry": "Mashonaland West"}, "Palmer": {"country": "United States", "subcountry": "Massachusetts"}, "Peabody": {"country": "United States", "subcountry": "Massachusetts"}, "Pittsfield": {"country": "United States", "subcountry": "Massachusetts"}, "Randolph": {"country": "United States", "subcountry": "New Jersey"}, "Rockland": {"country": "United States", "subcountry": "Massachusetts"}, "Saugus": {"country": "United States", "subcountry": "Massachusetts"}, "Somerset": {"country": "United States", "subcountry": "New Jersey"}, "Somerville": {"country": "United States", "subcountry": "Massachusetts"}, "South Boston": {"country": "United States", "subcountry": "Massachusetts"}, "South Hadley": {"country": "United States", "subcountry": "Massachusetts"}, "South Peabody": {"country": "United States", "subcountry": "Massachusetts"}, "Southbridge": {"country": "United States", "subcountry": "Massachusetts"}, "Stoneham": {"country": "United States", "subcountry": "Massachusetts"}, "Stoughton": {"country": "United States", "subcountry": "Massachusetts"}, "Sudbury": {"country": "United States", "subcountry": "Massachusetts"}, "Swansea": {"country": "United States", "subcountry": "Massachusetts"}, "Taunton": {"country": "United States", "subcountry": "Massachusetts"}, "Tewksbury": {"country": "United States", "subcountry": "Massachusetts"}, "Waltham": {"country": "United States", "subcountry": "Massachusetts"}, "Watertown": {"country": "United States", "subcountry": "Wisconsin"}, "Wellesley": {"country": "United States", "subcountry": "Massachusetts"}, "West Springfield": {"country": "United States", "subcountry": "Massachusetts"}, "Westford": {"country": "United States", "subcountry": "Massachusetts"}, "Winthrop": {"country": "United States", "subcountry": "Massachusetts"}, "Woburn": {"country": "United States", "subcountry": "Massachusetts"}, "Yarmouth": {"country": "United States", "subcountry": "Massachusetts"}, "Biddeford": {"country": "United States", "subcountry": "Maine"}, "Lewiston": {"country": "United States", "subcountry": "Idaho"}, "Portland": {"country": "United States", "subcountry": "Oregon"}, "Saco": {"country": "United States", "subcountry": "Maine"}, "South Portland": {"country": "United States", "subcountry": "Maine"}, "South Portland Gardens": {"country": "United States", "subcountry": "Maine"}, "Waterville": {"country": "United States", "subcountry": "Maine"}, "West Scarborough": {"country": "United States", "subcountry": "Maine"}, "Westbrook": {"country": "United States", "subcountry": "Maine"}, "Adrian": {"country": "United States", "subcountry": "Michigan"}, "Allen Park": {"country": "United States", "subcountry": "Michigan"}, "Allendale": {"country": "United States", "subcountry": "Michigan"}, "Ann Arbor": {"country": "United States", "subcountry": "Michigan"}, "Auburn Hills": {"country": "United States", "subcountry": "Michigan"}, "Battle Creek": {"country": "United States", "subcountry": "Michigan"}, "Bay City": {"country": "United States", "subcountry": "Michigan"}, "Burton": {"country": "United States", "subcountry": "Michigan"}, "Dearborn": {"country": "United States", "subcountry": "Michigan"}, "Dearborn Heights": {"country": "United States", "subcountry": "Michigan"}, "Detroit": {"country": "United States", "subcountry": "Michigan"}, "East Lansing": {"country": "United States", "subcountry": "Michigan"}, "Eastpointe": {"country": "United States", "subcountry": "Michigan"}, "Farmington Hills": {"country": "United States", "subcountry": "Michigan"}, "Flint": {"country": "United States", "subcountry": "Michigan"}, "Forest Hills": {"country": "United States", "subcountry": "Michigan"}, "Garden City": {"country": "United States", "subcountry": "Kansas"}, "Grand Rapids": {"country": "United States", "subcountry": "Michigan"}, "Grandville": {"country": "United States", "subcountry": "Michigan"}, "Grosse Pointe Woods": {"country": "United States", "subcountry": "Michigan"}, "Hamtramck": {"country": "United States", "subcountry": "Michigan"}, "Haslett": {"country": "United States", "subcountry": "Michigan"}, "Hazel Park": {"country": "United States", "subcountry": "Michigan"}, "Holland": {"country": "United States", "subcountry": "Michigan"}, "Holt": {"country": "United States", "subcountry": "Michigan"}, "Iron River": {"country": "United States", "subcountry": "Michigan"}, "Jenison": {"country": "United States", "subcountry": "Michigan"}, "Kalamazoo": {"country": "United States", "subcountry": "Michigan"}, "Kentwood": {"country": "United States", "subcountry": "Michigan"}, "Lincoln Park": {"country": "United States", "subcountry": "Michigan"}, "Livonia": {"country": "United States", "subcountry": "Michigan"}, "Madison Heights": {"country": "United States", "subcountry": "Michigan"}, "Marquette": {"country": "United States", "subcountry": "Michigan"}, "Mount Clemens": {"country": "United States", "subcountry": "Michigan"}, "Muskegon": {"country": "United States", "subcountry": "Michigan"}, "Norton Shores": {"country": "United States", "subcountry": "Michigan"}, "Novi": {"country": "United States", "subcountry": "Michigan"}, "Okemos": {"country": "United States", "subcountry": "Michigan"}, "Owosso": {"country": "United States", "subcountry": "Michigan"}, "Pontiac": {"country": "United States", "subcountry": "Michigan"}, "Port Huron": {"country": "United States", "subcountry": "Michigan"}, "Redford": {"country": "United States", "subcountry": "Michigan"}, "Rochester Hills": {"country": "United States", "subcountry": "Michigan"}, "Romulus": {"country": "United States", "subcountry": "Michigan"}, "Roseville": {"country": "United States", "subcountry": "California"}, "Royal Oak": {"country": "United States", "subcountry": "Michigan"}, "Saginaw": {"country": "United States", "subcountry": "Michigan"}, "Southfield": {"country": "United States", "subcountry": "Michigan"}, "Southgate": {"country": "United States", "subcountry": "Michigan"}, "Saint Clair Shores": {"country": "United States", "subcountry": "Michigan"}, "Sterling Heights": {"country": "United States", "subcountry": "Michigan"}, "Taylor": {"country": "United States", "subcountry": "Michigan"}, "Trenton": {"country": "United States", "subcountry": "New Jersey"}, "Walker": {"country": "United States", "subcountry": "Michigan"}, "Warren": {"country": "United States", "subcountry": "Ohio"}, "Waverly": {"country": "United States", "subcountry": "Michigan"}, "Wayne": {"country": "United States", "subcountry": "Pennsylvania"}, "Westland": {"country": "United States", "subcountry": "Michigan"}, "Wyandotte": {"country": "United States", "subcountry": "Michigan"}, "Wyoming": {"country": "United States", "subcountry": "Michigan"}, "Ypsilanti": {"country": "United States", "subcountry": "Michigan"}, "Albert Lea": {"country": "United States", "subcountry": "Minnesota"}, "Anoka": {"country": "United States", "subcountry": "Minnesota"}, "Apple Valley": {"country": "United States", "subcountry": "California"}, "Blaine": {"country": "United States", "subcountry": "Minnesota"}, "Brooklyn Center": {"country": "United States", "subcountry": "Minnesota"}, "Brooklyn Park": {"country": "United States", "subcountry": "Minnesota"}, "Buffalo": {"country": "United States", "subcountry": "New York"}, "Burnsville": {"country": "United States", "subcountry": "Minnesota"}, "Champlin": {"country": "United States", "subcountry": "Minnesota"}, "Chanhassen": {"country": "United States", "subcountry": "Minnesota"}, "Chaska": {"country": "United States", "subcountry": "Minnesota"}, "Columbia Heights": {"country": "United States", "subcountry": "Minnesota"}, "Coon Rapids": {"country": "United States", "subcountry": "Minnesota"}, "Cottage Grove": {"country": "United States", "subcountry": "Minnesota"}, "Crystal": {"country": "United States", "subcountry": "Minnesota"}, "Eagan": {"country": "United States", "subcountry": "Minnesota"}, "Eden Prairie": {"country": "United States", "subcountry": "Minnesota"}, "Edina": {"country": "United States", "subcountry": "Minnesota"}, "Elk River": {"country": "United States", "subcountry": "Minnesota"}, "Faribault": {"country": "United States", "subcountry": "Minnesota"}, "Fridley": {"country": "United States", "subcountry": "Minnesota"}, "Golden Valley": {"country": "United States", "subcountry": "Minnesota"}, "Ham Lake": {"country": "United States", "subcountry": "Minnesota"}, "Hibbing": {"country": "United States", "subcountry": "Minnesota"}, "Hopkins": {"country": "United States", "subcountry": "Minnesota"}, "Inver Grove Heights": {"country": "United States", "subcountry": "Minnesota"}, "Lakeville": {"country": "United States", "subcountry": "Minnesota"}, "Lino Lakes": {"country": "United States", "subcountry": "Minnesota"}, "Mankato": {"country": "United States", "subcountry": "Minnesota"}, "Maple Grove": {"country": "United States", "subcountry": "Minnesota"}, "Maplewood": {"country": "United States", "subcountry": "New Jersey"}, "Minneapolis": {"country": "United States", "subcountry": "Minnesota"}, "Minnetonka": {"country": "United States", "subcountry": "Minnesota"}, "Minnetonka Mills": {"country": "United States", "subcountry": "Minnesota"}, "Moorhead": {"country": "United States", "subcountry": "Minnesota"}, "New Brighton": {"country": "United States", "subcountry": "Minnesota"}, "New Hope": {"country": "United States", "subcountry": "Minnesota"}, "Northfield": {"country": "United States", "subcountry": "Minnesota"}, "Oakdale": {"country": "United States", "subcountry": "California"}, "Owatonna": {"country": "United States", "subcountry": "Minnesota"}, "Prior Lake": {"country": "United States", "subcountry": "Minnesota"}, "Ramsey": {"country": "United States", "subcountry": "Minnesota"}, "Red Wing": {"country": "United States", "subcountry": "Minnesota"}, "Richfield": {"country": "United States", "subcountry": "Minnesota"}, "Rosemount": {"country": "United States", "subcountry": "Minnesota"}, "Saint Louis Park": {"country": "United States", "subcountry": "Minnesota"}, "Saint Michael": {"country": "United States", "subcountry": "Minnesota"}, "Saint Paul": {"country": "United States", "subcountry": "Minnesota"}, "Sartell": {"country": "United States", "subcountry": "Minnesota"}, "Savage": {"country": "United States", "subcountry": "Minnesota"}, "Shakopee": {"country": "United States", "subcountry": "Minnesota"}, "Shoreview": {"country": "United States", "subcountry": "Minnesota"}, "South Saint Paul": {"country": "United States", "subcountry": "Minnesota"}, "West Coon Rapids": {"country": "United States", "subcountry": "Minnesota"}, "West Saint Paul": {"country": "United States", "subcountry": "Minnesota"}, "White Bear Lake": {"country": "United States", "subcountry": "Minnesota"}, "Willmar": {"country": "United States", "subcountry": "Minnesota"}, "Winona": {"country": "United States", "subcountry": "Minnesota"}, "Woodbury": {"country": "United States", "subcountry": "Minnesota"}, "Kirksville": {"country": "United States", "subcountry": "Missouri"}, "Fargo": {"country": "United States", "subcountry": "North Dakota"}, "Grand Forks": {"country": "United States", "subcountry": "North Dakota"}, "West Fargo": {"country": "United States", "subcountry": "North Dakota"}, "Bellevue": {"country": "United States", "subcountry": "Washington"}, "Fremont": {"country": "United States", "subcountry": "California"}, "Grand Island": {"country": "United States", "subcountry": "Nebraska"}, "Kearney": {"country": "United States", "subcountry": "Nebraska"}, "La Vista": {"country": "United States", "subcountry": "Nebraska"}, "Norfolk": {"country": "United States", "subcountry": "Nebraska"}, "Omaha": {"country": "United States", "subcountry": "Nebraska"}, "Papillion": {"country": "United States", "subcountry": "Nebraska"}, "Derry Village": {"country": "United States", "subcountry": "New Hampshire"}, "East Concord": {"country": "United States", "subcountry": "New Hampshire"}, "Keene": {"country": "United States", "subcountry": "New Hampshire"}, "Laconia": {"country": "United States", "subcountry": "New Hampshire"}, "Merrimack": {"country": "United States", "subcountry": "New Hampshire"}, "Nashua": {"country": "United States", "subcountry": "New Hampshire"}, "Asbury Park": {"country": "United States", "subcountry": "New Jersey"}, "Avenel": {"country": "United States", "subcountry": "New Jersey"}, "Bergenfield": {"country": "United States", "subcountry": "New Jersey"}, "Bloomfield": {"country": "United States", "subcountry": "New Jersey"}, "Carteret": {"country": "United States", "subcountry": "New Jersey"}, "Cliffside Park": {"country": "United States", "subcountry": "New Jersey"}, "Clifton": {"country": "United States", "subcountry": "Colorado"}, "Colonia": {"country": "United States", "subcountry": "New Jersey"}, "Cranford": {"country": "United States", "subcountry": "New Jersey"}, "Dumont": {"country": "United States", "subcountry": "New Jersey"}, "East Brunswick": {"country": "United States", "subcountry": "New Jersey"}, "East Orange": {"country": "United States", "subcountry": "New Jersey"}, "Edison": {"country": "United States", "subcountry": "New Jersey"}, "Elizabeth": {"country": "United States", "subcountry": "New Jersey"}, "Englewood": {"country": "United States", "subcountry": "Colorado"}, "Ewing": {"country": "United States", "subcountry": "New Jersey"}, "Fair Lawn": {"country": "United States", "subcountry": "New Jersey"}, "Fords": {"country": "United States", "subcountry": "New Jersey"}, "Fort Lee": {"country": "United States", "subcountry": "New Jersey"}, "Garfield": {"country": "United States", "subcountry": "New Jersey"}, "Hackensack": {"country": "United States", "subcountry": "New Jersey"}, "Hawthorne": {"country": "United States", "subcountry": "California"}, "Hopatcong": {"country": "United States", "subcountry": "New Jersey"}, "Hopatcong Hills": {"country": "United States", "subcountry": "New Jersey"}, "Irvington": {"country": "United States", "subcountry": "New Jersey"}, "Iselin": {"country": "United States", "subcountry": "New Jersey"}, "Jersey City": {"country": "United States", "subcountry": "New Jersey"}, "Kearny": {"country": "United States", "subcountry": "New Jersey"}, "Lakewood": {"country": "United States", "subcountry": "Washington"}, "Long Branch": {"country": "United States", "subcountry": "New Jersey"}, "Lyndhurst": {"country": "United States", "subcountry": "New Jersey"}, "Marlboro": {"country": "United States", "subcountry": "New Jersey"}, "Montclair": {"country": "United States", "subcountry": "California"}, "New Brunswick": {"country": "United States", "subcountry": "New Jersey"}, "New Milford": {"country": "United States", "subcountry": "New Jersey"}, "North Arlington": {"country": "United States", "subcountry": "New Jersey"}, "North Bergen": {"country": "United States", "subcountry": "New Jersey"}, "North Plainfield": {"country": "United States", "subcountry": "New Jersey"}, "Nutley": {"country": "United States", "subcountry": "New Jersey"}, "Old Bridge": {"country": "United States", "subcountry": "New Jersey"}, "Palisades Park": {"country": "United States", "subcountry": "New Jersey"}, "Paramus": {"country": "United States", "subcountry": "New Jersey"}, "Parsippany": {"country": "United States", "subcountry": "New Jersey"}, "Passaic": {"country": "United States", "subcountry": "New Jersey"}, "Paterson": {"country": "United States", "subcountry": "New Jersey"}, "Perth Amboy": {"country": "United States", "subcountry": "New Jersey"}, "Piscataway": {"country": "United States", "subcountry": "New Jersey"}, "Point Pleasant": {"country": "United States", "subcountry": "New Jersey"}, "Rahway": {"country": "United States", "subcountry": "New Jersey"}, "Ridgewood": {"country": "United States", "subcountry": "New Jersey"}, "Rutherford": {"country": "United States", "subcountry": "New Jersey"}, "Sayreville": {"country": "United States", "subcountry": "New Jersey"}, "Sayreville Junction": {"country": "United States", "subcountry": "New Jersey"}, "Scotch Plains": {"country": "United States", "subcountry": "New Jersey"}, "Secaucus": {"country": "United States", "subcountry": "New Jersey"}, "South Old Bridge": {"country": "United States", "subcountry": "New Jersey"}, "South Orange": {"country": "United States", "subcountry": "New Jersey"}, "South Plainfield": {"country": "United States", "subcountry": "New Jersey"}, "South River": {"country": "United States", "subcountry": "New Jersey"}, "Summit": {"country": "United States", "subcountry": "New Jersey"}, "Teaneck": {"country": "United States", "subcountry": "New Jersey"}, "Tinton Falls": {"country": "United States", "subcountry": "New Jersey"}, "Union": {"country": "United States", "subcountry": "New Jersey"}, "West Milford": {"country": "United States", "subcountry": "New Jersey"}, "West New York": {"country": "United States", "subcountry": "New Jersey"}, "West Orange": {"country": "United States", "subcountry": "New Jersey"}, "Willingboro": {"country": "United States", "subcountry": "New Jersey"}, "Woodbridge": {"country": "United States", "subcountry": "New Jersey"}, "Wyckoff": {"country": "United States", "subcountry": "New Jersey"}, "Amherst": {"country": "United States", "subcountry": "New York"}, "Baldwin": {"country": "United States", "subcountry": "Pennsylvania"}, "Bay Shore": {"country": "United States", "subcountry": "New York"}, "Beacon": {"country": "United States", "subcountry": "New York"}, "Bellmore": {"country": "United States", "subcountry": "New York"}, "Bensonhurst": {"country": "United States", "subcountry": "New York"}, "Bethpage": {"country": "United States", "subcountry": "New York"}, "Binghamton": {"country": "United States", "subcountry": "New York"}, "The Bronx": {"country": "United States", "subcountry": "New York"}, "Brooklyn": {"country": "United States", "subcountry": "New York"}, "Centereach": {"country": "United States", "subcountry": "New York"}, "Central Islip": {"country": "United States", "subcountry": "New York"}, "Cheektowaga": {"country": "United States", "subcountry": "New York"}, "Cohoes": {"country": "United States", "subcountry": "New York"}, "Commack": {"country": "United States", "subcountry": "New York"}, "Coney Island": {"country": "United States", "subcountry": "New York"}, "Copiague": {"country": "United States", "subcountry": "New York"}, "Coram": {"country": "United States", "subcountry": "New York"}, "Cortland": {"country": "United States", "subcountry": "New York"}, "Depew": {"country": "United States", "subcountry": "New York"}, "Dix Hills": {"country": "United States", "subcountry": "New York"}, "East Meadow": {"country": "United States", "subcountry": "New York"}, "East Massapequa": {"country": "United States", "subcountry": "New York"}, "East New York": {"country": "United States", "subcountry": "New York"}, "East Northport": {"country": "United States", "subcountry": "New York"}, "East Patchogue": {"country": "United States", "subcountry": "New York"}, "East Setauket": {"country": "United States", "subcountry": "New York"}, "Eastchester": {"country": "United States", "subcountry": "New York"}, "Eggertsville": {"country": "United States", "subcountry": "New York"}, "Elmira": {"country": "United States", "subcountry": "New York"}, "Elmont": {"country": "United States", "subcountry": "New York"}, "Farmingville": {"country": "United States", "subcountry": "New York"}, "Floral Park": {"country": "United States", "subcountry": "New York"}, "Franklin Square": {"country": "United States", "subcountry": "New York"}, "Glen Cove": {"country": "United States", "subcountry": "New York"}, "Gloversville": {"country": "United States", "subcountry": "New York"}, "Greenburgh": {"country": "United States", "subcountry": "New York"}, "Harrison": {"country": "United States", "subcountry": "New York"}, "Hauppauge": {"country": "United States", "subcountry": "New York"}, "Hempstead": {"country": "United States", "subcountry": "New York"}, "Hicksville": {"country": "United States", "subcountry": "New York"}, "Holbrook": {"country": "United States", "subcountry": "New York"}, "Holtsville": {"country": "United States", "subcountry": "New York"}, "Huntington Station": {"country": "United States", "subcountry": "New York"}, "Irondequoit": {"country": "United States", "subcountry": "New York"}, "Islip": {"country": "United States", "subcountry": "New York"}, "Ithaca": {"country": "United States", "subcountry": "New York"}, "Jamaica": {"country": "United States", "subcountry": "New York"}, "Kenmore": {"country": "United States", "subcountry": "Washington"}, "Kings Park": {"country": "United States", "subcountry": "New York"}, "Kiryas Joel": {"country": "United States", "subcountry": "New York"}, "Lackawanna": {"country": "United States", "subcountry": "New York"}, "Lake Ronkonkoma": {"country": "United States", "subcountry": "New York"}, "Lindenhurst": {"country": "United States", "subcountry": "New York"}, "Long Beach": {"country": "United States", "subcountry": "California"}, "Long Island City": {"country": "United States", "subcountry": "New York"}, "Lynbrook": {"country": "United States", "subcountry": "New York"}, "Mamaroneck": {"country": "United States", "subcountry": "New York"}, "Massapequa": {"country": "United States", "subcountry": "New York"}, "Massapequa Park": {"country": "United States", "subcountry": "New York"}, "Mastic": {"country": "United States", "subcountry": "New York"}, "Melville": {"country": "United States", "subcountry": "New York"}, "Merrick": {"country": "United States", "subcountry": "New York"}, "Mineola": {"country": "United States", "subcountry": "New York"}, "Monsey": {"country": "United States", "subcountry": "New York"}, "Nanuet": {"country": "United States", "subcountry": "New York"}, "New City": {"country": "United States", "subcountry": "New York"}, "New Rochelle": {"country": "United States", "subcountry": "New York"}, "New York City": {"country": "United States", "subcountry": "New York"}, "Newburgh": {"country": "United States", "subcountry": "New York"}, "North Amityville": {"country": "United States", "subcountry": "New York"}, "North Babylon": {"country": "United States", "subcountry": "New York"}, "North Bay Shore": {"country": "United States", "subcountry": "New York"}, "North Bellmore": {"country": "United States", "subcountry": "New York"}, "North Massapequa": {"country": "United States", "subcountry": "New York"}, "North Tonawanda": {"country": "United States", "subcountry": "New York"}, "North Valley Stream": {"country": "United States", "subcountry": "New York"}, "Oceanside": {"country": "United States", "subcountry": "California"}, "Ossining": {"country": "United States", "subcountry": "New York"}, "Pearl River": {"country": "United States", "subcountry": "New York"}, "Peekskill": {"country": "United States", "subcountry": "New York"}, "Plainview": {"country": "United States", "subcountry": "Texas"}, "Plattsburgh": {"country": "United States", "subcountry": "New York"}, "Port Chester": {"country": "United States", "subcountry": "New York"}, "Port Washington": {"country": "United States", "subcountry": "New York"}, "Poughkeepsie": {"country": "United States", "subcountry": "New York"}, "Borough Of Queens": {"country": "United States", "subcountry": "New York"}, "Rockville Centre": {"country": "United States", "subcountry": "New York"}, "Ronkonkoma": {"country": "United States", "subcountry": "New York"}, "Roosevelt": {"country": "United States", "subcountry": "New York"}, "Rye": {"country": "United States", "subcountry": "New York"}, "Saratoga Springs": {"country": "United States", "subcountry": "Utah"}, "Sayville": {"country": "United States", "subcountry": "New York"}, "Scarsdale": {"country": "United States", "subcountry": "New York"}, "Schenectady": {"country": "United States", "subcountry": "New York"}, "Selden": {"country": "United States", "subcountry": "New York"}, "Smithtown": {"country": "United States", "subcountry": "New York"}, "Spring Valley": {"country": "United States", "subcountry": "Nevada"}, "Staten Island": {"country": "United States", "subcountry": "New York"}, "Syosset": {"country": "United States", "subcountry": "New York"}, "Syracuse": {"country": "United States", "subcountry": "Utah"}, "Tonawanda": {"country": "United States", "subcountry": "New York"}, "Uniondale": {"country": "United States", "subcountry": "New York"}, "Utica": {"country": "United States", "subcountry": "New York"}, "Valley Stream": {"country": "United States", "subcountry": "New York"}, "Wantagh": {"country": "United States", "subcountry": "New York"}, "West Albany": {"country": "United States", "subcountry": "New York"}, "West Babylon": {"country": "United States", "subcountry": "New York"}, "West Hempstead": {"country": "United States", "subcountry": "New York"}, "West Islip": {"country": "United States", "subcountry": "New York"}, "West Seneca": {"country": "United States", "subcountry": "New York"}, "Westbury": {"country": "United States", "subcountry": "New York"}, "White Plains": {"country": "United States", "subcountry": "New York"}, "Woodmere": {"country": "United States", "subcountry": "New York"}, "Yonkers": {"country": "United States", "subcountry": "New York"}, "Akron": {"country": "United States", "subcountry": "Ohio"}, "Alliance": {"country": "United States", "subcountry": "Ohio"}, "Ashtabula": {"country": "United States", "subcountry": "Ohio"}, "Austintown": {"country": "United States", "subcountry": "Ohio"}, "Avon Center": {"country": "United States", "subcountry": "Ohio"}, "Avon Lake": {"country": "United States", "subcountry": "Ohio"}, "Barberton": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Bay Village": {"country": "United States", "subcountry": "Ohio"}, "Berea": {"country": "United States", "subcountry": "Ohio"}, "Boardman": {"country": "United States", "subcountry": "Ohio"}, "Broadview Heights": {"country": "United States", "subcountry": "Ohio"}, "Brook Park": {"country": "United States", "subcountry": "Ohio"}, "Cuyahoga Falls": {"country": "United States", "subcountry": "Ohio"}, "Defiance": {"country": "United States", "subcountry": "Ohio"}, "Delaware": {"country": "United States", "subcountry": "Ohio"}, "East Cleveland": {"country": "United States", "subcountry": "Ohio"}, "Eastlake": {"country": "United States", "subcountry": "Ohio"}, "Elyria": {"country": "United States", "subcountry": "Ohio"}, "Euclid": {"country": "United States", "subcountry": "Ohio"}, "Fairview Park": {"country": "United States", "subcountry": "Ohio"}, "Findlay": {"country": "United States", "subcountry": "Ohio"}, "Gahanna": {"country": "United States", "subcountry": "Ohio"}, "Garfield Heights": {"country": "United States", "subcountry": "Ohio"}, "Green": {"country": "United States", "subcountry": "Ohio"}, "Hilliard": {"country": "United States", "subcountry": "Ohio"}, "Hudson": {"country": "United States", "subcountry": "Ohio"}, "Kent": {"country": "United States", "subcountry": "Washington"}, "Lorain": {"country": "United States", "subcountry": "Ohio"}, "Maple Heights": {"country": "United States", "subcountry": "Ohio"}, "Marysville": {"country": "United States", "subcountry": "Washington"}, "Massillon": {"country": "United States", "subcountry": "Ohio"}, "Mayfield Heights": {"country": "United States", "subcountry": "Ohio"}, "Mentor": {"country": "United States", "subcountry": "Ohio"}, "Middleburg Heights": {"country": "United States", "subcountry": "Ohio"}, "New Philadelphia": {"country": "United States", "subcountry": "Ohio"}, "North Canton": {"country": "United States", "subcountry": "Ohio"}, "North Olmsted": {"country": "United States", "subcountry": "Ohio"}, "North Ridgeville": {"country": "United States", "subcountry": "Ohio"}, "North Royalton": {"country": "United States", "subcountry": "Ohio"}, "Norwalk": {"country": "United States", "subcountry": "California"}, "Oregon": {"country": "United States", "subcountry": "Ohio"}, "Painesville": {"country": "United States", "subcountry": "Ohio"}, "Parma Heights": {"country": "United States", "subcountry": "Ohio"}, "Perrysburg": {"country": "United States", "subcountry": "Ohio"}, "Piqua": {"country": "United States", "subcountry": "Ohio"}, "Rocky River": {"country": "United States", "subcountry": "Ohio"}, "Sandusky": {"country": "United States", "subcountry": "Ohio"}, "Shaker Heights": {"country": "United States", "subcountry": "Ohio"}, "Sidney": {"country": "United States", "subcountry": "Ohio"}, "Solon": {"country": "United States", "subcountry": "Ohio"}, "South Euclid": {"country": "United States", "subcountry": "Ohio"}, "Steubenville": {"country": "United States", "subcountry": "Ohio"}, "Stow": {"country": "United States", "subcountry": "Ohio"}, "Streetsboro": {"country": "United States", "subcountry": "Ohio"}, "Strongsville": {"country": "United States", "subcountry": "Ohio"}, "Sylvania": {"country": "United States", "subcountry": "Ohio"}, "Tallmadge": {"country": "United States", "subcountry": "Ohio"}, "Tiffin": {"country": "United States", "subcountry": "Ohio"}, "Twinsburg": {"country": "United States", "subcountry": "Ohio"}, "Wadsworth": {"country": "United States", "subcountry": "Ohio"}, "Westerville": {"country": "United States", "subcountry": "Ohio"}, "Westlake": {"country": "United States", "subcountry": "Ohio"}, "Willoughby": {"country": "United States", "subcountry": "Ohio"}, "Wooster": {"country": "United States", "subcountry": "Ohio"}, "Youngstown": {"country": "United States", "subcountry": "Ohio"}, "Allentown": {"country": "United States", "subcountry": "Pennsylvania"}, "Allison Park": {"country": "United States", "subcountry": "Pennsylvania"}, "Altoona": {"country": "United States", "subcountry": "Pennsylvania"}, "Back Mountain": {"country": "United States", "subcountry": "Pennsylvania"}, "Bethel Park": {"country": "United States", "subcountry": "Pennsylvania"}, "Erie": {"country": "United States", "subcountry": "Colorado"}, "Harrisburg": {"country": "United States", "subcountry": "Pennsylvania"}, "Hazleton": {"country": "United States", "subcountry": "Pennsylvania"}, "Hermitage": {"country": "United States", "subcountry": "Pennsylvania"}, "Johnstown": {"country": "United States", "subcountry": "Pennsylvania"}, "King Of Prussia": {"country": "United States", "subcountry": "Pennsylvania"}, "Lansdale": {"country": "United States", "subcountry": "Pennsylvania"}, "Limerick": {"country": "United States", "subcountry": "Pennsylvania"}, "Mckeesport": {"country": "United States", "subcountry": "Pennsylvania"}, "Monroeville": {"country": "United States", "subcountry": "Pennsylvania"}, "Mount Lebanon": {"country": "United States", "subcountry": "Pennsylvania"}, "Mountain Top": {"country": "United States", "subcountry": "Pennsylvania"}, "Murrysville": {"country": "United States", "subcountry": "Pennsylvania"}, "Norristown": {"country": "United States", "subcountry": "Pennsylvania"}, "Penn Hills": {"country": "United States", "subcountry": "Pennsylvania"}, "Phoenixville": {"country": "United States", "subcountry": "Pennsylvania"}, "Pittsburgh": {"country": "United States", "subcountry": "Pennsylvania"}, "Plum": {"country": "United States", "subcountry": "Pennsylvania"}, "Pottstown": {"country": "United States", "subcountry": "Pennsylvania"}, "Radnor": {"country": "United States", "subcountry": "Pennsylvania"}, "Scranton": {"country": "United States", "subcountry": "Pennsylvania"}, "State College": {"country": "United States", "subcountry": "Pennsylvania"}, "Upper Saint Clair": {"country": "United States", "subcountry": "Pennsylvania"}, "West Mifflin": {"country": "United States", "subcountry": "Pennsylvania"}, "Whitehall Township": {"country": "United States", "subcountry": "Pennsylvania"}, "Wilkes-Barre": {"country": "United States", "subcountry": "Pennsylvania"}, "Wilkinsburg": {"country": "United States", "subcountry": "Pennsylvania"}, "Williamsport": {"country": "United States", "subcountry": "Pennsylvania"}, "Willow Grove": {"country": "United States", "subcountry": "Pennsylvania"}, "Barrington": {"country": "United States", "subcountry": "Rhode Island"}, "Central Falls": {"country": "United States", "subcountry": "Rhode Island"}, "Coventry": {"country": "United States", "subcountry": "Rhode Island"}, "Cranston": {"country": "United States", "subcountry": "Rhode Island"}, "East Providence": {"country": "United States", "subcountry": "Rhode Island"}, "North Kingstown": {"country": "United States", "subcountry": "Rhode Island"}, "North Providence": {"country": "United States", "subcountry": "Rhode Island"}, "Pawtucket": {"country": "United States", "subcountry": "Rhode Island"}, "Providence": {"country": "United States", "subcountry": "Rhode Island"}, "Smithfield": {"country": "United States", "subcountry": "Rhode Island"}, "West Warwick": {"country": "United States", "subcountry": "Rhode Island"}, "Westerly": {"country": "United States", "subcountry": "Rhode Island"}, "Woonsocket": {"country": "United States", "subcountry": "Rhode Island"}, "Brookings": {"country": "United States", "subcountry": "South Dakota"}, "Mitchell": {"country": "United States", "subcountry": "South Dakota"}, "Sioux Falls": {"country": "United States", "subcountry": "South Dakota"}, "Colchester": {"country": "United States", "subcountry": "Vermont"}, "Rutland": {"country": "United States", "subcountry": "Vermont"}, "South Burlington": {"country": "United States", "subcountry": "Vermont"}, "Appleton": {"country": "United States", "subcountry": "Wisconsin"}, "Ashwaubenon": {"country": "United States", "subcountry": "Wisconsin"}, "Beaver Dam": {"country": "United States", "subcountry": "Wisconsin"}, "Beloit": {"country": "United States", "subcountry": "Wisconsin"}, "Caledonia": {"country": "United States", "subcountry": "Wisconsin"}, "Cudahy": {"country": "United States", "subcountry": "California"}, "De Pere": {"country": "United States", "subcountry": "Wisconsin"}, "Eau Claire": {"country": "United States", "subcountry": "Wisconsin"}, "Fond Du Lac": {"country": "United States", "subcountry": "Wisconsin"}, "Green Bay": {"country": "United States", "subcountry": "Wisconsin"}, "Howard": {"country": "United States", "subcountry": "Wisconsin"}, "Janesville": {"country": "United States", "subcountry": "Wisconsin"}, "Kaukauna": {"country": "United States", "subcountry": "Wisconsin"}, "Kenosha": {"country": "United States", "subcountry": "Wisconsin"}, "La Crosse": {"country": "United States", "subcountry": "Wisconsin"}, "Manitowoc": {"country": "United States", "subcountry": "Wisconsin"}, "Marshfield": {"country": "United States", "subcountry": "Wisconsin"}, "Menasha": {"country": "United States", "subcountry": "Wisconsin"}, "Menomonee Falls": {"country": "United States", "subcountry": "Wisconsin"}, "Menomonie": {"country": "United States", "subcountry": "Wisconsin"}, "Mequon": {"country": "United States", "subcountry": "Wisconsin"}, "Milwaukee": {"country": "United States", "subcountry": "Wisconsin"}, "Muskego": {"country": "United States", "subcountry": "Wisconsin"}, "Neenah": {"country": "United States", "subcountry": "Wisconsin"}, "New Berlin": {"country": "United States", "subcountry": "Wisconsin"}, "North La Crosse": {"country": "United States", "subcountry": "Wisconsin"}, "Oak Creek": {"country": "United States", "subcountry": "Wisconsin"}, "Oconomowoc": {"country": "United States", "subcountry": "Wisconsin"}, "Onalaska": {"country": "United States", "subcountry": "Wisconsin"}, "Oshkosh": {"country": "United States", "subcountry": "Wisconsin"}, "Pleasant Prairie": {"country": "United States", "subcountry": "Wisconsin"}, "Racine": {"country": "United States", "subcountry": "Wisconsin"}, "Sheboygan": {"country": "United States", "subcountry": "Wisconsin"}, "South Milwaukee": {"country": "United States", "subcountry": "Wisconsin"}, "Stevens Point": {"country": "United States", "subcountry": "Wisconsin"}, "Sun Prairie": {"country": "United States", "subcountry": "Wisconsin"}, "Superior": {"country": "United States", "subcountry": "Wisconsin"}, "Waukesha": {"country": "United States", "subcountry": "Wisconsin"}, "Wausau": {"country": "United States", "subcountry": "Wisconsin"}, "Wauwatosa": {"country": "United States", "subcountry": "Wisconsin"}, "West Allis": {"country": "United States", "subcountry": "Wisconsin"}, "West Bend": {"country": "United States", "subcountry": "Wisconsin"}, "Wisconsin Rapids": {"country": "United States", "subcountry": "Wisconsin"}, "Weirton": {"country": "United States", "subcountry": "West Virginia"}, "Weirton Heights": {"country": "United States", "subcountry": "West Virginia"}, "Ansonia": {"country": "United States", "subcountry": "Connecticut"}, "Bridgeport": {"country": "United States", "subcountry": "Connecticut"}, "Branford": {"country": "United States", "subcountry": "Connecticut"}, "Cheshire": {"country": "United States", "subcountry": "Connecticut"}, "Fillmore": {"country": "United States", "subcountry": "California"}, "Buckeye": {"country": "United States", "subcountry": "Arizona"}, "Bullhead City": {"country": "United States", "subcountry": "Arizona"}, "Casa Grande": {"country": "United States", "subcountry": "Arizona"}, "Casas Adobes": {"country": "United States", "subcountry": "Arizona"}, "Catalina Foothills": {"country": "United States", "subcountry": "Arizona"}, "Chandler": {"country": "United States", "subcountry": "Arizona"}, "Drexel Heights": {"country": "United States", "subcountry": "Arizona"}, "El Mirage": {"country": "United States", "subcountry": "Arizona"}, "Eloy": {"country": "United States", "subcountry": "Arizona"}, "Flagstaff": {"country": "United States", "subcountry": "Arizona"}, "Flowing Wells": {"country": "United States", "subcountry": "Arizona"}, "Fortuna Foothills": {"country": "United States", "subcountry": "Arizona"}, "Fountain Hills": {"country": "United States", "subcountry": "Arizona"}, "Gilbert": {"country": "United States", "subcountry": "Arizona"}, "Glendale": {"country": "United States", "subcountry": "California"}, "Goodyear": {"country": "United States", "subcountry": "Arizona"}, "Green Valley": {"country": "United States", "subcountry": "Arizona"}, "Kingman": {"country": "United States", "subcountry": "Arizona"}, "Lake Havasu City": {"country": "United States", "subcountry": "Arizona"}, "Marana": {"country": "United States", "subcountry": "Arizona"}, "Maricopa": {"country": "United States", "subcountry": "Arizona"}, "Mesa": {"country": "United States", "subcountry": "Arizona"}, "Oro Valley": {"country": "United States", "subcountry": "Arizona"}, "Payson": {"country": "United States", "subcountry": "Utah"}, "Phoenix": {"country": "United States", "subcountry": "Arizona"}, "Prescott": {"country": "United States", "subcountry": "Arizona"}, "Prescott Valley": {"country": "United States", "subcountry": "Arizona"}, "Queen Creek": {"country": "United States", "subcountry": "Arizona"}, "Rio Rico": {"country": "United States", "subcountry": "Arizona"}, "Sahuarita": {"country": "United States", "subcountry": "Arizona"}, "Scottsdale": {"country": "United States", "subcountry": "Arizona"}, "Sierra Vista": {"country": "United States", "subcountry": "Arizona"}, "Sun City": {"country": "United States", "subcountry": "California"}, "Sun City West": {"country": "United States", "subcountry": "Arizona"}, "Surprise": {"country": "United States", "subcountry": "Arizona"}, "Tanque Verde": {"country": "United States", "subcountry": "Arizona"}, "Tempe": {"country": "United States", "subcountry": "Arizona"}, "Tempe Junction": {"country": "United States", "subcountry": "Arizona"}, "Tucson": {"country": "United States", "subcountry": "Arizona"}, "Yuma": {"country": "United States", "subcountry": "Arizona"}, "Adelanto": {"country": "United States", "subcountry": "California"}, "Agoura": {"country": "United States", "subcountry": "California"}, "Agoura Hills": {"country": "United States", "subcountry": "California"}, "Alameda": {"country": "United States", "subcountry": "California"}, "Alhambra": {"country": "United States", "subcountry": "California"}, "Aliso Viejo": {"country": "United States", "subcountry": "California"}, "Altadena": {"country": "United States", "subcountry": "California"}, "Alum Rock": {"country": "United States", "subcountry": "California"}, "American Canyon": {"country": "United States", "subcountry": "California"}, "Anaheim": {"country": "United States", "subcountry": "California"}, "Antelope": {"country": "United States", "subcountry": "California"}, "Antioch": {"country": "United States", "subcountry": "California"}, "Arcadia": {"country": "United States", "subcountry": "California"}, "Arroyo Grande": {"country": "United States", "subcountry": "California"}, "Artesia": {"country": "United States", "subcountry": "California"}, "Arvin": {"country": "United States", "subcountry": "California"}, "Atascadero": {"country": "United States", "subcountry": "California"}, "Atwater": {"country": "United States", "subcountry": "California"}, "Avenal": {"country": "United States", "subcountry": "California"}, "Avocado Heights": {"country": "United States", "subcountry": "California"}, "Azusa": {"country": "United States", "subcountry": "California"}, "Bakersfield": {"country": "United States", "subcountry": "California"}, "Baldwin Park": {"country": "United States", "subcountry": "California"}, "Banning": {"country": "United States", "subcountry": "California"}, "Barstow": {"country": "United States", "subcountry": "California"}, "Barstow Heights": {"country": "United States", "subcountry": "California"}, "Bay Point": {"country": "United States", "subcountry": "California"}, "Bell": {"country": "United States", "subcountry": "California"}, "Bell Gardens": {"country": "United States", "subcountry": "California"}, "Bellflower": {"country": "United States", "subcountry": "California"}, "Benicia": {"country": "United States", "subcountry": "California"}, "Berkeley": {"country": "United States", "subcountry": "California"}, "Beverly Hills": {"country": "United States", "subcountry": "California"}, "Blythe": {"country": "United States", "subcountry": "California"}, "Bostonia": {"country": "United States", "subcountry": "California"}, "Boyle Heights": {"country": "United States", "subcountry": "California"}, "Brawley": {"country": "United States", "subcountry": "California"}, "Brea": {"country": "United States", "subcountry": "California"}, "Buena Park": {"country": "United States", "subcountry": "California"}, "Burlingame": {"country": "United States", "subcountry": "California"}, "Calabasas": {"country": "United States", "subcountry": "California"}, "Calexico": {"country": "United States", "subcountry": "California"}, "Camarillo": {"country": "United States", "subcountry": "California"}, "Cameron Park": {"country": "United States", "subcountry": "California"}, "Campbell": {"country": "United States", "subcountry": "California"}, "Canoga Park": {"country": "United States", "subcountry": "California"}, "Carlsbad": {"country": "United States", "subcountry": "New Mexico"}, "Carmichael": {"country": "United States", "subcountry": "California"}, "Carson": {"country": "United States", "subcountry": "California"}, "Castaic": {"country": "United States", "subcountry": "California"}, "Castro Valley": {"country": "United States", "subcountry": "California"}, "Cathedral City": {"country": "United States", "subcountry": "California"}, "Cerritos": {"country": "United States", "subcountry": "California"}, "Chatsworth": {"country": "United States", "subcountry": "California"}, "Chico": {"country": "United States", "subcountry": "California"}, "Chino Hills": {"country": "United States", "subcountry": "California"}, "Chowchilla": {"country": "United States", "subcountry": "California"}, "Chula Vista": {"country": "United States", "subcountry": "California"}, "Citrus Heights": {"country": "United States", "subcountry": "California"}, "Claremont": {"country": "United States", "subcountry": "California"}, "Clearlake": {"country": "United States", "subcountry": "California"}, "Clovis": {"country": "United States", "subcountry": "New Mexico"}, "Coachella": {"country": "United States", "subcountry": "California"}, "Colton": {"country": "United States", "subcountry": "California"}, "Compton": {"country": "United States", "subcountry": "California"}, "Corcoran": {"country": "United States", "subcountry": "California"}, "Corona": {"country": "United States", "subcountry": "California"}, "Coronado": {"country": "United States", "subcountry": "California"}, "Costa Mesa": {"country": "United States", "subcountry": "California"}, "Covina": {"country": "United States", "subcountry": "California"}, "Culver City": {"country": "United States", "subcountry": "California"}, "Cupertino": {"country": "United States", "subcountry": "California"}, "Daly City": {"country": "United States", "subcountry": "California"}, "Dana Point": {"country": "United States", "subcountry": "California"}, "Davis": {"country": "United States", "subcountry": "California"}, "Delano": {"country": "United States", "subcountry": "California"}, "Desert Hot Springs": {"country": "United States", "subcountry": "California"}, "Diamond Bar": {"country": "United States", "subcountry": "California"}, "Dinuba": {"country": "United States", "subcountry": "California"}, "Downey": {"country": "United States", "subcountry": "California"}, "Duarte": {"country": "United States", "subcountry": "California"}, "East Rancho Dominguez": {"country": "United States", "subcountry": "California"}, "East Hemet": {"country": "United States", "subcountry": "California"}, "East Los Angeles": {"country": "United States", "subcountry": "California"}, "East Palo Alto": {"country": "United States", "subcountry": "California"}, "El Cajon": {"country": "United States", "subcountry": "California"}, "El Centro": {"country": "United States", "subcountry": "California"}, "El Dorado Hills": {"country": "United States", "subcountry": "California"}, "El Segundo": {"country": "United States", "subcountry": "California"}, "Elk Grove": {"country": "United States", "subcountry": "California"}, "Encinitas": {"country": "United States", "subcountry": "California"}, "Escondido": {"country": "United States", "subcountry": "California"}, "Fair Oaks": {"country": "United States", "subcountry": "California"}, "Fallbrook": {"country": "United States", "subcountry": "California"}, "Florin": {"country": "United States", "subcountry": "California"}, "Folsom": {"country": "United States", "subcountry": "California"}, "Foothill Farms": {"country": "United States", "subcountry": "California"}, "Foster City": {"country": "United States", "subcountry": "California"}, "Fountain Valley": {"country": "United States", "subcountry": "California"}, "Fullerton": {"country": "United States", "subcountry": "California"}, "Galt": {"country": "United States", "subcountry": "California"}, "Garden Grove": {"country": "United States", "subcountry": "California"}, "Gardena": {"country": "United States", "subcountry": "California"}, "Gilroy": {"country": "United States", "subcountry": "California"}, "Glen Avon": {"country": "United States", "subcountry": "California"}, "Glendora": {"country": "United States", "subcountry": "California"}, "Goleta": {"country": "United States", "subcountry": "California"}, "Granite Bay": {"country": "United States", "subcountry": "California"}, "Hacienda Heights": {"country": "United States", "subcountry": "California"}, "Hanford": {"country": "United States", "subcountry": "California"}, "Hayward": {"country": "United States", "subcountry": "California"}, "Hemet": {"country": "United States", "subcountry": "California"}, "Hercules": {"country": "United States", "subcountry": "California"}, "Hermosa Beach": {"country": "United States", "subcountry": "California"}, "Hesperia": {"country": "United States", "subcountry": "California"}, "Hollister": {"country": "United States", "subcountry": "California"}, "Huntington Beach": {"country": "United States", "subcountry": "California"}, "Huntington Park": {"country": "United States", "subcountry": "California"}, "Imperial Beach": {"country": "United States", "subcountry": "California"}, "Indio": {"country": "United States", "subcountry": "California"}, "Inglewood": {"country": "United States", "subcountry": "California"}, "Loma Linda": {"country": "United States", "subcountry": "California"}, "Lomita": {"country": "United States", "subcountry": "California"}, "Lompoc": {"country": "United States", "subcountry": "California"}, "Los Altos": {"country": "United States", "subcountry": "California"}, "Los Angeles": {"country": "United States", "subcountry": "California"}, "Los Banos": {"country": "United States", "subcountry": "California"}, "Los Gatos": {"country": "United States", "subcountry": "California"}, "Lynwood": {"country": "United States", "subcountry": "California"}, "Madera": {"country": "United States", "subcountry": "California"}, "Manhattan Beach": {"country": "United States", "subcountry": "California"}, "Manteca": {"country": "United States", "subcountry": "California"}, "Marina": {"country": "United States", "subcountry": "California"}, "Mead Valley": {"country": "United States", "subcountry": "California"}, "Menifee": {"country": "United States", "subcountry": "California"}, "Menlo Park": {"country": "United States", "subcountry": "California"}, "Merced": {"country": "United States", "subcountry": "California"}, "Millbrae": {"country": "United States", "subcountry": "California"}, "Milpitas": {"country": "United States", "subcountry": "California"}, "Mira Loma": {"country": "United States", "subcountry": "California"}, "Mission Viejo": {"country": "United States", "subcountry": "California"}, "Modesto": {"country": "United States", "subcountry": "California"}, "Montebello": {"country": "United States", "subcountry": "California"}, "Monterey": {"country": "United States", "subcountry": "California"}, "Monterey Park": {"country": "United States", "subcountry": "California"}, "Moorpark": {"country": "United States", "subcountry": "California"}, "Moraga": {"country": "United States", "subcountry": "California"}, "Moreno Valley": {"country": "United States", "subcountry": "California"}, "Morgan Hill": {"country": "United States", "subcountry": "California"}, "Mountain View": {"country": "United States", "subcountry": "California"}, "Murrieta": {"country": "United States", "subcountry": "California"}, "Napa": {"country": "United States", "subcountry": "California"}, "National City": {"country": "United States", "subcountry": "California"}, "Newport Beach": {"country": "United States", "subcountry": "California"}, "Nipomo": {"country": "United States", "subcountry": "California"}, "Norco": {"country": "United States", "subcountry": "California"}, "North Glendale": {"country": "United States", "subcountry": "California"}, "North Highlands": {"country": "United States", "subcountry": "California"}, "North Hollywood": {"country": "United States", "subcountry": "California"}, "Northridge": {"country": "United States", "subcountry": "California"}, "Novato": {"country": "United States", "subcountry": "California"}, "Oakland": {"country": "United States", "subcountry": "California"}, "Oakley": {"country": "United States", "subcountry": "California"}, "Oildale": {"country": "United States", "subcountry": "California"}, "Ontario": {"country": "United States", "subcountry": "California"}, "Orangevale": {"country": "United States", "subcountry": "California"}, "Orcutt": {"country": "United States", "subcountry": "California"}, "Orinda": {"country": "United States", "subcountry": "California"}, "Oroville": {"country": "United States", "subcountry": "California"}, "Oxnard": {"country": "United States", "subcountry": "California"}, "Oxnard Shores": {"country": "United States", "subcountry": "California"}, "Pacifica": {"country": "United States", "subcountry": "California"}, "Pacific Grove": {"country": "United States", "subcountry": "California"}, "Palm Desert": {"country": "United States", "subcountry": "California"}, "Palmdale": {"country": "United States", "subcountry": "California"}, "Palo Alto": {"country": "United States", "subcountry": "California"}, "Paramount": {"country": "United States", "subcountry": "California"}, "Paso Robles": {"country": "United States", "subcountry": "California"}, "Patterson": {"country": "United States", "subcountry": "California"}, "Perris": {"country": "United States", "subcountry": "California"}, "Petaluma": {"country": "United States", "subcountry": "California"}, "Pico Rivera": {"country": "United States", "subcountry": "California"}, "Pinole": {"country": "United States", "subcountry": "California"}, "Placentia": {"country": "United States", "subcountry": "California"}, "Pleasant Hill": {"country": "United States", "subcountry": "California"}, "Pleasanton": {"country": "United States", "subcountry": "California"}, "Pomona": {"country": "United States", "subcountry": "California"}, "Port Hueneme": {"country": "United States", "subcountry": "California"}, "Porterville": {"country": "United States", "subcountry": "California"}, "Poway": {"country": "United States", "subcountry": "California"}, "Prunedale": {"country": "United States", "subcountry": "California"}, "Ramona": {"country": "United States", "subcountry": "California"}, "Rancho Cordova": {"country": "United States", "subcountry": "California"}, "Rancho Cucamonga": {"country": "United States", "subcountry": "California"}, "Rancho Mirage": {"country": "United States", "subcountry": "California"}, "Rancho Palos Verdes": {"country": "United States", "subcountry": "California"}, "Rancho San Diego": {"country": "United States", "subcountry": "California"}, "Rancho Santa Margarita": {"country": "United States", "subcountry": "California"}, "Redlands": {"country": "United States", "subcountry": "California"}, "Redondo Beach": {"country": "United States", "subcountry": "California"}, "Redwood City": {"country": "United States", "subcountry": "California"}, "Reedley": {"country": "United States", "subcountry": "California"}, "Rialto": {"country": "United States", "subcountry": "California"}, "Ridgecrest": {"country": "United States", "subcountry": "California"}, "Rio Linda": {"country": "United States", "subcountry": "California"}, "Riverbank": {"country": "United States", "subcountry": "California"}, "Rocklin": {"country": "United States", "subcountry": "California"}, "Rohnert Park": {"country": "United States", "subcountry": "California"}, "Rosamond": {"country": "United States", "subcountry": "California"}, "Rosemead": {"country": "United States", "subcountry": "California"}, "Rosemont": {"country": "United States", "subcountry": "California"}, "Rowland Heights": {"country": "United States", "subcountry": "California"}, "Rubidoux": {"country": "United States", "subcountry": "California"}, "San Bernardino": {"country": "United States", "subcountry": "California"}, "San Bruno": {"country": "United States", "subcountry": "California"}, "San Dimas": {"country": "United States", "subcountry": "California"}, "San Juan Capistrano": {"country": "United States", "subcountry": "California"}, "San Leandro": {"country": "United States", "subcountry": "California"}, "San Luis Obispo": {"country": "United States", "subcountry": "California"}, "San Ramon": {"country": "United States", "subcountry": "California"}, "Sanger": {"country": "United States", "subcountry": "California"}, "Santa Clarita": {"country": "United States", "subcountry": "California"}, "Santa Fe Springs": {"country": "United States", "subcountry": "California"}, "Santa Monica": {"country": "United States", "subcountry": "California"}, "Santa Paula": {"country": "United States", "subcountry": "California"}, "Santee": {"country": "United States", "subcountry": "California"}, "Saratoga": {"country": "United States", "subcountry": "California"}, "Seal Beach": {"country": "United States", "subcountry": "California"}, "Seaside": {"country": "United States", "subcountry": "California"}, "Shafter": {"country": "United States", "subcountry": "California"}, "Sherman Oaks": {"country": "United States", "subcountry": "California"}, "Simi Valley": {"country": "United States", "subcountry": "California"}, "South El Monte": {"country": "United States", "subcountry": "California"}, "South Lake Tahoe": {"country": "United States", "subcountry": "California"}, "South Pasadena": {"country": "United States", "subcountry": "California"}, "South San Francisco": {"country": "United States", "subcountry": "California"}, "South San Jose Hills": {"country": "United States", "subcountry": "California"}, "South Whittier": {"country": "United States", "subcountry": "California"}, "South Yuba City": {"country": "United States", "subcountry": "California"}, "Stanton": {"country": "United States", "subcountry": "California"}, "Stockton": {"country": "United States", "subcountry": "California"}, "Suisun": {"country": "United States", "subcountry": "California"}, "Sunnyvale": {"country": "United States", "subcountry": "California"}, "Temecula": {"country": "United States", "subcountry": "California"}, "Temple City": {"country": "United States", "subcountry": "California"}, "Thousand Oaks": {"country": "United States", "subcountry": "California"}, "Torrance": {"country": "United States", "subcountry": "California"}, "Tracy": {"country": "United States", "subcountry": "California"}, "Truckee": {"country": "United States", "subcountry": "California"}, "Tulare": {"country": "United States", "subcountry": "California"}, "Turlock": {"country": "United States", "subcountry": "California"}, "Tustin": {"country": "United States", "subcountry": "California"}, "North Tustin": {"country": "United States", "subcountry": "California"}, "Twentynine Palms": {"country": "United States", "subcountry": "California"}, "Ukiah": {"country": "United States", "subcountry": "California"}, "Universal City": {"country": "United States", "subcountry": "California"}, "Upland": {"country": "United States", "subcountry": "California"}, "Walnut Park": {"country": "United States", "subcountry": "California"}, "Watsonville": {"country": "United States", "subcountry": "California"}, "West Carson": {"country": "United States", "subcountry": "California"}, "West Covina": {"country": "United States", "subcountry": "California"}, "West Hollywood": {"country": "United States", "subcountry": "California"}, "West Puente Valley": {"country": "United States", "subcountry": "California"}, "West Sacramento": {"country": "United States", "subcountry": "California"}, "Whittier": {"country": "United States", "subcountry": "California"}, "Wildomar": {"country": "United States", "subcountry": "California"}, "Willowbrook": {"country": "United States", "subcountry": "California"}, "Winter Gardens": {"country": "United States", "subcountry": "California"}, "Woodland": {"country": "United States", "subcountry": "California"}, "Woodland Hills": {"country": "United States", "subcountry": "California"}, "Yorba Linda": {"country": "United States", "subcountry": "California"}, "Yuba City": {"country": "United States", "subcountry": "California"}, "Yucaipa": {"country": "United States", "subcountry": "California"}, "Yucca Valley": {"country": "United States", "subcountry": "California"}, "Arvada": {"country": "United States", "subcountry": "Colorado"}, "Broomfield": {"country": "United States", "subcountry": "Colorado"}, "Ca\u00f1on City": {"country": "United States", "subcountry": "Colorado"}, "Castle Rock": {"country": "United States", "subcountry": "Colorado"}, "Castlewood": {"country": "United States", "subcountry": "Colorado"}, "Centennial": {"country": "United States", "subcountry": "Colorado"}, "Cimarron Hills": {"country": "United States", "subcountry": "Colorado"}, "Colorado Springs": {"country": "United States", "subcountry": "Colorado"}, "Columbine": {"country": "United States", "subcountry": "Colorado"}, "Commerce City": {"country": "United States", "subcountry": "Colorado"}, "Denver": {"country": "United States", "subcountry": "Colorado"}, "Fountain": {"country": "United States", "subcountry": "Colorado"}, "Golden": {"country": "United States", "subcountry": "Colorado"}, "Grand Junction": {"country": "United States", "subcountry": "Colorado"}, "Highlands Ranch": {"country": "United States", "subcountry": "Colorado"}, "Ken Caryl": {"country": "United States", "subcountry": "Colorado"}, "Littleton": {"country": "United States", "subcountry": "Colorado"}, "Montrose": {"country": "United States", "subcountry": "Colorado"}, "Northglenn": {"country": "United States", "subcountry": "Colorado"}, "Parker": {"country": "United States", "subcountry": "Colorado"}, "Pueblo": {"country": "United States", "subcountry": "Colorado"}, "Pueblo West": {"country": "United States", "subcountry": "Colorado"}, "Sherrelwood": {"country": "United States", "subcountry": "Colorado"}, "Southglenn": {"country": "United States", "subcountry": "Colorado"}, "Thornton": {"country": "United States", "subcountry": "Colorado"}, "Wheat Ridge": {"country": "United States", "subcountry": "Colorado"}, "Dodge City": {"country": "United States", "subcountry": "Kansas"}, "Liberal": {"country": "United States", "subcountry": "Kansas"}, "Alamogordo": {"country": "United States", "subcountry": "New Mexico"}, "Albuquerque": {"country": "United States", "subcountry": "New Mexico"}, "Gallup": {"country": "United States", "subcountry": "New Mexico"}, "Hobbs": {"country": "United States", "subcountry": "New Mexico"}, "Las Cruces": {"country": "United States", "subcountry": "New Mexico"}, "Rio Rancho": {"country": "United States", "subcountry": "New Mexico"}, "Santa Fe": {"country": "United States", "subcountry": "New Mexico"}, "South Valley": {"country": "United States", "subcountry": "New Mexico"}, "Boulder City": {"country": "United States", "subcountry": "Nevada"}, "Carson City": {"country": "United States", "subcountry": "Nevada"}, "Fernley": {"country": "United States", "subcountry": "Nevada"}, "Las Vegas": {"country": "United States", "subcountry": "Nevada"}, "Mesquite": {"country": "United States", "subcountry": "Nevada"}, "North Las Vegas": {"country": "United States", "subcountry": "Nevada"}, "Pahrump": {"country": "United States", "subcountry": "Nevada"}, "Reno": {"country": "United States", "subcountry": "Nevada"}, "Spanish Springs": {"country": "United States", "subcountry": "Nevada"}, "Sparks": {"country": "United States", "subcountry": "Nevada"}, "Sun Valley": {"country": "United States", "subcountry": "Nevada"}, "Sunrise Manor": {"country": "United States", "subcountry": "Nevada"}, "Whitney": {"country": "United States", "subcountry": "Nevada"}, "Amarillo": {"country": "United States", "subcountry": "Texas"}, "Big Spring": {"country": "United States", "subcountry": "Texas"}, "Del Rio": {"country": "United States", "subcountry": "Texas"}, "Eagle Pass": {"country": "United States", "subcountry": "Texas"}, "El Paso": {"country": "United States", "subcountry": "Texas"}, "Hereford": {"country": "United States", "subcountry": "Texas"}, "Horizon City": {"country": "United States", "subcountry": "Texas"}, "Lubbock": {"country": "United States", "subcountry": "Texas"}, "Pampa": {"country": "United States", "subcountry": "Texas"}, "San Angelo": {"country": "United States", "subcountry": "Texas"}, "Socorro Mission Number 1 Colonia": {"country": "United States", "subcountry": "Texas"}, "West Odessa": {"country": "United States", "subcountry": "Texas"}, "Cedar City": {"country": "United States", "subcountry": "Utah"}, "Saint George": {"country": "United States", "subcountry": "Utah"}, "Anthem": {"country": "United States", "subcountry": "Arizona"}, "Apache Junction": {"country": "United States", "subcountry": "Arizona"}, "Avondale": {"country": "United States", "subcountry": "Arizona"}, "Juneau": {"country": "United States", "subcountry": "Alaska"}, "Arcata": {"country": "United States", "subcountry": "California"}, "Bayside": {"country": "United States", "subcountry": "California"}, "Eureka": {"country": "United States", "subcountry": "California"}, "Mckinleyville": {"country": "United States", "subcountry": "California"}, "Redding": {"country": "United States", "subcountry": "California"}, "Susanville": {"country": "United States", "subcountry": "California"}, "Boulder": {"country": "United States", "subcountry": "Colorado"}, "Fort Collins": {"country": "United States", "subcountry": "Colorado"}, "Greeley": {"country": "United States", "subcountry": "Colorado"}, "Longmont": {"country": "United States", "subcountry": "Colorado"}, "Loveland": {"country": "United States", "subcountry": "Colorado"}, "Boise": {"country": "United States", "subcountry": "Idaho"}, "Caldwell": {"country": "United States", "subcountry": "Idaho"}, "Coeur D'Alene": {"country": "United States", "subcountry": "Idaho"}, "Eagle": {"country": "United States", "subcountry": "Idaho"}, "Idaho Falls": {"country": "United States", "subcountry": "Idaho"}, "Kuna": {"country": "United States", "subcountry": "Idaho"}, "Lewiston Orchards": {"country": "United States", "subcountry": "Idaho"}, "Nampa": {"country": "United States", "subcountry": "Idaho"}, "Pocatello": {"country": "United States", "subcountry": "Idaho"}, "Post Falls": {"country": "United States", "subcountry": "Idaho"}, "Rexburg": {"country": "United States", "subcountry": "Idaho"}, "Twin Falls": {"country": "United States", "subcountry": "Idaho"}, "Billings": {"country": "United States", "subcountry": "Montana"}, "Bozeman": {"country": "United States", "subcountry": "Montana"}, "Butte": {"country": "United States", "subcountry": "Montana"}, "Great Falls": {"country": "United States", "subcountry": "Montana"}, "Kalispell": {"country": "United States", "subcountry": "Montana"}, "Missoula": {"country": "United States", "subcountry": "Montana"}, "Bismarck": {"country": "United States", "subcountry": "North Dakota"}, "Mandan": {"country": "United States", "subcountry": "North Dakota"}, "Minot": {"country": "United States", "subcountry": "North Dakota"}, "North Platte": {"country": "United States", "subcountry": "Nebraska"}, "Scottsbluff": {"country": "United States", "subcountry": "Nebraska"}, "Elko": {"country": "United States", "subcountry": "Nevada"}, "Aloha": {"country": "United States", "subcountry": "Oregon"}, "Altamont": {"country": "United States", "subcountry": "Oregon"}, "Beaverton": {"country": "United States", "subcountry": "Oregon"}, "Bend": {"country": "United States", "subcountry": "Oregon"}, "Canby": {"country": "United States", "subcountry": "Oregon"}, "Central Point": {"country": "United States", "subcountry": "Oregon"}, "Coos Bay": {"country": "United States", "subcountry": "Oregon"}, "Corvallis": {"country": "United States", "subcountry": "Oregon"}, "Eugene": {"country": "United States", "subcountry": "Oregon"}, "Forest Grove": {"country": "United States", "subcountry": "Oregon"}, "Four Corners": {"country": "United States", "subcountry": "Florida"}, "Grants Pass": {"country": "United States", "subcountry": "Oregon"}, "Gresham": {"country": "United States", "subcountry": "Oregon"}, "Hayesville": {"country": "United States", "subcountry": "Oregon"}, "Hermiston": {"country": "United States", "subcountry": "Oregon"}, "Hillsboro": {"country": "United States", "subcountry": "Oregon"}, "Keizer": {"country": "United States", "subcountry": "Oregon"}, "Klamath Falls": {"country": "United States", "subcountry": "Oregon"}, "Lake Oswego": {"country": "United States", "subcountry": "Oregon"}, "Lents": {"country": "United States", "subcountry": "Oregon"}, "Mcminnville": {"country": "United States", "subcountry": "Oregon"}, "Milwaukie": {"country": "United States", "subcountry": "Oregon"}, "Newberg": {"country": "United States", "subcountry": "Oregon"}, "Oak Grove": {"country": "United States", "subcountry": "Oregon"}, "Oregon City": {"country": "United States", "subcountry": "Oregon"}, "Pendleton": {"country": "United States", "subcountry": "Oregon"}, "Redmond": {"country": "United States", "subcountry": "Washington"}, "Roseburg": {"country": "United States", "subcountry": "Oregon"}, "Sherwood": {"country": "United States", "subcountry": "Oregon"}, "Tigard": {"country": "United States", "subcountry": "Oregon"}, "Troutdale": {"country": "United States", "subcountry": "Oregon"}, "Tualatin": {"country": "United States", "subcountry": "Oregon"}, "West Linn": {"country": "United States", "subcountry": "Oregon"}, "Wilsonville": {"country": "United States", "subcountry": "Oregon"}, "Woodburn": {"country": "United States", "subcountry": "Oregon"}, "Rapid City": {"country": "United States", "subcountry": "South Dakota"}, "Bountiful": {"country": "United States", "subcountry": "Utah"}, "Brigham City": {"country": "United States", "subcountry": "Utah"}, "Clearfield": {"country": "United States", "subcountry": "Utah"}, "Cottonwood Heights": {"country": "United States", "subcountry": "Utah"}, "Draper": {"country": "United States", "subcountry": "Utah"}, "Eagle Mountain": {"country": "United States", "subcountry": "Utah"}, "East Millcreek": {"country": "United States", "subcountry": "Utah"}, "Herriman": {"country": "United States", "subcountry": "Utah"}, "Holladay": {"country": "United States", "subcountry": "Utah"}, "Kaysville": {"country": "United States", "subcountry": "Utah"}, "Kearns": {"country": "United States", "subcountry": "Utah"}, "Layton": {"country": "United States", "subcountry": "Utah"}, "Lehi": {"country": "United States", "subcountry": "Utah"}, "Logan": {"country": "United States", "subcountry": "Utah"}, "Magna": {"country": "United States", "subcountry": "Utah"}, "Midvale": {"country": "United States", "subcountry": "Utah"}, "Millcreek": {"country": "United States", "subcountry": "Utah"}, "North Ogden": {"country": "United States", "subcountry": "Utah"}, "North Salt Lake": {"country": "United States", "subcountry": "Utah"}, "Ogden": {"country": "United States", "subcountry": "Utah"}, "Orem": {"country": "United States", "subcountry": "Utah"}, "Pleasant Grove": {"country": "United States", "subcountry": "Utah"}, "Provo": {"country": "United States", "subcountry": "Utah"}, "Riverton": {"country": "United States", "subcountry": "Utah"}, "Roy": {"country": "United States", "subcountry": "Utah"}, "Salt Lake City": {"country": "United States", "subcountry": "Utah"}, "Sandy City": {"country": "United States", "subcountry": "Utah"}, "Sandy Hills": {"country": "United States", "subcountry": "Utah"}, "South Jordan Heights": {"country": "United States", "subcountry": "Utah"}, "South Jordan": {"country": "United States", "subcountry": "Utah"}, "South Ogden": {"country": "United States", "subcountry": "Utah"}, "South Salt Lake": {"country": "United States", "subcountry": "Utah"}, "Spanish Fork": {"country": "United States", "subcountry": "Utah"}, "Springville": {"country": "United States", "subcountry": "Utah"}, "Taylorsville": {"country": "United States", "subcountry": "Utah"}, "Tooele": {"country": "United States", "subcountry": "Utah"}, "West Jordan": {"country": "United States", "subcountry": "Utah"}, "West Valley City": {"country": "United States", "subcountry": "Utah"}, "Anacortes": {"country": "United States", "subcountry": "Washington"}, "Battle Ground": {"country": "United States", "subcountry": "Washington"}, "Bellingham": {"country": "United States", "subcountry": "Washington"}, "Bonney Lake": {"country": "United States", "subcountry": "Washington"}, "Bothell": {"country": "United States", "subcountry": "Washington"}, "Bremerton": {"country": "United States", "subcountry": "Washington"}, "Burien": {"country": "United States", "subcountry": "Washington"}, "Centralia": {"country": "United States", "subcountry": "Washington"}, "Cottage Lake": {"country": "United States", "subcountry": "Washington"}, "Edmonds": {"country": "United States", "subcountry": "Washington"}, "Ellensburg": {"country": "United States", "subcountry": "Washington"}, "Fairwood": {"country": "United States", "subcountry": "Washington"}, "Federal Way": {"country": "United States", "subcountry": "Washington"}, "Five Corners": {"country": "United States", "subcountry": "Washington"}, "Frederickson": {"country": "United States", "subcountry": "Washington"}, "Graham": {"country": "United States", "subcountry": "Washington"}, "Hazel Dell": {"country": "United States", "subcountry": "Washington"}, "Issaquah": {"country": "United States", "subcountry": "Washington"}, "Kennewick": {"country": "United States", "subcountry": "Washington"}, "Lacey": {"country": "United States", "subcountry": "Washington"}, "Lake Stevens": {"country": "United States", "subcountry": "Washington"}, "Longview": {"country": "United States", "subcountry": "Washington"}, "Lynnwood": {"country": "United States", "subcountry": "Washington"}, "Maple Valley": {"country": "United States", "subcountry": "Washington"}, "Martha Lake": {"country": "United States", "subcountry": "Washington"}, "Mercer Island": {"country": "United States", "subcountry": "Washington"}, "Mill Creek": {"country": "United States", "subcountry": "Washington"}, "Moses Lake": {"country": "United States", "subcountry": "Washington"}, "Mountlake Terrace": {"country": "United States", "subcountry": "Washington"}, "Mukilteo": {"country": "United States", "subcountry": "Washington"}, "North Creek": {"country": "United States", "subcountry": "Washington"}, "Oak Harbor": {"country": "United States", "subcountry": "Washington"}, "Olympia": {"country": "United States", "subcountry": "Washington"}, "Opportunity": {"country": "United States", "subcountry": "Washington"}, "Orchards": {"country": "United States", "subcountry": "Washington"}, "Pasco": {"country": "United States", "subcountry": "Washington"}, "Port Angeles": {"country": "United States", "subcountry": "Washington"}, "Pullman": {"country": "United States", "subcountry": "Washington"}, "Puyallup": {"country": "United States", "subcountry": "Washington"}, "Renton": {"country": "United States", "subcountry": "Washington"}, "Richland": {"country": "United States", "subcountry": "Washington"}, "Salmon Creek": {"country": "United States", "subcountry": "Washington"}, "Sammamish": {"country": "United States", "subcountry": "Washington"}, "Seatac": {"country": "United States", "subcountry": "Washington"}, "Seattle": {"country": "United States", "subcountry": "Washington"}, "Shoreline": {"country": "United States", "subcountry": "Washington"}, "Silverdale": {"country": "United States", "subcountry": "Washington"}, "South Hill": {"country": "United States", "subcountry": "Washington"}, "Spanaway": {"country": "United States", "subcountry": "Washington"}, "Spokane": {"country": "United States", "subcountry": "Washington"}, "Spokane Valley": {"country": "United States", "subcountry": "Washington"}, "Sunnyside": {"country": "United States", "subcountry": "Washington"}, "Tacoma": {"country": "United States", "subcountry": "Washington"}, "Tukwila": {"country": "United States", "subcountry": "Washington"}, "Tumwater": {"country": "United States", "subcountry": "Washington"}, "University Place": {"country": "United States", "subcountry": "Washington"}, "Walla Walla": {"country": "United States", "subcountry": "Washington"}, "Wenatchee": {"country": "United States", "subcountry": "Washington"}, "West Lake Sammamish": {"country": "United States", "subcountry": "Washington"}, "West Lake Stevens": {"country": "United States", "subcountry": "Washington"}, "Bainbridge Island": {"country": "United States", "subcountry": "Washington"}, "Yakima": {"country": "United States", "subcountry": "Washington"}, "Casper": {"country": "United States", "subcountry": "Wyoming"}, "Cheyenne": {"country": "United States", "subcountry": "Wyoming"}, "Gillette": {"country": "United States", "subcountry": "Wyoming"}, "Laramie": {"country": "United States", "subcountry": "Wyoming"}, "Rock Springs": {"country": "United States", "subcountry": "Wyoming"}, "Sheridan": {"country": "United States", "subcountry": "Wyoming"}, "American Fork": {"country": "United States", "subcountry": "Utah"}, "Kahului": {"country": "United States", "subcountry": "Hawaii"}, "Kailua": {"country": "United States", "subcountry": "Hawaii"}, "K\u0101ne\u2018Ohe": {"country": "United States", "subcountry": "Hawaii"}, "K\u012bhei": {"country": "United States", "subcountry": "Hawaii"}, "Makakilo City": {"country": "United States", "subcountry": "Hawaii"}, "Mililani Town": {"country": "United States", "subcountry": "Hawaii"}, "Pearl City": {"country": "United States", "subcountry": "Hawaii"}, "Wahiaw\u0101": {"country": "United States", "subcountry": "Hawaii"}, "Wailuku": {"country": "United States", "subcountry": "Hawaii"}, "Waipahu": {"country": "United States", "subcountry": "Hawaii"}, "\u2018Ewa Gentry": {"country": "United States", "subcountry": "Hawaii"}, "Hilo": {"country": "United States", "subcountry": "Hawaii"}, "Honolulu": {"country": "United States", "subcountry": "Hawaii"}, "Eagle River": {"country": "United States", "subcountry": "Alaska"}, "Fairbanks": {"country": "United States", "subcountry": "Alaska"}, "Anchorage": {"country": "United States", "subcountry": "Alaska"}, "Badger": {"country": "United States", "subcountry": "Alaska"}, "Johns Creek": {"country": "United States", "subcountry": "Georgia"}, "Cutler Bay": {"country": "United States", "subcountry": "Florida"}, "Alafaya": {"country": "United States", "subcountry": "Florida"}, "Fort Bragg": {"country": "United States", "subcountry": "North Carolina"}, "City Of Milford (Balance)": {"country": "United States", "subcountry": "Connecticut"}, "Butte-Silver Bow (Balance)": {"country": "United States", "subcountry": "Montana"}, "City Of Sammamish": {"country": "United States", "subcountry": "Washington"}, "Silver Firs": {"country": "United States", "subcountry": "Washington"}, "Vineyard": {"country": "United States", "subcountry": "California"}, "Wallingford Center": {"country": "United States", "subcountry": "Connecticut"}, "Bel Air North": {"country": "United States", "subcountry": "Maryland"}, "Bel Air South": {"country": "United States", "subcountry": "Maryland"}, "Setauket-East Setauket": {"country": "United States", "subcountry": "New York"}, "Fort Leonard Wood": {"country": "United States", "subcountry": "Missouri"}, "West Bloomfield Township": {"country": "United States", "subcountry": "Michigan"}, "East Lake-Orient Park": {"country": "United States", "subcountry": "Florida"}, "Greater Northdale": {"country": "United States", "subcountry": "Florida"}, "Candler-Mcafee": {"country": "United States", "subcountry": "Georgia"}, "University": {"country": "United States", "subcountry": "Florida"}, "Vero Beach South": {"country": "United States", "subcountry": "Florida"}, "Kendall West": {"country": "United States", "subcountry": "Florida"}, "Palm River-Clair Mel": {"country": "United States", "subcountry": "Florida"}, "Arden-Arcade": {"country": "United States", "subcountry": "California"}, "Bryn Mawr-Skyway": {"country": "United States", "subcountry": "Washington"}, "Casa De Oro-Mount Helix": {"country": "United States", "subcountry": "California"}, "Florence-Graham": {"country": "United States", "subcountry": "California"}, "Fort Hood": {"country": "United States", "subcountry": "Texas"}, "Inglewood-Finn Hill": {"country": "United States", "subcountry": "Washington"}, "La Crescenta-Montrose": {"country": "United States", "subcountry": "California"}, "East Hill-Meridian": {"country": "United States", "subcountry": "Washington"}, "Security-Widefield": {"country": "United States", "subcountry": "Colorado"}, "Union Hill-Novelty Hill": {"country": "United States", "subcountry": "Washington"}, "West Whittier-Los Nietos": {"country": "United States", "subcountry": "California"}, "Summerlin South": {"country": "United States", "subcountry": "Nevada"}, "Makakilo": {"country": "United States", "subcountry": "Hawaii"}, "Schofield Barracks": {"country": "United States", "subcountry": "Hawaii"}, "San Tan Valley": {"country": "United States", "subcountry": "Arizona"}, "Enchanted Hills": {"country": "United States", "subcountry": "New Mexico"}, "West Hills": {"country": "United States", "subcountry": "California"}, "Oak Hill": {"country": "United States", "subcountry": "Virginia"}, "Bridgewater": {"country": "United States", "subcountry": "New Jersey"}, "Warren Township": {"country": "United States", "subcountry": "New Jersey"}, "Fairfield Heights": {"country": "United States", "subcountry": "Indiana"}, "Hot Springs National Park": {"country": "United States", "subcountry": "Arkansas"}, "Dixiana": {"country": "United States", "subcountry": "Alabama"}, "Cranberry Township": {"country": "United States", "subcountry": "Pennsylvania"}, "Silver Lake": {"country": "United States", "subcountry": "California"}, "Echo Park": {"country": "United States", "subcountry": "California"}, "Young": {"country": "Uruguay", "subcountry": "R\u00edo Negro"}, "Treinta Y Tres": {"country": "Uruguay", "subcountry": "Treinta y Tres"}, "Tacuaremb\u00f3": {"country": "Uruguay", "subcountry": "Tacuaremb\u00f3"}, "San Jos\u00e9 De Mayo": {"country": "Uruguay", "subcountry": "San Jos\u00e9"}, "Rocha": {"country": "Uruguay", "subcountry": "Rocha"}, "Rivera": {"country": "Uruguay", "subcountry": "Rivera"}, "Progreso": {"country": "Uruguay", "subcountry": "Canelones"}, "Paysand\u00fa": {"country": "Uruguay", "subcountry": "Paysand\u00fa"}, "Paso De Carrasco": {"country": "Uruguay", "subcountry": "Canelones"}, "Pando": {"country": "Uruguay", "subcountry": "Canelones"}, "Montevideo": {"country": "Uruguay", "subcountry": "Montevideo"}, "Melo": {"country": "Uruguay", "subcountry": "Cerro Largo"}, "Maldonado": {"country": "Uruguay", "subcountry": "Maldonado"}, "Las Piedras": {"country": "Uruguay", "subcountry": "Canelones"}, "Fray Bentos": {"country": "Uruguay", "subcountry": "R\u00edo Negro"}, "Durazno": {"country": "Uruguay", "subcountry": "Durazno"}, "Delta Del Tigre": {"country": "Uruguay", "subcountry": "San Jos\u00e9"}, "Colonia Del Sacramento": {"country": "Uruguay", "subcountry": "Colonia"}, "Carmelo": {"country": "Uruguay", "subcountry": "Colonia"}, "Canelones": {"country": "Uruguay", "subcountry": "Canelones"}, "Artigas": {"country": "Uruguay", "subcountry": "Artigas"}, "Nukus": {"country": "Uzbekistan", "subcountry": "Karakalpakstan"}, "Kh\u016djayli": {"country": "Uzbekistan", "subcountry": "Karakalpakstan"}, "Oltinko\u2019L": {"country": "Uzbekistan", "subcountry": "Karakalpakstan"}, "Zomin": {"country": "Uzbekistan", "subcountry": "Jizzax"}, "Urgut": {"country": "Uzbekistan", "subcountry": "Samarqand"}, "Tirmiz": {"country": "Uzbekistan", "subcountry": "Surxondaryo"}, "Sho\u2019Rchi": {"country": "Uzbekistan", "subcountry": "Surxondaryo"}, "Shahrisabz": {"country": "Uzbekistan", "subcountry": "Qashqadaryo"}, "Samarqand": {"country": "Uzbekistan", "subcountry": "Samarqand"}, "Qarshi": {"country": "Uzbekistan", "subcountry": "Qashqadaryo"}, "Muborak": {"country": "Uzbekistan", "subcountry": "Qashqadaryo"}, "Kitob": {"country": "Uzbekistan", "subcountry": "Qashqadaryo"}, "Kattaqo\u2019Rg\u2019On": {"country": "Uzbekistan", "subcountry": "Samarqand"}, "Koson": {"country": "Uzbekistan", "subcountry": "Qashqadaryo"}, "Karakul\u2019": {"country": "Uzbekistan", "subcountry": "Bukhara"}, "Kogon": {"country": "Uzbekistan", "subcountry": "Bukhara"}, "G\u2019Uzor": {"country": "Uzbekistan", "subcountry": "Qashqadaryo"}, "Galaosiyo": {"country": "Uzbekistan", "subcountry": "Bukhara"}, "Juma": {"country": "Uzbekistan", "subcountry": "Samarqand"}, "Denov": {"country": "Uzbekistan", "subcountry": "Surxondaryo"}, "Chiroqchi": {"country": "Uzbekistan", "subcountry": "Qashqadaryo"}, "Chelak": {"country": "Uzbekistan", "subcountry": "Samarqand"}, "Bulung\u2019Ur": {"country": "Uzbekistan", "subcountry": "Samarqand"}, "Bukhara": {"country": "Uzbekistan", "subcountry": "Bukhara"}, "Beshkent": {"country": "Uzbekistan", "subcountry": "Qashqadaryo"}, "Boysun": {"country": "Uzbekistan", "subcountry": "Surxondaryo"}, "Oqtosh": {"country": "Uzbekistan", "subcountry": "Samarqand"}, "Zafar": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Yaypan": {"country": "Uzbekistan", "subcountry": "Fergana"}, "Yangiy\u016dl": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Yangiyer": {"country": "Uzbekistan", "subcountry": "Sirdaryo"}, "Yangirabot": {"country": "Uzbekistan", "subcountry": "Navoiy"}, "Yangiqo\u2018Rg\u2018On": {"country": "Uzbekistan", "subcountry": "Namangan"}, "Yangiobod": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Wobkent": {"country": "Uzbekistan", "subcountry": "Bukhara"}, "Uychi": {"country": "Uzbekistan", "subcountry": "Namangan"}, "Urganch": {"country": "Uzbekistan", "subcountry": "Xorazm"}, "Dashtobod": {"country": "Uzbekistan", "subcountry": "Jizzax"}, "Uchq\u016drghon Shahri": {"country": "Uzbekistan", "subcountry": "Namangan"}, "T\u016dytepa": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "T\u016drag\u016drghon": {"country": "Uzbekistan", "subcountry": "Namangan"}, "Toshloq": {"country": "Uzbekistan", "subcountry": "Fergana"}, "Tashkent": {"country": "Uzbekistan", "subcountry": "Toshkent Shahri"}, "Toshbuloq": {"country": "Uzbekistan", "subcountry": "Namangan"}, "Sirdaryo": {"country": "Uzbekistan", "subcountry": "Sirdaryo"}, "Showot": {"country": "Uzbekistan", "subcountry": "Xorazm"}, "Shofirkon": {"country": "Uzbekistan", "subcountry": "Bukhara"}, "Salor": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Q\u016dshk\u016dpir": {"country": "Uzbekistan", "subcountry": "Xorazm"}, "Qo\u2018Qon": {"country": "Uzbekistan", "subcountry": "Fergana"}, "Piskent": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Payshanba": {"country": "Uzbekistan", "subcountry": "Samarqand"}, "Parkent": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Pop": {"country": "Uzbekistan", "subcountry": "Namangan"}, "Paxtakor": {"country": "Uzbekistan", "subcountry": "Jizzax"}, "Olmaliq": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Ohangaron": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Nurota": {"country": "Uzbekistan", "subcountry": "Navoiy"}, "Novyy Turtkul\u2019": {"country": "Uzbekistan", "subcountry": "Karakalpakstan"}, "Navoiy": {"country": "Uzbekistan", "subcountry": "Navoiy"}, "Namangan": {"country": "Uzbekistan", "subcountry": "Namangan"}, "Marg\u2018Ilon": {"country": "Uzbekistan", "subcountry": "Fergana"}, "Manghit": {"country": "Uzbekistan", "subcountry": "Karakalpakstan"}, "Quvasoy": {"country": "Uzbekistan", "subcountry": "Fergana"}, "Q\u016drghontepa": {"country": "Uzbekistan", "subcountry": "Andijon"}, "Kirguli": {"country": "Uzbekistan", "subcountry": "Fergana"}, "Qibray": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Kh\u016djaobod": {"country": "Uzbekistan", "subcountry": "Andijon"}, "Khiwa": {"country": "Uzbekistan", "subcountry": "Xorazm"}, "Haqqulobod": {"country": "Uzbekistan", "subcountry": "Namangan"}, "Kosonsoy": {"country": "Uzbekistan", "subcountry": "Namangan"}, "Jizzax": {"country": "Uzbekistan", "subcountry": "Jizzax"}, "Iskandar": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Hazorasp": {"country": "Uzbekistan", "subcountry": "Xorazm"}, "Gurlan": {"country": "Uzbekistan", "subcountry": "Xorazm"}, "Guliston": {"country": "Uzbekistan", "subcountry": "Sirdaryo"}, "Ghijduwon": {"country": "Uzbekistan", "subcountry": "Bukhara"}, "G\u2018Azalkent": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Fergana": {"country": "Uzbekistan", "subcountry": "Fergana"}, "D\u016dstlik": {"country": "Uzbekistan", "subcountry": "Jizzax"}, "Chust Shahri": {"country": "Uzbekistan", "subcountry": "Namangan"}, "Chirchiq": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Chinoz": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Chortoq": {"country": "Uzbekistan", "subcountry": "Namangan"}, "B\u016dka": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Beshariq": {"country": "Uzbekistan", "subcountry": "Fergana"}, "Beruniy": {"country": "Uzbekistan", "subcountry": "Karakalpakstan"}, "Bektemir": {"country": "Uzbekistan", "subcountry": "Toshkent Shahri"}, "Bekobod": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Angren": {"country": "Uzbekistan", "subcountry": "Toshkent"}, "Andijon": {"country": "Uzbekistan", "subcountry": "Andijon"}, "Oltiariq": {"country": "Uzbekistan", "subcountry": "Fergana"}, "Quva": {"country": "Uzbekistan", "subcountry": "Fergana"}, "Vatican City": {"country": "Vatican", "subcountry": "N/A"}, "Kingstown": {"country": "Saint Vincent and the Grenadines", "subcountry": "Saint George"}, "Kingstown Park": {"country": "Saint Vincent and the Grenadines", "subcountry": "Saint George"}, "La Asunci\u00f3n": {"country": "Venezuela", "subcountry": "Nueva Esparta"}, "Anaco": {"country": "Venezuela", "subcountry": "Anzo\u00e1tegui"}, "Alto Barinas": {"country": "Venezuela", "subcountry": "Barinas"}, "Zaraza": {"country": "Venezuela", "subcountry": "Gu\u00e1rico"}, "Yaritagua": {"country": "Venezuela", "subcountry": "Yaracuy"}, "Villa De Cura": {"country": "Venezuela", "subcountry": "Aragua"}, "Villa Bruzual": {"country": "Venezuela", "subcountry": "Portuguesa"}, "Valle De La Pascua": {"country": "Venezuela", "subcountry": "Gu\u00e1rico"}, "Valera": {"country": "Venezuela", "subcountry": "Trujillo"}, "Upata": {"country": "Venezuela", "subcountry": "Bol\u00edvar"}, "Turmero": {"country": "Venezuela", "subcountry": "Aragua"}, "Tucupita": {"country": "Venezuela", "subcountry": "Delta Amacuro"}, "Tinaquillo": {"country": "Venezuela", "subcountry": "Cojedes"}, "T\u00e1riba": {"country": "Venezuela", "subcountry": "T\u00e1chira"}, "Santa Teresa": {"country": "Venezuela", "subcountry": "Miranda"}, "Santa Elena De Uair\u00e9n": {"country": "Venezuela", "subcountry": "Bol\u00edvar"}, "San Juan De Los Morros": {"country": "Venezuela", "subcountry": "Gu\u00e1rico"}, "San Juan De Col\u00f3n": {"country": "Venezuela", "subcountry": "T\u00e1chira"}, "San Jos\u00e9 De Guanipa": {"country": "Venezuela", "subcountry": "Anzo\u00e1tegui"}, "San Joaqu\u00edn": {"country": "Venezuela", "subcountry": "Carabobo"}, "San Carlos Del Zulia": {"country": "Venezuela", "subcountry": "Zulia"}, "San Antonio Del T\u00e1chira": {"country": "Venezuela", "subcountry": "T\u00e1chira"}, "San Antonio De Los Altos": {"country": "Venezuela", "subcountry": "Miranda"}, "Rubio": {"country": "Venezuela", "subcountry": "T\u00e1chira"}, "La Villa Del Rosario": {"country": "Venezuela", "subcountry": "Zulia"}, "Qu\u00edbor": {"country": "Venezuela", "subcountry": "Lara"}, "Punto Fijo": {"country": "Venezuela", "subcountry": "Falc\u00f3n"}, "Punta Card\u00f3n": {"country": "Venezuela", "subcountry": "Falc\u00f3n"}, "Puerto La Cruz": {"country": "Venezuela", "subcountry": "Anzo\u00e1tegui"}, "Puerto Cabello": {"country": "Venezuela", "subcountry": "Carabobo"}, "Puerto Ayacucho": {"country": "Venezuela", "subcountry": "Amazonas"}, "Porlamar": {"country": "Venezuela", "subcountry": "Nueva Esparta"}, "Petare": {"country": "Venezuela", "subcountry": "Miranda"}, "Palo Negro": {"country": "Venezuela", "subcountry": "Aragua"}, "Ocumare Del Tuy": {"country": "Venezuela", "subcountry": "Miranda"}, "Nirgua": {"country": "Venezuela", "subcountry": "Yaracuy"}, "Mucumpiz": {"country": "Venezuela", "subcountry": "M\u00e9rida"}, "Mariara": {"country": "Venezuela", "subcountry": "Carabobo"}, "Maracay": {"country": "Venezuela", "subcountry": "Aragua"}, "Maracaibo": {"country": "Venezuela", "subcountry": "Zulia"}, "Maiquet\u00eda": {"country": "Venezuela", "subcountry": "Vargas"}, "Machiques": {"country": "Venezuela", "subcountry": "Zulia"}, "Los Teques": {"country": "Venezuela", "subcountry": "Miranda"}, "Los Rastrojos": {"country": "Venezuela", "subcountry": "Lara"}, "Los Dos Caminos": {"country": "Venezuela", "subcountry": "Miranda"}, "La Victoria": {"country": "Venezuela", "subcountry": "Aragua"}, "Las Tejer\u00edas": {"country": "Venezuela", "subcountry": "Aragua"}, "Lagunillas": {"country": "Venezuela", "subcountry": "Zulia"}, "La Guaira": {"country": "Venezuela", "subcountry": "Vargas"}, "Juan Griego": {"country": "Venezuela", "subcountry": "Nueva Esparta"}, "G\u00fciria": {"country": "Venezuela", "subcountry": "Sucre"}, "G\u00fcig\u00fce": {"country": "Venezuela", "subcountry": "Carabobo"}, "Guatire": {"country": "Venezuela", "subcountry": "Miranda"}, "Guarenas": {"country": "Venezuela", "subcountry": "Miranda"}, "Guanare": {"country": "Venezuela", "subcountry": "Portuguesa"}, "Guacara": {"country": "Venezuela", "subcountry": "Carabobo"}, "El Vig\u00eda": {"country": "Venezuela", "subcountry": "M\u00e9rida"}, "El Tocuyo": {"country": "Venezuela", "subcountry": "Lara"}, "El Tigre": {"country": "Venezuela", "subcountry": "Anzo\u00e1tegui"}, "El Lim\u00f3n": {"country": "Venezuela", "subcountry": "Aragua"}, "El Hatillo": {"country": "Venezuela", "subcountry": "Miranda"}, "Ejido": {"country": "Venezuela", "subcountry": "M\u00e9rida"}, "Cuman\u00e1": {"country": "Venezuela", "subcountry": "Sucre"}, "C\u00faa": {"country": "Venezuela", "subcountry": "Miranda"}, "Coro": {"country": "Venezuela", "subcountry": "Falc\u00f3n"}, "Ciudad Guayana": {"country": "Venezuela", "subcountry": "Bol\u00edvar"}, "Chivacoa": {"country": "Venezuela", "subcountry": "Yaracuy"}, "Charallave": {"country": "Venezuela", "subcountry": "Miranda"}, "Chacao": {"country": "Venezuela", "subcountry": "Miranda"}, "Tacarigua": {"country": "Venezuela", "subcountry": "Carabobo"}, "Caucag\u00fcito": {"country": "Venezuela", "subcountry": "Miranda"}, "Catia La Mar": {"country": "Venezuela", "subcountry": "Vargas"}, "Car\u00fapano": {"country": "Venezuela", "subcountry": "Sucre"}, "Carrizal": {"country": "Venezuela", "subcountry": "Miranda"}, "Carora": {"country": "Venezuela", "subcountry": "Lara"}, "Caracas": {"country": "Venezuela", "subcountry": "Capital"}, "Caraballeda": {"country": "Venezuela", "subcountry": "Vargas"}, "Cantaura": {"country": "Venezuela", "subcountry": "Anzo\u00e1tegui"}, "Calabozo": {"country": "Venezuela", "subcountry": "Gu\u00e1rico"}, "Cagua": {"country": "Venezuela", "subcountry": "Aragua"}, "Cabimas": {"country": "Venezuela", "subcountry": "Zulia"}, "Baruta": {"country": "Venezuela", "subcountry": "Miranda"}, "Barquisimeto": {"country": "Venezuela", "subcountry": "Lara"}, "Barinitas": {"country": "Venezuela", "subcountry": "Barinas"}, "Barinas": {"country": "Venezuela", "subcountry": "Barinas"}, "Araure": {"country": "Venezuela", "subcountry": "Portuguesa"}, "Altagracia De Orituco": {"country": "Venezuela", "subcountry": "Gu\u00e1rico"}, "Acarigua": {"country": "Venezuela", "subcountry": "Portuguesa"}, "Matur\u00edn": {"country": "Venezuela", "subcountry": "Monagas"}, "La Fr\u00eda": {"country": "Venezuela", "subcountry": "T\u00e1chira"}, "El Cafetal": {"country": "Venezuela", "subcountry": "Miranda"}, "Caucaguita": {"country": "Venezuela", "subcountry": "Miranda"}, "La Dolorita": {"country": "Venezuela", "subcountry": "Miranda"}, "Guasdualito": {"country": "Venezuela", "subcountry": "Apure"}, "San Fernando De Apure": {"country": "Venezuela", "subcountry": "Apure"}, "Road Town": {"country": "British Virgin Islands", "subcountry": "N/A"}, "Tortola": {"country": "British Virgin Islands", "subcountry": "N/A"}, "Charlotte Amalie": {"country": "U.S. Virgin Islands", "subcountry": "Saint Thomas Island"}, "Saint Croix": {"country": "U.S. Virgin Islands", "subcountry": "Saint Croix Island"}, "Y\u00ean Vinh": {"country": "Vietnam", "subcountry": "Ngh\u1ec7 An"}, "Y\u00ean B\u00e1i": {"country": "Vietnam", "subcountry": "Y\u00ean B\u00e1i"}, "V\u0169ng T\u00e0u": {"country": "Vietnam", "subcountry": "B\u00e0 R\u1ecba-V\u0169ng T\u00e0u"}, "V\u1ecb Thanh": {"country": "Vietnam", "subcountry": "Hau Giang"}, "V\u0129nh Y\u00ean": {"country": "Vietnam", "subcountry": "V\u0129nh Ph\u00fac"}, "V\u0129nh Long": {"country": "Vietnam", "subcountry": "V\u0129nh Long"}, "Vinh": {"country": "Vietnam", "subcountry": "Ngh\u1ec7 An"}, "Vi\u1ec7t Tr\u00ec": {"country": "Vietnam", "subcountry": "Ph\u00fa Th\u1ecd"}, "Th\u00e0nh Ph\u1ed1 U\u00f4ng B\u00ed": {"country": "Vietnam", "subcountry": "Qu\u1ea3ng Ninh"}, "Tuy H\u00f2a": {"country": "Vietnam", "subcountry": "Ph\u00fa Y\u00ean"}, "Th\u00e0nh Ph\u1ed1 Tuy\u00ean Quang": {"country": "Vietnam", "subcountry": "Tuy\u00ean Quang"}, "Tr\u00e0 Vinh": {"country": "Vietnam", "subcountry": "Tr\u00e0 Vinh"}, "Th\u1ee7 D\u1ea7u M\u1ed9t": {"country": "Vietnam", "subcountry": "B\u00ecnh D\u01b0\u01a1ng"}, "Ho Chi Minh City": {"country": "Vietnam", "subcountry": "Ho Chi Minh City"}, "Thanh H\u00f3a": {"country": "Vietnam", "subcountry": "Thanh H\u00f3a"}, "Th\u00e0nh Ph\u1ed1 Th\u00e1i Nguy\u00ean": {"country": "Vietnam", "subcountry": "Th\u00e1i Nguy\u00ean"}, "Th\u00e0nh Ph\u1ed1 Th\u00e1i B\u00ecnh": {"country": "Vietnam", "subcountry": "Th\u00e1i B\u00ecnh"}, "T\u00e2y Ninh": {"country": "Vietnam", "subcountry": "T\u00e2y Ninh"}, "T\u00e2n An": {"country": "Vietnam", "subcountry": "Long An"}, "Tam K\u1ef3": {"country": "Vietnam", "subcountry": "Qu\u1ea3ng Nam"}, "S\u01a1n T\u00e2y": {"country": "Vietnam", "subcountry": "Ha N\u1ed9i"}, "S\u01a1n La": {"country": "Vietnam", "subcountry": "S\u01a1n La"}, "S\u00f4ng C\u1ea7u": {"country": "Vietnam", "subcountry": "Ph\u00fa Y\u00ean"}, "S\u00f3c Tr\u0103ng": {"country": "Vietnam", "subcountry": "S\u00f3c Tr\u0103ng"}, "Sa P\u00e1": {"country": "Vietnam", "subcountry": "L\u00e0o Cai"}, "Sadek": {"country": "Vietnam", "subcountry": "\u0110\u1ed3ng Th\u00e1p"}, "R\u1ea1ch Gi\u00e1": {"country": "Vietnam", "subcountry": "Ki\u1ebfn Giang"}, "Qui Nhon": {"country": "Vietnam", "subcountry": "B\u00ecnh \u0110\u1ecbnh"}, "Qu\u1ea3ng Ng\u00e3i": {"country": "Vietnam", "subcountry": "Qu\u1ea3ng Ng\u00e3i"}, "Pleiku": {"country": "Vietnam", "subcountry": "Gia Lai"}, "Th\u00e0nh Ph\u1ed1 Ph\u1ee7 L\u00fd": {"country": "Vietnam", "subcountry": "H\u00e0 Nam"}, "Ph\u00fa Kh\u01b0\u01a1ng": {"country": "Vietnam", "subcountry": "T\u00e2y Ninh"}, "Phan Thi\u1ebft": {"country": "Vietnam", "subcountry": "B\u00ecnh Thu\u1eadn"}, "Phan Rang-Th\u00e1p Ch\u00e0m": {"country": "Vietnam", "subcountry": "Ninh Thu\u1eadn"}, "Th\u00e0nh Ph\u1ed1 Ninh B\u00ecnh": {"country": "Vietnam", "subcountry": "Ninh B\u00ecnh"}, "Nha Trang": {"country": "Vietnam", "subcountry": "Kh\u00e1nh H\u00f2a"}, "Th\u00e0nh Ph\u1ed1 Nam \u0110\u1ecbnh": {"country": "Vietnam", "subcountry": "Nam \u0110\u1ecbnh"}, "M\u1ef9 Tho": {"country": "Vietnam", "subcountry": "Ti\u1ec1n Giang"}, "M\u00f3ng C\u00e1i": {"country": "Vietnam", "subcountry": "Qu\u1ea3ng Ninh"}, "Long Xuy\u00ean": {"country": "Vietnam", "subcountry": "An Giang"}, "L\u00e0o Cai": {"country": "Vietnam", "subcountry": "L\u00e0o Cai"}, "Th\u00e0nh Ph\u1ed1 L\u1ea1ng S\u01a1n": {"country": "Vietnam", "subcountry": "L\u1ea1ng S\u01a1n"}, "La Gi": {"country": "Vietnam", "subcountry": "B\u00ecnh Thu\u1eadn"}, "Kon Tum": {"country": "Vietnam", "subcountry": "Kon Tum"}, "H\u01b0ng Y\u00ean": {"country": "Vietnam", "subcountry": "H\u01b0ng Y\u00ean"}, "Hu\u1ebf": {"country": "Vietnam", "subcountry": "Th\u1eeba Thi\u00ean-Hu\u1ebf"}, "Th\u00e0nh Ph\u1ed1 H\u1ea1 Long": {"country": "Vietnam", "subcountry": "Qu\u1ea3ng Ninh"}, "H\u1ed9i An": {"country": "Vietnam", "subcountry": "Qu\u1ea3ng Nam"}, "Th\u00e0nh Ph\u1ed1 H\u00f2a B\u00ecnh": {"country": "Vietnam", "subcountry": "H\u00f2a B\u00ecnh"}, "H\u00e0 T\u0129nh": {"country": "Vietnam", "subcountry": "H\u00e0 T\u0129nh"}, "H\u00e0 Ti\u00ean": {"country": "Vietnam", "subcountry": "Ki\u1ebfn Giang"}, "Hanoi": {"country": "Vietnam", "subcountry": "Ha N\u1ed9i"}, "Haiphong": {"country": "Vietnam", "subcountry": "H\u1ea3i Ph\u00f2ng"}, "Th\u00e0nh Ph\u1ed1 H\u1ea3i D\u01b0\u01a1ng": {"country": "Vietnam", "subcountry": "H\u1ea3i D\u01b0\u01a1ng"}, "Th\u00e0nh Ph\u1ed1 H\u00e0 Giang": {"country": "Vietnam", "subcountry": "H\u00e0 Giang"}, "H\u00e0 \u0110\u00f4ng": {"country": "Vietnam", "subcountry": "Ha N\u1ed9i"}, "Don Luan": {"country": "Vietnam", "subcountry": "B\u00ecnh Ph\u01b0\u1edbc"}, "Kwang Binh": {"country": "Vietnam", "subcountry": "Qu\u1ea3ng B\u00ecnh"}, "\u00d0\u00f4ng H\u00e0": {"country": "Vietnam", "subcountry": "Qu\u1ea3ng Tr\u1ecb"}, "Dien Bien Phu": {"country": "Vietnam", "subcountry": "T\u1ec9nh \u00d0i\u1ec7n Bi\u00ean"}, "Da Nang": {"country": "Vietnam", "subcountry": "\u0110\u00e0 N\u1eb5ng"}, "\u00d0\u00e0 L\u1ea1t": {"country": "Vietnam", "subcountry": "L\u00e2m \u0110\u1ed3ng"}, "C\u1ee7 Chi": {"country": "Vietnam", "subcountry": "Ho Chi Minh City"}, "Cho Dok": {"country": "Vietnam", "subcountry": "An Giang"}, "C\u00e1t B\u00e0": {"country": "Vietnam", "subcountry": "H\u1ea3i Ph\u00f2ng"}, "Cao L\u00e3nh": {"country": "Vietnam", "subcountry": "\u0110\u1ed3ng Th\u00e1p"}, "Th\u00e0nh Ph\u1ed1 Cao B\u1eb1ng": {"country": "Vietnam", "subcountry": "Cao B\u1eb1ng"}, "C\u1ea7n Th\u01a1": {"country": "Vietnam", "subcountry": "C\u1ea7n Th\u01a1"}, "C\u1ea7n Gi\u1edd": {"country": "Vietnam", "subcountry": "Ho Chi Minh City"}, "C\u1ea7n Giu\u1ed9c": {"country": "Vietnam", "subcountry": "Long An"}, "Cam Ranh": {"country": "Vietnam", "subcountry": "Kh\u00e1nh H\u00f2a"}, "C\u1ea9m Ph\u1ea3 Mines": {"country": "Vietnam", "subcountry": "Qu\u1ea3ng Ninh"}, "C\u00e0 Mau": {"country": "Vietnam", "subcountry": "C\u00e0 Mau"}, "Bu\u00f4n Ma Thu\u1ed9t": {"country": "Vietnam", "subcountry": "\u00d0\u1eafc L\u1eafk"}, "B\u1ec9m S\u01a1n": {"country": "Vietnam", "subcountry": "Thanh H\u00f3a"}, "Bi\u00ean H\u00f2a": {"country": "Vietnam", "subcountry": "\u0110\u1ed3ng Nai"}, "B\u1ebfn Tre": {"country": "Vietnam", "subcountry": "B\u1ebfn Tre"}, "B\u1ea3o L\u1ed9c": {"country": "Vietnam", "subcountry": "L\u00e2m \u0110\u1ed3ng"}, "B\u1eafc Ninh": {"country": "Vietnam", "subcountry": "B\u1eafc Ninh"}, "Th\u00e0nh Ph\u1ed1 B\u1ea1c Li\u00eau": {"country": "Vietnam", "subcountry": "B\u1ea1c Li\u00eau"}, "B\u1eafc Giang": {"country": "Vietnam", "subcountry": "B\u1eafc Giang"}, "B\u1eafc K\u1ea1n": {"country": "Vietnam", "subcountry": "B\u1eafc K\u1ea1n"}, "\u0110inh V\u0103n": {"country": "Vietnam", "subcountry": "L\u00e2m \u0110\u1ed3ng"}, "Port-Vila": {"country": "Vanuatu", "subcountry": "Shefa"}, "Mata-Utu": {"country": "Wallis and Futuna", "subcountry": "Circonscription d'Uv\u00e9a"}, "Apia": {"country": "Samoa", "subcountry": "Tuamasaga"}, "Zve\u010dan": {"country": "Kosovo", "subcountry": "Mitrovica"}, "Vushtrri": {"country": "Kosovo", "subcountry": "Mitrovica"}, "Vitina": {"country": "Kosovo", "subcountry": "Gjilan"}, "Ferizaj": {"country": "Kosovo", "subcountry": "Ferizaj"}, "Suva Reka": {"country": "Kosovo", "subcountry": "Prizren"}, "Shtime": {"country": "Kosovo", "subcountry": "Ferizaj"}, "Prizren": {"country": "Kosovo", "subcountry": "Prizren"}, "Pristina": {"country": "Kosovo", "subcountry": "Pristina"}, "Podujeva": {"country": "Kosovo", "subcountry": "Pristina"}, "Pej\u00eb": {"country": "Kosovo", "subcountry": "Pec"}, "Orahovac": {"country": "Kosovo", "subcountry": "Gjakova"}, "Llazic\u00eb": {"country": "Kosovo", "subcountry": "Prizren"}, "Leposaviq": {"country": "Kosovo", "subcountry": "Mitrovica"}, "Mitrovic\u00eb": {"country": "Kosovo", "subcountry": "Mitrovica"}, "Kosovo Polje": {"country": "Kosovo", "subcountry": "Pristina"}, "Istok": {"country": "Kosovo", "subcountry": "Pec"}, "Gjilan": {"country": "Kosovo", "subcountry": "Gjilan"}, "Glogovac": {"country": "Kosovo", "subcountry": "Pristina"}, "Dragash": {"country": "Kosovo", "subcountry": "Prizren"}, "De\u00e7an": {"country": "Kosovo", "subcountry": "Gjakova"}, "Gjakov\u00eb": {"country": "Kosovo", "subcountry": "Gjakova"}, "Zinjib\u0101r": {"country": "Yemen", "subcountry": "Abyan"}, "Zab\u012bd": {"country": "Yemen", "subcountry": "Mu\u1e29\u0101faz\u0327at al \u1e28udaydah"}, "Yar\u012bm": {"country": "Yemen", "subcountry": "Ibb"}, "Ta\u2018Izz": {"country": "Yemen", "subcountry": "Ta\u2018izz"}, "Sayy\u0101n": {"country": "Yemen", "subcountry": "Sanaa"}, "Sanaa": {"country": "Yemen", "subcountry": "Sanaa"}, "Sa\u1e29ar": {"country": "Yemen", "subcountry": "Sanaa"}, "Sa'Dah": {"country": "Yemen", "subcountry": "\u015ea\u2018dah"}, "Ma'Rib": {"country": "Yemen", "subcountry": "Ma\u2019rib"}, "La\u1e29ij": {"country": "Yemen", "subcountry": "La\u1e29ij"}, "Ibb": {"country": "Yemen", "subcountry": "Ibb"}, "\u1e28ajjah": {"country": "Yemen", "subcountry": "\u1e28ajjah"}, "Dh\u012b As Suf\u0101l": {"country": "Yemen", "subcountry": "Ibb"}, "Dham\u0101r": {"country": "Yemen", "subcountry": "Dham\u0101r"}, "Bayt Al Faq\u012bh": {"country": "Yemen", "subcountry": "Mu\u1e29\u0101faz\u0327at al \u1e28udaydah"}, "B\u0101jil": {"country": "Yemen", "subcountry": "Mu\u1e29\u0101faz\u0327at al \u1e28udaydah"}, "Ataq": {"country": "Yemen", "subcountry": "Shabwah"}, "\u2018Amr\u0101n": {"country": "Yemen", "subcountry": "Omran"}, "Al Mukall\u0101": {"country": "Yemen", "subcountry": "Mu\u1e29\u0101faz\u0327at \u1e28a\u1e11ramawt"}, "Al \u1e28udaydah": {"country": "Yemen", "subcountry": "Mu\u1e29\u0101faz\u0327at al \u1e28udaydah"}, "Al \u1e28azm": {"country": "Yemen", "subcountry": "Al Jawf"}, "Aden": {"country": "Yemen", "subcountry": "Aden"}, "Mamoudzou": {"country": "Mayotte", "subcountry": "Mamoudzou"}, "Dzaoudzi": {"country": "Mayotte", "subcountry": "Dzaoudzi"}, "Koungou": {"country": "Mayotte", "subcountry": "Koungou"}, "Roodepoort": {"country": "South Africa", "subcountry": "Gauteng"}, "Zeerust": {"country": "South Africa", "subcountry": "North-West"}, "Wolmaransstad": {"country": "South Africa", "subcountry": "North-West"}, "White River": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Witbank": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Westonaria": {"country": "South Africa", "subcountry": "Gauteng"}, "Wesselsbron": {"country": "South Africa", "subcountry": "Orange Free State"}, "Welkom": {"country": "South Africa", "subcountry": "Orange Free State"}, "Warrenton": {"country": "South Africa", "subcountry": "Northern Cape"}, "Warmbaths": {"country": "South Africa", "subcountry": "Limpopo"}, "Vryheid": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Vryburg": {"country": "South Africa", "subcountry": "North-West"}, "Volksrust": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Virginia": {"country": "South Africa", "subcountry": "Orange Free State"}, "Viljoenskroon": {"country": "South Africa", "subcountry": "Orange Free State"}, "Vereeniging": {"country": "South Africa", "subcountry": "Gauteng"}, "Vanderbijlpark": {"country": "South Africa", "subcountry": "Gauteng"}, "Upington": {"country": "South Africa", "subcountry": "Northern Cape"}, "Mthatha": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Umkomaas": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Ulundi": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Uitenhage": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Tzaneen": {"country": "South Africa", "subcountry": "Limpopo"}, "Thohoyandou": {"country": "South Africa", "subcountry": "Limpopo"}, "Theunissen": {"country": "South Africa", "subcountry": "Orange Free State"}, "Thaba Nchu": {"country": "South Africa", "subcountry": "Orange Free State"}, "Tembisa": {"country": "South Africa", "subcountry": "Gauteng"}, "Stutterheim": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Stilfontein": {"country": "South Africa", "subcountry": "North-West"}, "Stanger": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Standerton": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Springs": {"country": "South Africa", "subcountry": "Gauteng"}, "Soweto": {"country": "South Africa", "subcountry": "Gauteng"}, "Somerset East": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Siyabuswa": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Senekal": {"country": "South Africa", "subcountry": "Orange Free State"}, "Secunda": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Scottburgh": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Schweizer-Reneke": {"country": "South Africa", "subcountry": "North-West"}, "Sasolburg": {"country": "South Africa", "subcountry": "Orange Free State"}, "Rustenburg": {"country": "South Africa", "subcountry": "North-West"}, "Richards Bay": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Reitz": {"country": "South Africa", "subcountry": "Orange Free State"}, "Randfontein": {"country": "South Africa", "subcountry": "Gauteng"}, "Queenstown": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Queensdale": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Pretoria": {"country": "South Africa", "subcountry": "Gauteng"}, "Mokopane": {"country": "South Africa", "subcountry": "Limpopo"}, "Potchefstroom": {"country": "South Africa", "subcountry": "North-West"}, "Port Shepstone": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Port Elizabeth": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Port Alfred": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Plettenberg Bay": {"country": "South Africa", "subcountry": "Western Cape"}, "Piet Retief": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Polokwane": {"country": "South Africa", "subcountry": "Limpopo"}, "Pietermaritzburg": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Phuthaditjhaba": {"country": "South Africa", "subcountry": "Orange Free State"}, "Phalaborwa": {"country": "South Africa", "subcountry": "Limpopo"}, "Parys": {"country": "South Africa", "subcountry": "Orange Free State"}, "Pampierstad": {"country": "South Africa", "subcountry": "North-West"}, "Oudtshoorn": {"country": "South Africa", "subcountry": "Western Cape"}, "Modimolle": {"country": "South Africa", "subcountry": "Limpopo"}, "Nkowakowa": {"country": "South Africa", "subcountry": "Limpopo"}, "Nigel": {"country": "South Africa", "subcountry": "Gauteng"}, "Nelspruit": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Mpumalanga": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Mpophomeni": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Mossel Bay": {"country": "South Africa", "subcountry": "Western Cape"}, "Mondlo": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Mmabatho": {"country": "South Africa", "subcountry": "North-West"}, "Mabopane": {"country": "South Africa", "subcountry": "Gauteng"}, "Lydenburg": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Louis Trichardt": {"country": "South Africa", "subcountry": "Limpopo"}, "Lichtenburg": {"country": "South Africa", "subcountry": "North-West"}, "Lebowakgomo": {"country": "South Africa", "subcountry": "Limpopo"}, "Lady Frere": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Ladybrand": {"country": "South Africa", "subcountry": "Orange Free State"}, "Kutloanong": {"country": "South Africa", "subcountry": "Orange Free State"}, "Kruisfontein": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Krugersdorp": {"country": "South Africa", "subcountry": "Gauteng"}, "Kroonstad": {"country": "South Africa", "subcountry": "Orange Free State"}, "Kriel": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Komatipoort": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Kokstad": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Knysna": {"country": "South Africa", "subcountry": "Western Cape"}, "Klerksdorp": {"country": "South Africa", "subcountry": "North-West"}, "Kimberley": {"country": "South Africa", "subcountry": "Northern Cape"}, "Johannesburg": {"country": "South Africa", "subcountry": "Gauteng"}, "Howick": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Hennenman": {"country": "South Africa", "subcountry": "Orange Free State"}, "Hendrina": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Heilbron": {"country": "South Africa", "subcountry": "Orange Free State"}, "Harrismith": {"country": "South Africa", "subcountry": "Orange Free State"}, "Grahamstown": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Graaff-Reinet": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Giyani": {"country": "South Africa", "subcountry": "Limpopo"}, "George": {"country": "South Africa", "subcountry": "Western Cape"}, "Ga-Rankuwa": {"country": "South Africa", "subcountry": "North-West"}, "Fort Beaufort": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Fochville": {"country": "South Africa", "subcountry": "North-West"}, "Esikhawini": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Empangeni": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Embalenhle": {"country": "South Africa", "subcountry": "Mpumalanga"}, "East London": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Durban": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Dundee": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Duiwelskloof": {"country": "South Africa", "subcountry": "Limpopo"}, "Driefontein": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Delmas": {"country": "South Africa", "subcountry": "Mpumalanga"}, "De Aar": {"country": "South Africa", "subcountry": "Northern Cape"}, "Cullinan": {"country": "South Africa", "subcountry": "Gauteng"}, "Cradock": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Christiana": {"country": "South Africa", "subcountry": "North-West"}, "Carletonville": {"country": "South Africa", "subcountry": "Gauteng"}, "Bronkhorstspruit": {"country": "South Africa", "subcountry": "Gauteng"}, "Brits": {"country": "South Africa", "subcountry": "North-West"}, "Brakpan": {"country": "South Africa", "subcountry": "Gauteng"}, "Botshabelo": {"country": "South Africa", "subcountry": "Orange Free State"}, "Bothaville": {"country": "South Africa", "subcountry": "Orange Free State"}, "Boksburg": {"country": "South Africa", "subcountry": "Gauteng"}, "Bloemhof": {"country": "South Africa", "subcountry": "North-West"}, "Bloemfontein": {"country": "South Africa", "subcountry": "Orange Free State"}, "Bhisho": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Bethal": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Benoni": {"country": "South Africa", "subcountry": "Gauteng"}, "Beaufort West": {"country": "South Africa", "subcountry": "Western Cape"}, "Ballitoville": {"country": "South Africa", "subcountry": "KwaZulu-Natal"}, "Balfour": {"country": "South Africa", "subcountry": "Mpumalanga"}, "Allanridge": {"country": "South Africa", "subcountry": "Orange Free State"}, "Aliwal North": {"country": "South Africa", "subcountry": "Eastern Cape"}, "Ekangala": {"country": "South Africa", "subcountry": "Gauteng"}, "Midrand": {"country": "South Africa", "subcountry": "Gauteng"}, "Centurion": {"country": "South Africa", "subcountry": "Gauteng"}, "Stellenbosch": {"country": "South Africa", "subcountry": "Western Cape"}, "Saldanha": {"country": "South Africa", "subcountry": "Western Cape"}, "Paarl": {"country": "South Africa", "subcountry": "Western Cape"}, "Malmesbury": {"country": "South Africa", "subcountry": "Western Cape"}, "Lansdowne": {"country": "South Africa", "subcountry": "Western Cape"}, "Kraaifontein": {"country": "South Africa", "subcountry": "Western Cape"}, "Hermanus": {"country": "South Africa", "subcountry": "Western Cape"}, "Grabouw": {"country": "South Africa", "subcountry": "Western Cape"}, "Cape Town": {"country": "South Africa", "subcountry": "Western Cape"}, "Atlantis": {"country": "South Africa", "subcountry": "Western Cape"}, "Rondebosch": {"country": "South Africa", "subcountry": "Western Cape"}, "Retreat": {"country": "South Africa", "subcountry": "Western Cape"}, "Diepsloot": {"country": "South Africa", "subcountry": "Gauteng"}, "Nchelenge": {"country": "Zambia", "subcountry": "Luapula"}, "Mbala": {"country": "Zambia", "subcountry": "Northern"}, "Kawambwa": {"country": "Zambia", "subcountry": "Luapula"}, "Siavonga": {"country": "Zambia", "subcountry": "Southern"}, "Sesheke": {"country": "Zambia", "subcountry": "Western"}, "Samfya": {"country": "Zambia", "subcountry": "Luapula"}, "Petauke": {"country": "Zambia", "subcountry": "Eastern"}, "Ndola": {"country": "Zambia", "subcountry": "Copperbelt"}, "Mumbwa": {"country": "Zambia", "subcountry": "Central"}, "Mufulira": {"country": "Zambia", "subcountry": "Copperbelt"}, "Mpika": {"country": "Zambia", "subcountry": "Northern"}, "Monze": {"country": "Zambia", "subcountry": "Southern"}, "Mongu": {"country": "Zambia", "subcountry": "Western"}, "Mazabuka": {"country": "Zambia", "subcountry": "Southern"}, "Mansa": {"country": "Zambia", "subcountry": "Luapula"}, "Lusaka": {"country": "Zambia", "subcountry": "Lusaka"}, "Luanshya": {"country": "Zambia", "subcountry": "Copperbelt"}, "Livingstone": {"country": "Zambia", "subcountry": "Southern"}, "Kitwe": {"country": "Zambia", "subcountry": "Copperbelt"}, "Kapiri Mposhi": {"country": "Zambia", "subcountry": "Central"}, "Kansanshi": {"country": "Zambia", "subcountry": "North-Western"}, "Kalulushi": {"country": "Zambia", "subcountry": "Copperbelt"}, "Kafue": {"country": "Zambia", "subcountry": "Lusaka"}, "Kabwe": {"country": "Zambia", "subcountry": "Central"}, "Choma": {"country": "Zambia", "subcountry": "Southern"}, "Chipata": {"country": "Zambia", "subcountry": "Eastern"}, "Chingola": {"country": "Zambia", "subcountry": "Copperbelt"}, "Chililabombwe": {"country": "Zambia", "subcountry": "Copperbelt"}, "Zvishavane": {"country": "Zimbabwe", "subcountry": "Masvingo"}, "Victoria Falls": {"country": "Zimbabwe", "subcountry": "Matabeleland North"}, "Shurugwi": {"country": "Zimbabwe", "subcountry": "Midlands"}, "Rusape": {"country": "Zimbabwe", "subcountry": "Manicaland"}, "Redcliff": {"country": "Zimbabwe", "subcountry": "Midlands"}, "Mutare": {"country": "Zimbabwe", "subcountry": "Manicaland"}, "Masvingo": {"country": "Zimbabwe", "subcountry": "Masvingo"}, "Marondera": {"country": "Zimbabwe", "subcountry": "Mashonaland East"}, "Kwekwe": {"country": "Zimbabwe", "subcountry": "Midlands"}, "Karoi": {"country": "Zimbabwe", "subcountry": "Mashonaland West"}, "Kariba": {"country": "Zimbabwe", "subcountry": "Mashonaland West"}, "Hwange": {"country": "Zimbabwe", "subcountry": "Matabeleland North"}, "Harare": {"country": "Zimbabwe", "subcountry": "Harare"}, "Gweru": {"country": "Zimbabwe", "subcountry": "Midlands"}, "Gokwe": {"country": "Zimbabwe", "subcountry": "Midlands"}, "Chiredzi": {"country": "Zimbabwe", "subcountry": "Masvingo"}, "Chipinge": {"country": "Zimbabwe", "subcountry": "Manicaland"}, "Chinhoyi": {"country": "Zimbabwe", "subcountry": "Mashonaland West"}, "Chegutu": {"country": "Zimbabwe", "subcountry": "Mashonaland West"}, "Bulawayo": {"country": "Zimbabwe", "subcountry": "Bulawayo"}, "Bindura": {"country": "Zimbabwe", "subcountry": "Mashonaland Central"}, "Beitbridge": {"country": "Zimbabwe", "subcountry": "Matabeleland South"}, "Epworth": {"country": "Zimbabwe", "subcountry": "Harare"}, "Chitungwiza": {"country": "Zimbabwe", "subcountry": "Harare"}} \ No newline at end of file diff --git a/tests/test_world_clock.py b/tests/test_world_clock.py new file mode 100644 index 00000000..4941db25 --- /dev/null +++ b/tests/test_world_clock.py @@ -0,0 +1,284 @@ +from datetime import datetime + +import httpx +import pytest +import respx + +from app.internal.world_clock import ( + TIMEZONES_BASE_URL, + generate_possible_timezone_path, + generate_possible_timezone_path_by_country, + get_all_possible_timezone_paths_for_given_place, + get_api_data, + get_arbitrary_timezone_of_country, + get_continent, + get_country, + get_current_time_in_place, + get_part_of_day_and_feedback, + get_subcountry, + get_timezone_from_subcountry, + get_timezone_path_for_given_place, + get_timezones_parts, + load_city_country_data_set, + load_country_continent_data_set, + load_country_subcountry_data_set, + meeting_possibility_feedback, + normalize_continent_name, + parse_timezones_list, + search_timezone_by_just_place, + standardize_continent, + standardize_country_or_place, +) + + +@respx.mock +@pytest.mark.asyncio +async def test_api_http_error(): + respx.get(TIMEZONES_BASE_URL).mock(return_value=httpx.Response(500)) + output = await get_api_data(TIMEZONES_BASE_URL) + assert not output + + +@pytest.mark.asyncio +async def test_get_api_data(): + timezones_data = await get_api_data(TIMEZONES_BASE_URL) + assert timezones_data + + +items_details = [ + ("Africa", "Africa"), + ("South America", "America"), + ("Oceania", "Oceania"), +] + + +@pytest.mark.parametrize("continent_name, normalized_continent", items_details) +def test_normalize_continent_name(continent_name, normalized_continent): + assert normalize_continent_name(continent_name) == normalized_continent + + +items_details = [ + ("Bermuda", "America"), + ("Narnia", None), +] + + +@pytest.mark.parametrize("country_name, continent", items_details) +def test_get_continent(country_name, continent): + assert get_continent(country_name) == continent + + +def test_load_city_country_data_set(): + assert load_city_country_data_set() + + +def test_load_country_continent_data_set(): + assert load_country_continent_data_set() + + +def test_load_country_subcountry_data_set(): + assert load_country_subcountry_data_set() + + +items_details = [ + ("rio de janeiro", "Brazil"), + ("pago pago", "American Samoa"), + ("jerusalem", "Israel"), + ("Narnia", None), +] + + +@pytest.mark.parametrize("city_name, country", items_details) +def test_get_country(city_name, country): + assert get_country(city_name) == country + + +items_details = [ + ("Israel", "Jerusalem", ["Asia/Israel", "Asia/Jerusalem"]), +] + + +@pytest.mark.asyncio +@pytest.mark.parametrize("country, place, res", items_details) +async def test_generate_possible_timezone_path_by_country(country, place, res): + assert (await generate_possible_timezone_path_by_country(country, place) + == res) + + +items_details = [ + ("Australia", "http://worldtimeapi.org/api/timezone/Australia/Sydney"), +] + + +@pytest.mark.asyncio +@pytest.mark.parametrize("country, res", items_details) +async def test_get_arbitrary_timezone_of_country(country, res): + assert await get_arbitrary_timezone_of_country(country) == res + + +items_details = [ + ("Haifa", "http://worldtimeapi.org/api/timezone/Asia/Jerusalem"), +] + + +@pytest.mark.parametrize("place, res", items_details) +def test_get_timezone_from_subcountry(place, res): + assert get_timezone_from_subcountry(place) == res + + +items_details = [ + ("HAIFA", "Haifa"), + ("Binghamton", "New York"), + ("Ramat Gan", "Tel Aviv"), +] + + +@pytest.mark.parametrize("city_name, subcountry", items_details) +def test_get_subcountry(city_name, subcountry): + assert get_subcountry(city_name) == subcountry + + +@pytest.mark.asyncio +async def test_parse_timezones_list(): + assert ("Africa", "Abidjan") in await parse_timezones_list() + + +items_details = [ + ("place", "Abidjan"), + ("continent", "Africa"), +] + + +@pytest.mark.asyncio +@pytest.mark.parametrize("param, res", items_details) +async def test_get_timezones_parts(param, res): + time_zone_parts = await get_timezones_parts(param) + assert res == time_zone_parts[0] + + +items_details = [ + ("Broken Hill", "Broken_Hill"), + (None, None), +] + + +@pytest.mark.parametrize("place, standardized_place", items_details) +def test_standardize_country_or_place(place, standardized_place): + assert standardize_country_or_place(place) == standardized_place + + +items_details = [ + ("Africa", "Africa"), + ("South America", None), + ("America", "America"), + ("Oceania", None), +] + + +@pytest.mark.asyncio +@pytest.mark.parametrize("continent_name, standardized_continent", + items_details) +async def test_standardize_continent(continent_name, standardized_continent): + assert (await standardize_continent(continent_name) + == standardized_continent) + + +items_details = [ + ("anjdk", None), + ("Jerusalem", "Asia/Jerusalem"), +] + + +@pytest.mark.asyncio +@pytest.mark.parametrize("place_name, timezone", items_details) +async def test_search_timezone_by_just_place(place_name, timezone): + assert await search_timezone_by_just_place(place_name) == timezone + + +items_details = [ + ( + { + "continent": "Asia", + "country": "Israel", + "place": "Haifa", + }, + ["Asia/Israel", "Asia/Haifa"], + ), +] + + +@pytest.mark.parametrize("map, possibilities", items_details) +def test_generate_possible_timezone_path(map, possibilities): + assert generate_possible_timezone_path(map) == possibilities + + +items_details = [ + ("pago pago", ["Pacific/Pago_Pago"]), + ("Nauru", ["Pacific/Nauru"]), + ("Yaren", ["Pacific/Nauru"]), + ("Haifa", ["Asia/Israel", "Asia/Haifa"]), + ("Australia", []), +] + + +@pytest.mark.asyncio +@pytest.mark.parametrize("place_name, possibilities", items_details) +async def test_get_all_possible_timezone_paths_for_given_place( + place_name, + possibilities, +): + assert ( + await get_all_possible_timezone_paths_for_given_place(place_name) + == possibilities + ) + + +items_details = [ + ("pago pago", "http://worldtimeapi.org/api/timezone/Pacific/Pago_Pago"), + ("Nauru", "http://worldtimeapi.org/api/timezone/Pacific/Nauru"), + ("Yaren", "http://worldtimeapi.org/api/timezone/Pacific/Nauru"), + ("Haifa", "http://worldtimeapi.org/api/timezone/Asia/Jerusalem"), + ("Australia", "http://worldtimeapi.org/api/timezone/Australia/Sydney"), +] + + +@pytest.mark.asyncio +@pytest.mark.parametrize("place_name, path", items_details) +async def test_get_timezone_path_for_given_place(place_name, path): + assert await get_timezone_path_for_given_place(place_name) == path + + +@pytest.mark.asyncio +async def test_get_current_time_in_place(): + current_time = await get_current_time_in_place("pago pago") + assert len(current_time) == 8 + + +def test_get_part_of_day_and_feedback(): + assert get_part_of_day_and_feedback( + datetime.strptime("02:42:45", "%H:%M:%S")) == ( + "Late night", + "Not possible", + ) + + +items_details = [ + ( + "22:22:12", + "Haifa", + [("20:22:12", "Evening", "Better not"), + ("21:22:12", "Night", "Better not")], + ), + ( + "22:22:12", + "Australia", + [("10:22:12", "Morning", "OK"), + ("11:22:12", "Late morning", "OK")], + ), +] + + +@pytest.mark.asyncio +@pytest.mark.parametrize("time_str, place_name, res", items_details) +async def test_meeting_possibility_feedback(time_str, place_name, res): + assert await meeting_possibility_feedback(time_str, place_name) in res