From 02afef7ca33506fa2e889bda73596207ffeabbf5 Mon Sep 17 00:00:00 2001 From: Darshan Gada Date: Mon, 27 Apr 2026 21:24:31 +0530 Subject: [PATCH 1/2] feat(postcodes/LU): import 4,491 Luxembourg CACLR codes (#1039) Adds the official Luxembourg postcode dataset from CACLR (Centre des Adresses du Cadastre du Luxembourg) via data.public.lu, CC-Zero. Why --- Closes the LU gap on issue #1039. The CACLR registry is the canonical reference for Luxembourgish addresses, published by the LU government under public-domain CC-Zero. Coverage -------- - 4,491 unique (code, locality, canton) tuples / 100% state FK - All 12 CSC cantons covered Source pipeline --------------- 1. data.public.lu API resolves the latest caclr.xlsx URL (URL is date-stamped and rotates every refresh) 2. Importer parses the denormalised TR.DiCaCoLo.RuCp join sheet directly via openpyxl 3. SOURCE_TO_ISO2 maps 13 source canton labels to 12 CSC iso2 ('LUXEMBOURG-VILLE' capital sub-classification collapses to L) 4. 118 '?' postcodes (newly named streets without assigned codes) are filtered out License ------- CC-Zero (public domain). Each row carries `source: "caclr-data-public-lu"` for export-time provenance. Validation ---------- - python3 -m py_compile passes - 100% regex match (^(?:L-)?\d{4}$) - 100% state_id valid + state.country_id == 127 + state_code agrees - No auto-managed fields (id, created_at, updated_at, flag) Co-Authored-By: Claude Opus 4.7 (1M context) --- .../sync/import_luxembourg_postcodes.py | 252 + contributions/postcodes/LU.json | 44912 ++++++++++++++++ 2 files changed, 45164 insertions(+) create mode 100644 bin/scripts/sync/import_luxembourg_postcodes.py create mode 100644 contributions/postcodes/LU.json diff --git a/bin/scripts/sync/import_luxembourg_postcodes.py b/bin/scripts/sync/import_luxembourg_postcodes.py new file mode 100644 index 000000000..14d9476bd --- /dev/null +++ b/bin/scripts/sync/import_luxembourg_postcodes.py @@ -0,0 +1,252 @@ +#!/usr/bin/env python3 +"""Luxembourg -> contributions/postcodes/LU.json importer for issue #1039. + +Source data +----------- +The official ``CACLR`` registry (Centre des Adresses du Cadastre du +Luxembourg / Registre national des localités et des rues), published +under CC-Zero by the Luxembourgish government on data.public.lu, is +the canonical address reference. + +The xlsx contains a denormalised join sheet ``TR.DiCaCoLo.RuCp`` with +columns: + DISTRICT_NOM, CANTON_NOM, COMMUNE_NOM, LOCALITE_NOM, RUE_NOM, CODE_POSTAL + +Source URL: https://download.data.public.lu/resources/registre-national-des-localites-et-des-rues/.../caclr.xlsx + +What this script does +--------------------- +1. Resolves the latest ``caclr.xlsx`` URL via the data.public.lu API + (URL is date-stamped and rotates on every refresh). +2. Fetches the xlsx via urllib (curl is blocked). +3. Parses ``TR.DiCaCoLo.RuCp`` with openpyxl, deduplicates to unique + ``(code, locality, canton)`` tuples. +4. Maps the 13 source canton labels (12 cantons + the + ``LUXEMBOURG-VILLE`` capital-city sub-classification) to CSC's + 12 iso2 codes via SOURCE_TO_ISO2. +5. Skips 118 records with `?` postcode (new streets without + assigned codes). +6. Writes contributions/postcodes/LU.json idempotently. + +Why xlsx (not the population CSV) +--------------------------------- +The simpler ``rnpp-code-postal.csv`` ships only postcode + population +counts — no canton FK, no locality name. Only ``caclr.xlsx`` carries +the canton/commune/locality joins required for full state FK +resolution. + +License +------- +CC-Zero (public domain). No attribution required, but each row carries +``source: "caclr-data-public-lu"`` for export-time provenance. + +Usage +----- + python3 bin/scripts/sync/import_luxembourg_postcodes.py +""" + +from __future__ import annotations + +import argparse +import io +import json +import re +import sys +import urllib.request +from pathlib import Path +from typing import Dict, List + +import openpyxl + + +DATASET_API_URL = ( + "https://data.public.lu/api/1/datasets/" + "registre-national-des-localites-et-des-rues/" +) + +# Source CANTON_NOM (uppercase) -> CSC iso2. +SOURCE_TO_ISO2: Dict[str, str] = { + "CAPELLEN": "CA", + "CLERVAUX": "CL", + "DIEKIRCH": "DI", + "ECHTERNACH": "EC", + "ESCH-SUR-ALZETTE": "ES", + "GREVENMACHER": "G", + "LUXEMBOURG": "L", + "LUXEMBOURG-VILLE": "L", # capital-city administrative sub-entity + "MERSCH": "ME", + "REDANGE": "RD", + "REMICH": "RM", + "VIANDEN": "VD", + "WILTZ": "WI", +} + + +def resolve_xlsx_url() -> str: + req = urllib.request.Request( + DATASET_API_URL, headers={"User-Agent": "csc-database-postcode-importer"} + ) + with urllib.request.urlopen(req, timeout=20) as r: + meta = json.loads(r.read()) + for res in meta.get("resources", []): + if res.get("format") == "xlsx" and "caclr" in (res.get("title") or "").lower(): + return res["url"] + raise RuntimeError("caclr.xlsx not found in dataset resources") + + +def fetch_bytes(url: str) -> bytes: + req = urllib.request.Request( + url, headers={"User-Agent": "csc-database-postcode-importer"} + ) + with urllib.request.urlopen(req, timeout=120) as r: + return r.read() + + +def main() -> int: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--input", default=None, help="local xlsx (skip fetch)") + parser.add_argument("--dry-run", action="store_true") + args = parser.parse_args() + + if args.input: + raw = Path(args.input).read_bytes() + else: + url = resolve_xlsx_url() + print(f"Fetching {url}") + raw = fetch_bytes(url) + print(f"xlsx size: {len(raw):,} bytes") + + wb = openpyxl.load_workbook(io.BytesIO(raw), read_only=True, data_only=True) + if "TR.DiCaCoLo.RuCp" not in wb.sheetnames: + print("ERROR: expected sheet 'TR.DiCaCoLo.RuCp' missing", file=sys.stderr) + return 2 + sh = wb["TR.DiCaCoLo.RuCp"] + + project_root = Path(__file__).resolve().parents[3] + countries = json.load( + (project_root / "contributions/countries/countries.json").open(encoding="utf-8") + ) + lu_country = next((c for c in countries if c.get("iso2") == "LU"), None) + if lu_country is None: + print("ERROR: LU not in countries.json", file=sys.stderr) + return 2 + regex = re.compile(lu_country.get("postal_code_regex") or ".*") + + states = json.load( + (project_root / "contributions/states/states.json").open(encoding="utf-8") + ) + lu_states = [s for s in states if s.get("country_id") == lu_country["id"]] + state_by_iso2: Dict[str, dict] = { + s["iso2"]: s for s in lu_states if s.get("iso2") + } + print( + f"Country: Luxembourg (id={lu_country['id']}); " + f"states indexed: {len(lu_states)}" + ) + + seen: set = set() + records: List[dict] = [] + skipped_no_code = 0 + skipped_unknown_code = 0 + skipped_bad_regex = 0 + skipped_no_state = 0 + matched_state = 0 + unknown_canton: Dict[str, int] = {} + iter_rows = sh.iter_rows(values_only=True) + next(iter_rows) # header + + for row in iter_rows: + district, canton, commune, locality, street, code = row + if not code: + skipped_no_code += 1 + continue + code_str = str(code).strip() + if code_str == "?": + skipped_unknown_code += 1 + continue + # The xlsx writes codes as numbers; re-pad to 4 digits. + if code_str.isdigit(): + code_str = code_str.zfill(4) + if not regex.match(code_str): + skipped_bad_regex += 1 + continue + + canton_label = (canton or "").strip() + locality_str = (locality or "").strip() + commune_str = (commune or "").strip() + + iso2 = SOURCE_TO_ISO2.get(canton_label) + state = state_by_iso2.get(iso2) if iso2 else None + if state is None: + unknown_canton[canton_label] = unknown_canton.get(canton_label, 0) + 1 + + # Locality preference: locality_nom (canonical settlement) + loc_for_key = locality_str or commune_str + key = (code_str, loc_for_key.lower(), canton_label.lower()) + if key in seen: + continue + seen.add(key) + + record: Dict[str, object] = { + "code": code_str, + "country_id": int(lu_country["id"]), + "country_code": "LU", + } + if state is not None: + record["state_id"] = int(state["id"]) + record["state_code"] = state.get("iso2") + matched_state += 1 + else: + skipped_no_state += 1 + if loc_for_key: + record["locality_name"] = loc_for_key + record["type"] = "full" + record["source"] = "caclr-data-public-lu" + records.append(record) + + print(f"Skipped (no code): {skipped_no_code:,}") + print(f"Skipped ('?' code): {skipped_unknown_code:,}") + print(f"Skipped (regex fail): {skipped_bad_regex:,}") + print(f"Skipped (no state FK): {skipped_no_state:,}") + print(f"Records emitted: {len(records):,}") + pct = matched_state * 100 // max(1, len(records)) + print(f" with state: {matched_state:,} ({pct}%)") + if unknown_canton: + print("Unknown canton labels (not in SOURCE_TO_ISO2):") + for c, n in sorted(unknown_canton.items(), key=lambda x: -x[1]): + print(f" {c!r}: {n}") + + if args.dry_run: + return 0 + + target = project_root / "contributions/postcodes/LU.json" + target.parent.mkdir(parents=True, exist_ok=True) + if target.exists(): + with target.open(encoding="utf-8") as f: + existing = json.load(f) + existing_seen = { + (r["code"], (r.get("locality_name") or "").lower()) for r in existing + } + merged = list(existing) + for r in records: + key = (r["code"], (r.get("locality_name") or "").lower()) + if key not in existing_seen: + merged.append(r) + existing_seen.add(key) + merged.sort(key=lambda r: (r["code"], r.get("locality_name", ""))) + else: + merged = sorted(records, key=lambda r: (r["code"], r.get("locality_name", ""))) + + with target.open("w", encoding="utf-8") as f: + json.dump(merged, f, ensure_ascii=False, indent=2) + f.write("\n") + size_kb = target.stat().st_size / 1024 + print( + f"\n[OK] Wrote {target.relative_to(project_root)} " + f"({len(merged):,} rows, {size_kb:.0f} KB)" + ) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/contributions/postcodes/LU.json b/contributions/postcodes/LU.json new file mode 100644 index 000000000..416e44344 --- /dev/null +++ b/contributions/postcodes/LU.json @@ -0,0 +1,44912 @@ +[ + { + "code": "1110", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Findel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1110", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1111", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1112", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1113", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1114", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1115", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1116", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1117", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1118", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1119", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1120", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1121", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1122", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1123", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1124", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1125", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1126", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1127", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1128", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1129", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1130", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1131", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1132", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1133", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1134", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1135", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1136", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1137", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1138", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1139", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1140", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1141", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1142", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1143", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1144", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1145", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1146", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1147", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1148", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1149", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1150", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1151", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1152", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1153", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1159", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1160", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1161", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1208", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1209", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1210", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1210", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1211", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1212", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1213", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1214", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1215", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1216", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1217", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1218", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1219", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1220", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1221", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1222", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1223", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1224", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1225", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1226", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1227", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1228", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1229", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1230", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1231", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1232", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1233", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1234", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1235", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1236", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1237", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1238", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1239", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1240", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1241", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1242", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1243", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1244", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1245", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1246", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1247", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1248", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1249", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1250", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1251", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1252", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1253", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1254", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1255", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1256", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1257", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1258", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1259", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1260", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1261", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1262", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1263", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1264", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1265", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1266", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1267", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1268", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1269", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1270", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1271", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1272", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1273", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1274", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1275", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1276", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1277", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1278", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1279", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1280", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1281", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1282", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1283", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1309", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1310", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1311", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1312", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1313", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1314", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1315", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1316", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1317", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1318", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1319", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Findel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1319", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1320", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1321", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1322", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1323", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1324", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1325", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1326", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1327", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1328", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1329", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1330", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1331", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1332", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1333", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1334", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1335", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1336", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1337", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1338", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1339", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1340", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1341", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1342", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1343", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1344", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1345", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1346", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1347", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1348", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1349", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1350", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1351", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1352", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1353", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1354", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1355", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1356", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1357", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1358", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1359", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1361", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1362", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1363", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1364", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1365", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1366", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1367", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1368", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1369", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1370", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1370", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1371", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1372", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1373", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1374", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1375", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1376", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1409", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1411", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1412", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1413", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1414", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1415", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1416", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1417", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1418", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1419", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1420", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1421", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1422", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1423", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1424", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1425", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1426", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1427", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1428", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1429", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1430", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1431", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1432", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1433", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1434", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1445", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1448", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1449", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1450", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1451", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1452", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1453", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1454", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1455", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1456", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1457", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1458", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1459", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1460", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1461", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1462", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1463", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1464", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1465", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1466", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1467", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1468", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1469", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1470", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1471", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1472", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1473", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1474", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1475", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1476", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1477", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1478", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1479", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1480", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1481", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1482", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1483", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1484", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1490", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1499", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1507", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1508", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1509", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1510", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1511", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1512", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1512", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1513", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1514", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1515", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1516", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1517", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1518", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1519", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1520", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1521", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1522", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1523", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Findel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1524", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1525", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1525", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1526", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1527", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1528", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1529", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1530", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1531", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1532", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1533", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1534", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1535", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1536", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1537", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1538", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1539", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1540", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1541", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1542", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1543", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1544", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1545", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1546", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1547", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1548", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1549", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1550", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1551", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1552", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1553", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1554", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1610", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1611", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1613", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1614", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1615", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1616", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1617", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1618", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1619", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1620", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1621", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1622", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1623", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1624", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1625", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1626", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1627", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1628", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1629", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1630", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1631", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1632", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1633", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1634", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1635", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1636", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1637", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1638", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1639", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1640", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1641", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1642", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1643", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1644", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1645", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1646", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1647", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1648", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1649", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1650", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1651", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1652", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1653", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1654", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1655", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1656", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1660", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1661", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1670", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1709", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1710", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1711", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1712", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1713", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1714", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1715", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1716", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1717", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1718", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1719", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1720", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1721", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1722", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1723", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1724", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1725", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1726", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1727", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1728", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1729", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1730", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1731", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1732", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1733", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1734", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1735", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1736", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1737", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1738", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1739", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1740", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1741", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1742", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1743", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1744", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1745", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1746", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1747", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1748", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Findel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1748", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1749", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1750", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1751", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Findel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1752", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1753", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1754", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1811", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1812", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1813", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1814", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1815", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1816", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1817", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1818", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1820", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1821", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1822", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1831", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1832", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1833", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1834", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1835", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1836", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1837", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1838", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1839", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1840", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1841", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1842", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1843", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Findel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1845", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1846", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1850", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1851", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1852", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1853", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1854", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1855", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1856", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1857", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1858", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1859", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1860", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1861", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1862", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1863", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1864", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1865", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1866", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1867", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1868", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1869", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1870", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1871", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1872", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1873", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1874", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1875", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1880", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1881", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1882", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1896", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kockelscheuer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1897", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kockelscheuer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1898", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kockelscheuer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1899", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kockelscheuer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1899", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1910", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1911", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1912", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1913", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1914", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1915", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1916", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1917", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1918", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1919", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1920", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1921", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1922", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1923", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1924", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1925", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1926", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1927", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1928", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1929", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1930", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1931", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1932", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1933", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1934", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1935", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1936", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1937", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1938", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1939", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1940", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1941", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1942", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1943", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1944", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1945", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1946", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1947", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1948", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1949", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1950", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1951", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1952", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1953", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1954", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "1955", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2110", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2111", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2112", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2113", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2114", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2115", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2116", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2117", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2118", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2119", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2120", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2121", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2122", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2123", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2124", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2125", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2127", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2128", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2129", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2130", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2131", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2132", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2133", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2134", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2135", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2136", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2137", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2138", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2139", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2140", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2141", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2142", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2143", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2144", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2145", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2146", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2147", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2148", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2149", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2150", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2151", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2152", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2153", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2154", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2155", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2156", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2157", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2158", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2159", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2160", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2161", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2162", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2163", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2164", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2165", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2166", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2167", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2168", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2169", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2170", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2171", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2172", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2173", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2174", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2175", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2176", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2177", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2178", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2179", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2180", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2181", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2182", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2183", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2184", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2185", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2186", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2210", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2211", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2212", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2213", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2214", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2215", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2220", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Findel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2220", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2221", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2222", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2223", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2224", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2225", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2226", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2227", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2228", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2229", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2230", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2231", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2232", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2233", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2234", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2240", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2241", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2242", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2243", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2261", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2262", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2263", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2264", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2265", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2266", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2267", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2268", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2269", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2270", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2271", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2272", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2273", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2308", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2309", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2310", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2311", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2312", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2313", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2314", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2315", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2316", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2317", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2318", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2319", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2320", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2322", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2323", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2324", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2326", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2327", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2328", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2329", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2330", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2331", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2332", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2333", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2334", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2335", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2336", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2337", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2338", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2339", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2340", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2341", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2342", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2343", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2344", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2345", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2346", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2347", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2348", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2349", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2350", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2351", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2352", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2353", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2354", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2355", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2356", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2357", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2358", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2359", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2360", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2361", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2370", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2380", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2381", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2409", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2410", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2410", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2411", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2412", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2412", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2413", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2414", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2415", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2416", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2417", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2418", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2419", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2420", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2422", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2423", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2424", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2425", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2426", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2427", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2428", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2429", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2430", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2431", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2432", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2433", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2434", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2435", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2436", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2440", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2441", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2442", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2443", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2444", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2445", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2446", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2447", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2448", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2449", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2450", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2451", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2452", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2453", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2454", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2455", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2510", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2511", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2512", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2513", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2514", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2515", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2516", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2517", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2518", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2519", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2520", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2521", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2522", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2523", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2524", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2525", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2526", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2527", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2528", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2529", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2530", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2531", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2532", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2533", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2534", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2535", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2536", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2537", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2538", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2539", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2540", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2541", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2542", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2543", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2544", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2545", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2546", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2547", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2548", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2549", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2550", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2551", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2552", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2553", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2554", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2555", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2556", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2557", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2558", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2559", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2560", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2561", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2562", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2563", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2564", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2565", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2566", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2567", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2568", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2607", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2608", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2609", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2610", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2610", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2611", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2611", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2612", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2613", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2614", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2615", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2616", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2617", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2618", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2619", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2620", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2621", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2622", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2623", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2624", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2625", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2626", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2627", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2628", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2629", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2630", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2631", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2632", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Findel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2632", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2633", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningerberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2634", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2635", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2636", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2637", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2651", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2652", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2653", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2654", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2655", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2661", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2662", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2663", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2664", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2665", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2666", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2667", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2668", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2669", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2670", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2671", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2672", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2673", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2674", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2675", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2680", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2681", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2711", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2712", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Waldhof", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2713", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2714", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2715", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2716", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2717", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2718", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2719", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2720", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2721", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2722", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2723", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2724", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2725", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2726", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2727", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2728", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2729", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2730", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2731", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2732", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2733", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2734", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2736", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2737", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2738", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2739", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2740", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2741", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2742", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2761", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2762", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2763", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "2764", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Luxembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3209", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3210", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3211", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3212", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3213", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3214", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3215", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3216", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3217", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3218", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3219", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3220", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3221", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3222", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3223", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3224", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3225", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3229", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3230", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3231", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3232", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3233", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3234", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3235", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3236", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3237", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3238", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3239", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3240", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3241", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3242", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3243", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3249", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3250", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3251", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3252", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3253", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3254", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3255", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3256", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3257", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3258", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3259", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3260", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3260", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Peppange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3261", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3265", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3266", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3267", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3269", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3270", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3271", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3272", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3273", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3274", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3275", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3276", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3277", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3278", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3279", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3280", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3281", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3282", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3283", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3284", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3285", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3286", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3287", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3288", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3290", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3311", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Abweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3313", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bergem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3314", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bergem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3315", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bergem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3316", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bergem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3317", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bergem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3318", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bergem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3320", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Berchem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3320", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bivange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3321", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Berchem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3322", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bivange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3323", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bivange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3324", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bivange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3325", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Berchem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3326", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Crauthem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3327", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Crauthem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3328", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Crauthem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3329", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Crauthem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3330", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Crauthem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3332", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Fennange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3333", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Hellange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3334", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Hellange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3335", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Hellange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3336", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Hellange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3337", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Hellange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3338", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Hellange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3340", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Fennange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3340", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Huncherange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3341", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Huncherange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3345", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3346", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3347", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3348", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3349", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3350", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3351", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3352", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3353", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3354", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3355", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3356", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3357", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3358", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3359", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3360", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3361", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3362", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3363", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3364", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3365", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3366", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3367", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3368", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3369", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3370", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3371", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3372", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3373", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3374", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3375", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3376", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3377", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Leudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3378", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Livange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3380", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Noertzange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3381", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Livange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3382", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Noertzange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3383", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Noertzange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3384", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Noertzange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3385", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Noertzange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3386", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Noertzange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3389", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Peppange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3390", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Peppange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3391", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Peppange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3392", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Roedgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3393", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Roedgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3394", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Roeser", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3395", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Roeser", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3396", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Roeser", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3397", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Roeser", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3398", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Roeser", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3409", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3410", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3411", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3412", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3413", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3414", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3415", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3416", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3417", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3418", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3419", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3420", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3421", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3422", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3423", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3424", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3425", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3426", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3427", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3428", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3429", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3430", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3431", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3432", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3433", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3434", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3435", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3436", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3437", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3439", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3440", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3441", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3442", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3443", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3444", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3445", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3446", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3447", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3448", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3449", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3450", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3451", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3452", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Bettembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3452", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3453", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3454", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3460", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3461", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3462", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3463", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3464", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3465", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3466", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3467", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3468", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3469", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3470", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3471", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3472", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3473", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3474", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3475", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3476", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3480", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3481", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3482", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3483", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3484", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3485", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3486", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3487", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3488", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3489", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3490", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3491", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3492", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3493", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3501", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3502", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3503", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3504", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3505", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3506", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3507", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3508", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3509", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3510", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3511", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3512", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3513", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3514", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3515", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3516", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3517", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3518", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3520", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3521", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3522", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3523", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3524", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3525", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3526", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3529", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3530", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3531", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3532", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3539", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3540", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3541", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3542", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3543", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3544", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3545", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3546", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3547", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3548", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3549", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3550", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3551", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3552", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3553", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3554", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3555", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3560", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3561", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3562", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3563", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3564", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3565", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3566", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3567", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3568", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3569", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3570", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3571", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3572", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3573", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3574", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3575", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3576", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3582", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3583", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3584", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3585", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3588", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3589", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3590", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3591", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3592", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3593", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3594", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3595", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3596", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3597", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3598", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Dudelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3611", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3612", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3614", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3615", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3616", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3617", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3620", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3621", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3622", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3630", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3631", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3635", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3636", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3637", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3638", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3640", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3641", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3642", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3643", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3644", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3650", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3651", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3652", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3653", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3654", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3655", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3656", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3657", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3658", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3660", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3670", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3671", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3672", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3673", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3674", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3675", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3676", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3677", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3678", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3679", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3680", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3681", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3682", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3710", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3711", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3712", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3713", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3714", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3715", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3716", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3717", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3718", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3719", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3720", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3721", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3722", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3723", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3724", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3725", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3726", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3727", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3728", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3729", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3730", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3731", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3732", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3733", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3734", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3735", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3736", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3737", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3738", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3739", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3740", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3741", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3742", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3743", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3744", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3750", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3751", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3752", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3753", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3754", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3755", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rumelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3761", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3762", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3763", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3764", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3765", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3766", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3767", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3768", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3770", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3771", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3772", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3773", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3774", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3775", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3776", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3780", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3781", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Kayl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3781", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3782", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3784", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3786", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3787", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3788", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3789", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3790", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Tétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3810", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3811", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3812", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3813", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3814", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3815", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3816", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3817", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3818", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3819", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3820", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3821", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3822", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3823", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3824", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3825", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3826", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3830", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3831", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3832", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3833", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3834", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3835", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3836", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3837", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3838", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3839", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3840", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3841", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3842", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3843", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3844", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3850", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3851", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3852", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3853", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3854", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3855", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3856", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3857", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3858", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3859", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3860", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3861", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3862", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3863", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3864", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3870", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3871", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3872", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3873", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3874", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3875", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3876", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3877", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3878", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3879", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3880", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3881", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3882", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3883", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3884", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3885", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3895", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Foetz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3896", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Foetz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3897", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Foetz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3898", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Foetz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3899", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Foetz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3909", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3910", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3911", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3912", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3913", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3914", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3915", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3916", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3917", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3918", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3919", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3920", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3921", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3922", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3924", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3925", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3926", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3927", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3928", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3929", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3930", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3931", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3932", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3933", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3934", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3935", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3936", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3937", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3938", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3939", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3940", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3941", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3943", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3944", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3945", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3960", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Ehlange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3961", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Ehlange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3980", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Wickrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "3985", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pissange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4010", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4011", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4012", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4013", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4014", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4015", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4016", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4017", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4018", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4019", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4020", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4021", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4022", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4023", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4024", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4025", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4026", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4027", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4028", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4029", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4030", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4031", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4032", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4033", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4034", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4035", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4036", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4037", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4038", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4039", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4040", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4041", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4042", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4043", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4044", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4045", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4046", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4047", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4048", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4049", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4050", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4051", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4052", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4053", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4054", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4055", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4057", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4058", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4059", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4060", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4061", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4062", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4063", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4064", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4065", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4066", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4067", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4068", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4069", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4070", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4071", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4072", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4073", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4074", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4080", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4081", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4082", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4083", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4084", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4085", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4086", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4088", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4090", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4091", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4092", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4093", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4101", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4102", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4103", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4105", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4106", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4107", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4108", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4109", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4110", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4111", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4112", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4113", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4114", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4115", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4116", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4118", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4119", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4120", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4121", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4122", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4123", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4125", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4126", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4130", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4131", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4132", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4133", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4134", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4135", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4136", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4137", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4138", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4139", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4140", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4141", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4142", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4143", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4149", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4149", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Mondercange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4149", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Schifflange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4150", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4151", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4152", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4153", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4154", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4155", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4156", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4164", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4165", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4166", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4167", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4168", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4169", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4170", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4171", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4172", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4173", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4174", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4175", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4176", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4177", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4178", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4179", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4180", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4201", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4202", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4203", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4204", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4205", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4206", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4207", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4208", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4209", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4210", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4211", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4213", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4214", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4216", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4217", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4220", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4221", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4222", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4230", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4231", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4232", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4233", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4234", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4235", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4236", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4237", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4238", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4239", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4240", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4241", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4242", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4243", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4244", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4245", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4246", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4247", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4248", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4249", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4250", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4251", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4252", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4253", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4254", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4255", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4256", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4260", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4261", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4263", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4264", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4265", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4266", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4267", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4268", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4270", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4271", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4272", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4275", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4276", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4277", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4278", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4279", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4280", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4281", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4282", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4283", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4289", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4301", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4302", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4303", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4304", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4305", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4306", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4307", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4308", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4309", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4310", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4314", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4315", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4316", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4317", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4318", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4319", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4320", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4321", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4322", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4323", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4324", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4325", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4326", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4327", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4328", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4329", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4330", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4331", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4332", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4333", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4334", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4335", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4336", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4337", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4340", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4341", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4342", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4343", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4344", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4345", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4346", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4347", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4348", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4349", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4350", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4351", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4352", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4353", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4354", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4355", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4359", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4360", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4361", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4362", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4363", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4364", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4365", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4366", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4367", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4367", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4368", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4369", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4369", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4370", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4370", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4371", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4372", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4373", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4374", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4374", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4375", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4380", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Ehlerange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4380", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Esch-sur-Alzette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4381", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Ehlerange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4382", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Ehlerange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4383", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Ehlerange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4384", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Ehlerange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4385", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Ehlerange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4390", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pontpierre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4391", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pontpierre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4392", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pontpierre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4393", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pontpierre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4394", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pontpierre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4395", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pontpierre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4396", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pontpierre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4397", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pontpierre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4398", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pontpierre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4405", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4406", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4407", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4408", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4409", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4410", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Sanem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4410", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4411", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4412", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4413", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4414", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4415", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4416", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4417", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4418", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4419", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4420", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4421", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4422", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4423", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4424", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4425", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4426", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4427", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4428", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4429", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4430", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4431", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4432", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4433", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4434", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4435", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4436", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4437", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4438", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4439", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4440", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4441", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4442", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4443", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4444", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4445", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4446", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4447", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4448", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4449", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4450", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4451", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4452", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4453", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4454", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4455", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4456", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4457", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4459", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4460", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4460", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4461", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4462", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4463", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4464", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4465", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4466", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4467", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4468", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4469", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4470", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4471", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4472", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4473", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4474", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4475", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4475", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4476", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4477", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4478", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4479", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4480", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4480", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4481", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4482", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4482", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4483", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4484", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4485", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4486", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4487", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4488", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4489", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4490", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4491", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Belvaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4492", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4493", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4494", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4498", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Sanem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4499", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Limpach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4499", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Sanem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4500", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4503", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4505", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4506", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4507", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4508", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4509", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4510", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4511", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4512", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4513", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4514", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4515", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4516", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4517", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4518", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4519", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4520", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4521", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4521", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4522", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4523", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4524", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4525", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4526", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4527", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4528", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4529", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4530", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4531", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4531", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4532", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4533", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4534", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4535", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4536", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4537", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4538", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4539", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4540", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4540", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4541", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4542", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4543", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4544", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4545", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4546", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4547", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4548", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4549", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4550", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4551", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4552", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4553", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4554", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4555", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4556", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4557", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4558", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4559", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4559", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4560", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4561", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4562", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4563", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4563", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4564", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4565", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4566", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4567", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4569", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4570", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4571", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4572", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4573", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4574", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4575", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4576", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4577", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4578", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4579", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4580", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4581", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4582", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4583", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4590", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4591", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4592", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4593", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4594", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4595", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4596", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4597", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4598", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4599", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4601", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4601", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4602", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4603", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4604", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4605", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4606", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4607", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4608", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4609", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4610", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4611", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4612", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4613", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4620", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4620", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4621", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4622", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4623", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4624", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4625", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4626", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4627", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4628", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4629", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4630", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4631", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4632", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4633", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4634", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4635", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4636", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4637", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4638", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4639", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4640", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4640", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4641", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4642", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4643", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4644", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4645", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4645", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4646", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4647", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4648", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4649", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4650", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4651", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4653", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4654", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4656", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4657", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4658", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4660", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4661", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4662", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4663", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4664", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4665", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4666", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4667", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4668", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4669", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4670", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4671", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4672", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4676", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4677", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4678", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4679", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4680", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4681", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4682", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4683", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4683", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4684", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4685", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4686", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Niederkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4687", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4687", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4688", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4689", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4690", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4691", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4692", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4693", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Differdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4694", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Oberkorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4696", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lasauvage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4697", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lasauvage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4698", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lasauvage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4702", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4706", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4707", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4708", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4709", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4710", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4711", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4712", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4713", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4714", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4715", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4716", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4717", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4718", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4719", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4720", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4721", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4722", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4730", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4731", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4732", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4733", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4734", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4735", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4736", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4737", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4738", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4739", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4740", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4741", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4742", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4743", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4744", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4744", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4745", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4750", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4751", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4752", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4753", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4754", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4755", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4756", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4757", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4758", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4759", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4760", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4761", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4762", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4763", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4770", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4771", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4772", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4773", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4774", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4775", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4776", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4777", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4778", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4779", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4780", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4781", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4782", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4783", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4784", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4785", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4786", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4795", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Linger", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4796", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Linger", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4797", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Linger", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4798", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Linger", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4802", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4802", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4802", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4804", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4805", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4806", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4807", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4808", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4809", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4810", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4811", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4812", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4813", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4814", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4815", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4818", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4819", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4820", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4822", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4823", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4824", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4825", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4826", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4829", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4830", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4831", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4832", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4833", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4834", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4837", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4838", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4839", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4840", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4842", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4843", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4844", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4845", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4846", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4847", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4848", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4849", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4850", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4853", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Rodange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4870", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4871", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4872", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4873", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4874", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4875", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4876", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4877", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4878", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4879", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4880", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4881", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4882", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4883", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4884", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4885", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4886", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4887", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4888", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4889", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4890", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4891", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4892", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4893", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4894", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4895", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Lamadelaine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4905", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4906", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4907", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4908", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4908", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Pétange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4909", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4910", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4911", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4912", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4913", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4914", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4915", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4916", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4917", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4918", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4919", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4920", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4921", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4922", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4923", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4924", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4925", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4926", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4927", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4928", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4929", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4930", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4931", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4932", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4933", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4934", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4935", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4936", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4937", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4938", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4939", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4940", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4940", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4941", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4942", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4942", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4943", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4944", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4945", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4945", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4946", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4947", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4947", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4948", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4949", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4950", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4951", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4952", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4953", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4954", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4955", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4956", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4957", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4958", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4959", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bascharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4960", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Clemency", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4961", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Clemency", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4962", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Clemency", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4963", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Clemency", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4964", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Clemency", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4965", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Clemency", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4966", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Clemency", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4967", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Clemency", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4968", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Schouweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4969", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hautcharage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4970", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bettange-sur-Mess", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4970", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Sprinkange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4971", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bettange-sur-Mess", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4972", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Dippach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4972", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Sprinkange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4973", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Dippach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4974", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Dippach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4975", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bettange-sur-Mess", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4976", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bettange-sur-Mess", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4977", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bettange-sur-Mess", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4978", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Fingig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4979", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Fingig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4980", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Reckange-sur-Mess", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4981", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Reckange-sur-Mess", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4982", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Reckange-sur-Mess", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4984", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Soleuvre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4985", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Sanem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4986", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Sanem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4987", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Sanem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4988", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Sanem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4989", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Sanem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4990", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Sanem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4991", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Sanem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4992", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Sanem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4993", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Sanem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4994", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Schouweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4994", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Sprinkange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4995", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Schouweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4996", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Schouweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4997", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Schouweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4998", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Schouweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4998", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Sprinkange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4999", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Schouweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "4999", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Sprinkange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5211", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5212", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5213", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5214", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5215", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5216", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5217", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5218", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5219", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5220", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5221", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5222", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5230", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5231", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5232", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5233", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5234", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5236", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5237", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5238", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5239", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5240", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5241", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5243", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5244", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5250", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5251", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5252", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5253", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5254", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5255", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5256", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5280", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5280", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Sandweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5290", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Neuhaeusgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5291", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Neuhaeusgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5299", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schrassig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5310", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Contern", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5312", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Contern", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5313", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Contern", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5314", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Contern", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5315", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Contern", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5316", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Contern", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5317", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Contern", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5318", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Contern", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5320", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Contern", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5322", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Contern", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5324", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Contern", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5324", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oetrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5326", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Contern", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5328", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Medingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5330", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Moutfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5331", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Moutfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5331", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oetrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5332", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Moutfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5333", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Moutfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5334", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Moutfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5335", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Moutfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5336", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Moutfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5337", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Moutfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5339", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Moutfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5340", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Moutfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5341", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Moutfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5342", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schuttrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5351", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oetrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5352", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oetrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5353", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Canach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5353", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oetrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5355", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oetrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5359", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schuttrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5360", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schrassig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5361", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schrassig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5362", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schrassig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5363", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schrassig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5364", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schrassig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5365", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Munsbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5366", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Munsbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5367", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schuttrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5368", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schuttrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5369", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schuttrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5370", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schuttrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5371", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schuttrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5372", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Munsbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5372", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schuttrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5373", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schuttrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5374", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Munsbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5375", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schuttrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5376", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Munsbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5376", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Uebersyren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5377", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Uebersyren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5378", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Uebersyren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5380", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Uebersyren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5381", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Schuttrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5401", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Ahn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5402", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Assel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5403", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Bech-Kleinmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5404", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Bech-Kleinmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5405", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Bech-Kleinmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5407", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Bous", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5408", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Bous", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5410", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Beyren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5411", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Canach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5412", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Canach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5412", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Greiveldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5413", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Canach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5414", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Canach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5415", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Canach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5416", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Ehnen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5417", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Ehnen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5418", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Ehnen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5419", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Ehnen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5420", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Bech-Kleinmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5421", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Erpeldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5421", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Welfrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5422", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Erpeldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5423", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Ersange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5424", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Gostingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5425", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Gostingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5426", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Greiveldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5427", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Greiveldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5429", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Huettermuehle", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5430", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Lenningen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5431", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Lenningen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5432", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Kapenacker", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5433", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Niederdonven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5434", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Niederdonven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5435", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Oberdonven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5439", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remerschen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5440", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remerschen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5441", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remerschen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5442", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Roedt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5443", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Rolling", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5444", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Schengen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5445", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Schengen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5446", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Schengen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5447", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Schwebsingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5450", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Stadtbredimus", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5451", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Stadtbredimus", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5460", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Trintange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5465", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Waldbredimus", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5466", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Waldbredimus", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5470", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Wellenstein", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5471", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Wellenstein", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5480", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wormeldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5481", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wormeldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5482", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wormeldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5483", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wormeldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5485", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wormeldange-Haut", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5488", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Ehnen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5489", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Ehnen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5495", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Wintrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5499", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Dreiborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5511", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5512", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5513", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5514", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5515", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5516", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5517", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5518", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5519", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5520", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5521", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5522", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5523", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5530", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5531", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5532", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5533", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5534", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5535", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5536", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5537", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5538", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5539", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5540", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5544", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5548", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5549", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5550", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5551", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5552", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5553", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5554", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5555", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5556", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5557", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5558", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5559", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5560", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5561", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5570", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5571", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5572", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5573", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5574", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5575", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5576", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5577", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Remich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5610", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5611", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5612", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5613", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5614", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5615", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5616", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5617", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5618", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5619", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5620", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5626", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5627", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5628", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5629", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5630", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5631", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5632", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5633", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5634", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5635", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5636", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5637", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5638", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5639", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5640", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5650", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5651", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5652", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5653", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5654", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5655", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5656", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5657", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5658", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5659", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Mondorf-les-Bains", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5670", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Altwies", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5671", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Altwies", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5675", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Burmerange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5680", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Dalheim", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5681", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Dalheim", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5682", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Dalheim", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5683", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Dalheim", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5684", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Dalheim", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5685", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Dalheim", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5686", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Dalheim", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5687", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Dalheim", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5690", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Ellange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5691", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Ellange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5692", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Elvange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5693", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Elvange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5695", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Emerange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5698", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Welfrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5710", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Aspelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5711", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Aspelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5712", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Aspelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5713", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Aspelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5714", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Aspelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5716", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Aspelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5717", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Aspelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5718", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Aspelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5719", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Aspelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5720", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Aspelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5721", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Aspelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5722", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Aspelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5723", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Aspelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5730", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Aspelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5730", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Filsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5740", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Filsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5741", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Filsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5750", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Frisange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5751", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Frisange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5752", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Frisange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5753", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Frisange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5754", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Frisange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5755", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Frisange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5756", + "country_id": 127, + "country_code": "LU", + "state_id": 1517, + "state_code": "ES", + "locality_name": "Frisange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5760", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hassel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5761", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hassel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5762", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hassel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5770", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Weiler-la-Tour", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5771", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Weiler-la-Tour", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5772", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Weiler-la-Tour", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5773", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Weiler-la-Tour", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5774", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Weiler-la-Tour", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5775", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Weiler-la-Tour", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5776", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Weiler-la-Tour", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5808", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5809", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5810", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5811", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5812", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5813", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5814", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5815", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5816", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5817", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5818", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5819", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5820", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5821", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5822", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5823", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5824", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5825", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5826", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5826", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5827", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5828", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5829", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5830", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5830", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5831", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5832", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5833", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5834", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5835", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5836", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5837", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5838", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5839", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5840", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5841", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5842", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5843", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5844", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5846", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5850", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5852", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5853", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5854", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5855", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5856", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5859", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5860", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5861", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5862", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5862", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5863", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5863", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5864", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5865", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5866", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5867", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5868", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5869", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5870", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5871", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5872", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5873", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5874", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5875", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5876", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5878", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5880", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5884", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5884", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5885", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5885", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Howald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5886", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5886", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5887", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5887", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5888", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5889", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5890", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5890", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5891", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Fentange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5892", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5893", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5894", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5895", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5896", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Alzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5898", + "country_id": 127, + "country_code": "LU", + "state_id": 1519, + "state_code": "RM", + "locality_name": "Dalheim", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5898", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Syren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5899", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Syren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5940", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hesperange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5942", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5943", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5950", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5951", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5952", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5953", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5954", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5955", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5956", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5957", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5958", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5959", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5960", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5962", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5963", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5964", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5969", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5970", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5971", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5972", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5973", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5974", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5975", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5976", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5977", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "5978", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Itzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6111", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6112", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6113", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6114", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6115", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6116", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6117", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6118", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6119", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6120", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6121", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6122", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6123", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6124", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6125", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6129", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6130", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6131", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6132", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6133", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6134", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6135", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6136", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6137", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6138", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6139", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6140", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6141", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6142", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6143", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6144", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6145", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6146", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6147", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6148", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6149", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Junglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6150", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Altlinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6155", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Koedange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6155", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6155", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Stuppicht", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6155", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Weyer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6160", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Bourglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6161", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Bourglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6162", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Bourglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6163", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Bourglinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6165", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Ernster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6166", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Ernster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6169", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Eschweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6170", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Godbrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6171", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Godbrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6175", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Schiltzberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6180", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Gonderange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6181", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Gonderange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6182", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Gonderange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6183", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Gonderange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6184", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Gonderange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6185", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Gonderange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6186", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Gonderange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6187", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Gonderange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6188", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Gonderange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6189", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Gonderange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6190", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Gonderange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6195", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Imbringen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6196", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Eisenborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6197", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Eisenborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6210", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Consdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6211", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Consdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6212", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Consdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6213", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Consdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6214", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Consdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6214", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Kalkesbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6215", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Consdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6216", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Consdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6225", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Altrier", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6225", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Hersberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6225", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Kobenbour", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6230", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Bech", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6231", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Bech", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6231", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Lilien", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6235", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Beidweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6238", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Breidweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6239", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Colbette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6239", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Marscherwald", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6240", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Graulinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6240", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Graulinster", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6243", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Hemstal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6245", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Mullerthal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6246", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Rippig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6250", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Consdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6250", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Scheidgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6251", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Geyershof", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6251", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Scheidgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6252", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Wolper", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6255", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Zittig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6310", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Beaufort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6311", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Beaufort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6311", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Reisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6312", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Beaufort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6313", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Beaufort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6314", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Beaufort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6315", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Beaufort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6316", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Beaufort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6340", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Bigelbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6350", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Dillingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6360", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Grundhof", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6360", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Grundhof (Berdorf)", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6370", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Haller", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6380", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ermsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6380", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Medernach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6380", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Savelborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6380", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Savelborn (Waldbillig)", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6408", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6409", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6410", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6411", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6412", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6413", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6414", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6415", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6416", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6417", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6418", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6419", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6420", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6421", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6422", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6423", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6430", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6431", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6432", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6433", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6434", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6435", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6436", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6437", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6438", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6439", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6440", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6441", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6442", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6443", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6445", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6446", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6447", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6448", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6449", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6450", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6451", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6452", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6453", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6454", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6455", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6460", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6461", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6462", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6463", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6464", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6465", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6466", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6467", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6468", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6469", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6470", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6471", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6472", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6473", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6474", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6475", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6476", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6477", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6478", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6479", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6480", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6481", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6482", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6483", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6484", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6485", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6486", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6488", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6490", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6491", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6492", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6493", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6494", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6495", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6496", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6497", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6499", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6550", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Berdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6551", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Berdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6552", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Berdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6553", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Berdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6555", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Bollendorf-Pont", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6557", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Dickweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6558", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Girsterklaus", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6558", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Rosport", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6559", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Girst", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6560", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Hinkel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6562", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Berdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6562", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6570", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Osweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6571", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Osweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6572", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Echternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6572", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Osweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6579", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Rosport", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6580", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Rosport", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6581", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Rosport", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6582", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Rosport", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6583", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Rosport", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6585", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Steinheim", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6586", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Steinheim", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6587", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Steinheim", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6590", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Weilerbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6610", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6611", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6612", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6613", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6614", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6615", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6616", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6617", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6618", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6619", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6620", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6621", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6622", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6623", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6624", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6630", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6631", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6632", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6633", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6634", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6635", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6636", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6637", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6638", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6645", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6646", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6647", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6648", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6649", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6650", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6651", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6655", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wasserbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6660", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Born", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6661", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Born", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6663", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Boursdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6665", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Herborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6666", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Givenich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6669", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6670", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6671", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6672", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6673", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6674", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6675", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6676", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6677", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6678", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6679", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6680", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6681", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6682", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6683", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6684", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6685", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6686", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6687", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6688", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6688", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6689", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6690", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Moersdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6691", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Moersdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6692", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Moersdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6693", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mertert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6695", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Mompach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6711", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6712", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6713", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6714", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6715", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6716", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6717", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6718", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6719", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6720", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6722", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6723", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6724", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6725", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6726", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6730", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6731", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6732", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6733", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6734", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6735", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6736", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6737", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6738", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6739", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6740", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6741", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6742", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6743", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6744", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6745", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6750", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6751", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6752", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6753", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6754", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6755", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6756", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6757", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6758", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6759", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6760", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6761", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6762", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6763", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6764", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6765", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6770", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6771", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6772", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6773", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6774", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6775", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6776", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6776", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wecker", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6777", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6778", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6779", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6780", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6781", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6782", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6783", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6784", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6785", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6786", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6790", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6791", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6792", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6793", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6794", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6795", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6796", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Grevenmacher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6815", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Betzdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6830", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Berbourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6831", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Berbourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6832", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Betzdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6833", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Biwer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6834", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Biwer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6834", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Biwerbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6835", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Boudler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6835", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Boudlerbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6836", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Breinert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6837", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Brouch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6838", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Hagelsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6839", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Lellig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6840", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Machtum", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6841", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Machtum", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6842", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Machtum", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6850", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Manternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6851", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Manternach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6852", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wecker-Gare", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6858", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Münschecker", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6868", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wecker", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6868", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wecker-Gare", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6869", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wecker", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6870", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wecker", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6871", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Wecker", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6880", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Weydig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6910", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Roodt-sur-Syre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6911", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Roodt-sur-Syre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6912", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Roodt-sur-Syre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6913", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Roodt-sur-Syre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6914", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Roodt-sur-Syre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6915", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Roodt-sur-Syre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6916", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Roodt-sur-Syre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6917", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Roodt-sur-Syre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6919", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Roodt-sur-Syre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6921", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Roodt-sur-Syre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6922", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6923", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6925", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Flaxweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6926", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Flaxweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6930", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mensdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6931", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mensdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6933", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mensdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6934", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mensdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6935", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Mensdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6939", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Niederanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6940", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Niederanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6941", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Niederanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6942", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Niederanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6943", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Niederanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6944", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Niederanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6945", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Niederanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6946", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Niederanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6947", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Niederanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6948", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Niederanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6950", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Olingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6951", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Olingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6955", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Rodenbourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6956", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Rodenbourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6960", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6961", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6962", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Senningen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6969", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oberanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6970", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hostert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6970", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oberanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6971", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hostert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6972", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Rameldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6973", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Rameldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6974", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Rameldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6975", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Rameldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6976", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oberanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6977", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oberanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6978", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hostert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6979", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Rameldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6980", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Rameldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6981", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Rameldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6982", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oberanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6985", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hostert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6986", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oberanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6987", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Rameldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6988", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hostert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6989", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hostert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6990", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hostert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6990", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Rameldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6991", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Rameldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6992", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oberanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6995", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Rameldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6996", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hostert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6996", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oberanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6996", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Rameldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6997", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oberanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6998", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Hostert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "6999", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Oberanven", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7209", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Walferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7210", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7211", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7212", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7213", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7214", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7215", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7216", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7217", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7218", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7219", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7220", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7220", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Walferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7221", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7222", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Walferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7223", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7224", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Walferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7225", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7226", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7226", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Walferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7227", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7228", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7228", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Walferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7229", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7230", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7231", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7232", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7233", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7234", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7235", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7236", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7237", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7238", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Walferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7239", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7240", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7241", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7242", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7243", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7244", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7245", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7246", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7247", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7248", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7249", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7250", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7251", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7252", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7253", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Walferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7254", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7255", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7256", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Walferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7257", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7258", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7259", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7260", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7261", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7262", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7263", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7264", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7265", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7266", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7268", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bereldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7269", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Walferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7270", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Helmsange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7274", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Walferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7300", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7302", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Mullendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7302", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7303", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7304", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7305", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Mullendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7305", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7306", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Mullendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7307", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7308", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7309", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7310", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7311", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7312", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Mullendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7313", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7314", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7315", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7316", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7317", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Mullendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7317", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7318", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7319", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7320", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7321", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Mullendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7322", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7323", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7324", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Mullendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7325", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7326", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Mullendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7327", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7328", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7329", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7330", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7331", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7332", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Mullendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7333", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7334", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7335", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7336", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7337", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7338", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7339", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7340", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7341", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7342", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7343", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7344", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7345", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7346", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Mullendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7346", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7347", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Steinsel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7348", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7349", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Heisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7350", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7351", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Helmdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7352", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Helmdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7353", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7354", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Helmdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7355", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Helmdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7356", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Helmdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7356", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7357", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Helmdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7358", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7359", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7360", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Helmdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7361", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7362", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bofferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7363", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7364", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bofferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7370", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7371", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Helmdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7372", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7373", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Helmdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7373", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7374", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bofferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7374", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Helmdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7375", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7376", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bofferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7377", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7378", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bofferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7379", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7380", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7381", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bofferdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7382", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Helmdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7383", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7384", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lorentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7390", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Blaschette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7391", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Blaschette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7392", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Asselscheuer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7392", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Blaschette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7392", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Klingelscheuer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7395", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Hunsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7396", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Hunsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7397", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Hunsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7409", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Beringen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7410", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Angelsberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7410", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7411", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Ansembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7411", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Marienthal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7412", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bour", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7414", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Brouch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7415", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Brouch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7415", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Reckange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7416", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Brouch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7417", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Brouch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7418", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Buschdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7419", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Brouch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7420", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Cruchten", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7421", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Cruchten", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7423", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Dondelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7424", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Essingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7425", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bill", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7425", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Finsterthal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7425", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Openthalt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7425", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Reckange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7430", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Fischbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7431", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Niederglabach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7431", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Oberglabach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7432", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Gosseldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7433", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Grevenknapp", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7435", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Hollenfels", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7440", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7441", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7442", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7443", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7444", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7445", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7446", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7447", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7448", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7449", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7450", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7451", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7452", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7453", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7454", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7455", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7456", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7457", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7458", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Lintgen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7460", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Prettingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7461", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Meysembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7462", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Moesdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7463", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7463", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Pettingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7464", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Moesdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7465", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Nommern", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7470", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Saeul", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7471", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Saeul", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7473", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Schoenfels", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7475", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Schoos", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7480", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Tuntange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7481", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Tuntange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7482", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Tuntange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7511", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Rollingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7512", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7513", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7514", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7515", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7516", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Rollingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7517", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7518", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Rollingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7519", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7520", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7521", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7522", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7523", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7524", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7525", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7525", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Reckange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7526", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7527", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Rollingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7531", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7532", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Rollingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7533", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7534", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7535", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7536", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7537", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Rollingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7538", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7539", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Rollingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7540", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Rollingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7541", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7542", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7543", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7543", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Rollingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7544", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7545", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7546", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Rollingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7547", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Rollingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7548", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7549", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7550", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7553", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7554", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7555", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7556", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7557", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7558", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Rollingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7559", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7560", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7561", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7562", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7563", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7564", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7565", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7566", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7567", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Rollingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7568", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7569", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7570", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7571", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7572", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7573", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7590", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Beringen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7590", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7591", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Beringen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7592", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Beringen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7593", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Beringen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7594", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Beringen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7595", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Reckange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7596", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Reckange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7597", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Hollenfels", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7597", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Kuelbecherhaff", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7597", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Reckange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7598", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Reckange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7599", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Mersch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7610", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7611", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7612", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7613", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7615", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7616", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7618", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7619", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7620", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7621", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7622", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7622", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Medernach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7623", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7624", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7625", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Heffingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7625", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7626", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7627", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7633", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7633", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Medernach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7634", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Haller", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7634", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Heffingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7634", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Larochette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7634", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Medernach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7634", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Waldbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7635", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Ernzen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7636", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Ernzen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7639", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Blumenthal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7639", + "country_id": 127, + "country_code": "LU", + "state_id": 1520, + "state_code": "G", + "locality_name": "Blumenthal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7639", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Reuland", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7640", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Christnach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7641", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Christnach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7649", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Freckeisen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7650", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Heffingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7651", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Heffingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7652", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Heffingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7653", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Heffingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7660", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Medernach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7661", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Medernach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7662", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Medernach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7663", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Medernach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7664", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Medernach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7670", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Reuland", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7673", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Heffingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7680", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Waldbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7681", + "country_id": 127, + "country_code": "LU", + "state_id": 1515, + "state_code": "EC", + "locality_name": "Waldbillig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7710", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7711", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7712", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7713", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Welsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7714", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7715", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7716", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7720", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7721", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7722", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7723", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Welsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7724", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7726", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7727", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7730", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7731", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7732", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7733", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7734", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7735", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7737", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7738", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7738", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Colmar-Pont", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7739", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7740", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7741", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7750", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Colmar-Berg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7758", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Birtrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7758", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Grentzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7758", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7759", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Essingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7759", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Roost (Bissen)", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7760", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7761", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7762", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7763", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7764", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7765", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7766", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7767", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7768", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7769", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7770", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7771", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7772", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7773", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7774", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7777", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7778", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7779", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7780", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7781", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7782", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7783", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7784", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7785", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7786", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7787", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7788", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7789", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7790", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7791", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7792", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7793", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7794", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7795", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "7796", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Bissen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8008", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8009", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8010", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8011", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8011", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8012", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8013", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8014", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8015", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8016", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8017", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8018", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8018", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8019", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8020", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8021", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8022", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8023", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8024", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8025", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8026", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8027", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8028", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8029", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8030", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8031", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8032", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8033", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8034", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8035", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8036", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8037", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8038", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8039", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8040", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8041", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8041", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8042", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8043", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8044", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8045", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8046", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8047", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8048", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8049", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8050", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8051", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8052", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8053", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8054", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8055", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8056", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8057", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8058", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8059", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8061", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8062", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8063", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8064", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8065", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8066", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8067", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8068", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8069", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8069", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8070", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8070", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8071", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8072", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8073", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8074", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8075", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8076", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8077", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8078", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8079", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8080", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8081", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8082", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8083", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8084", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8085", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8086", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8087", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8088", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8089", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8090", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8091", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8092", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8093", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8094", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8095", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8096", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8097", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8098", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8099", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8110", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8111", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8112", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8115", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8116", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8117", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8118", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8119", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8120", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8121", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8123", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8124", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8125", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8126", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8127", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8128", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8129", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8130", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8131", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8132", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8133", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8134", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8135", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8137", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8138", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8139", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8140", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8141", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8142", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8143", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8145", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8146", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8147", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8149", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8150", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8151", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8152", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8153", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8154", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8156", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8157", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8158", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8159", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8160", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8161", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8165", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8166", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8167", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Bridel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8179", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kopstal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8180", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kopstal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8181", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kopstal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8182", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kopstal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8183", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kopstal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8184", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kopstal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8185", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kehlen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8185", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kopstal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8186", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kopstal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8187", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kopstal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8188", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kopstal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8189", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kopstal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8190", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kopstal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8191", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kopstal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8198", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Direndall", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8199", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Weidendall", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8209", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8210", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8211", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8212", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8213", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8214", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8215", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8216", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8217", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8218", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8219", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8220", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8221", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8222", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8223", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8224", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8225", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8226", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8227", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8228", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8229", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8230", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8231", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8232", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8233", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8234", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8235", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8236", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8237", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8238", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8239", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8240", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8241", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8242", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8243", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8244", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8245", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8246", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8247", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8248", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8249", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8250", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8251", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8251", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Strassen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8252", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8253", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8254", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8255", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8258", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8259", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8260", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8261", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8262", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8263", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8264", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8265", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8266", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8267", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8268", + "country_id": 127, + "country_code": "LU", + "state_id": 1514, + "state_code": "L", + "locality_name": "Bertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8268", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8269", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8270", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8271", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8272", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8273", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Mamer", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8274", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kehlen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8277", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Holzem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8278", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Holzem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8279", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Holzem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8280", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kehlen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8281", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kehlen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8282", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kehlen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8283", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kehlen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8284", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kehlen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8285", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kehlen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8286", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kehlen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8287", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kehlen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8288", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kehlen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8289", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kehlen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8290", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kehlen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8291", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Meispelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8292", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Meispelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8293", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Claushof", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8293", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Keispelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8294", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Keispelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8295", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kehlen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8295", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Keispelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8296", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8297", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8298", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8308", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8309", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Holzem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8310", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8311", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8312", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8313", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8314", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8315", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8316", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8317", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8317", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8318", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8319", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8320", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8321", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8322", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8323", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8323", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8324", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8325", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8326", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8327", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8328", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8329", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8330", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8331", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8332", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8333", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8334", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8335", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8336", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8337", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8338", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8339", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8340", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8341", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8342", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8343", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8344", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8345", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8346", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Grass", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8347", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hagen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8348", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Capellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8350", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Garnich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8351", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Dahlem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8352", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Dahlem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8353", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Garnich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8354", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Garnich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8355", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Garnich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8356", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Garnich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8357", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Goeblange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8358", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Goeblange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8359", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Goeblange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8360", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Goetzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8361", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Goetzingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8362", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Grass", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8362", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Schweich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8363", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Greisch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8363", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Leesbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8363", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Simmerfarm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8363", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Simmerschmelz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8364", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hagen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8365", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hagen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8366", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hagen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8367", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hagen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8368", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hagen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8369", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hivange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8370", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hobscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8371", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hobscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8372", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hobscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8373", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hobscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8374", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hobscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8375", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Hobscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8376", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kahler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8378", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kleinbettingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8379", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kleinbettingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8380", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kleinbettingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8381", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Kleinbettingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8383", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Koerich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8383", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Septfontaines", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8384", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Koerich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8385", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Koerich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8386", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Koerich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8387", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Koerich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8388", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Koerich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8389", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Grass", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8390", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Nospelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8391", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Nospelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8392", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Nospelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8393", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8394", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Olm", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8395", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Septfontaines", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8396", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Septfontaines", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8398", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Roodt/Eisch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8399", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Windhof (Koerich)", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8410", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8411", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8412", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8413", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8414", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8415", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8416", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8420", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8421", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8422", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8423", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8424", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8425", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8435", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8436", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8437", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8439", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8440", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8441", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8442", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8443", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8444", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8445", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8447", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8448", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8449", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8450", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8451", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8452", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8453", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Steinfort", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8460", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8461", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8462", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8463", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8464", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8465", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8466", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8467", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8468", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8469", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8470", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8471", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8472", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8473", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8474", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8475", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8476", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8477", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8478", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8479", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8480", + "country_id": 127, + "country_code": "LU", + "state_id": 1518, + "state_code": "CA", + "locality_name": "Eischen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8506", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Redange/Attert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8507", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Redange/Attert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8508", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Redange/Attert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8509", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Redange/Attert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8510", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Redange/Attert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8511", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Redange/Attert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8512", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Redange/Attert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8521", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Beckerich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8522", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Beckerich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8523", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Beckerich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8525", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Calmus", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8526", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Colpach-Bas", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8527", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Colpach-Bas", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8528", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Colpach-Haut", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8529", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Ehner", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8530", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Ell", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8531", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Ell", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8533", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Elvange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8537", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Hostert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8538", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Hovelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8539", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Huttange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8540", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Eltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8540", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Ospern", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8541", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Kapweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8542", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Lannen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8543", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Levelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8544", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Nagem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8545", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Niederpallen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8546", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Hostert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8550", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Noerdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8551", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Noerdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8552", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Oberpallen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8557", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Petit-Nobressart", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8558", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Platen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8558", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Reichlange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8560", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Roodt (Ell)", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8561", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Schwebach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8562", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Schweich", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8606", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Bettborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8609", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Bettborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8610", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Buschrodt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8611", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Platen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8612", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Pratz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8613", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Pratz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8614", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Reimberg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8615", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Platen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8620", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Schandel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8705", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Useldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8706", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Useldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8707", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Useldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8708", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Useldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8710", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Boevange-sur-Attert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8711", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Boevange-sur-Attert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8715", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Everlange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8720", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Rippweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8805", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Hostert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8805", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Rambrouch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8806", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Rambrouch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8808", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Arsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8809", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Arsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8811", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Bilsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8812", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Bigonville", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8812", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Bigonville-Poteau", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8812", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Flatzbour", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8813", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Bigonville", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8814", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Bigonville", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8816", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Brattert", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8817", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Eschette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8818", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Grevels", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8818", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Wahl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8819", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Heispelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8820", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Holtz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8821", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Koetschette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8821", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Riesenhof", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8822", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Kuborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8823", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Haut-Martelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8824", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Perlé", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8825", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Perlé", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8826", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Perlé", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8831", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Rindschleiden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8832", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Rombach-Martelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8833", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Wolwelange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8834", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Folschette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8835", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Folschette", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "8838", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Wahl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9010", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9011", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9012", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9013", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9014", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9015", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9016", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9017", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9018", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Warken", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9019", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Warken", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9020", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9021", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9022", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9023", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9024", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9025", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9026", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9027", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9028", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Warken", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9029", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Warken", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9030", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Warken", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9031", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Warken", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9032", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Warken", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9033", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Warken", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9040", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9041", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9042", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9043", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9044", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9045", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9045", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Niederfeulen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9046", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9047", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9048", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9050", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9051", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9052", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9053", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9054", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9055", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9056", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9057", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9060", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9061", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9062", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9063", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9064", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9065", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9066", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9067", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9068", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9069", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9070", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9071", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9072", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9079", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9080", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9081", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9082", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9083", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9084", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9085", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9086", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9087", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9088", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9089", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9090", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Warken", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9091", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9092", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9094", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ettelbruck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9099", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ingeldorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9115", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9116", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9117", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9118", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9119", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9120", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9121", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9122", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9123", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9124", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9125", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9126", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9127", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9128", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9129", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9130", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9131", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9132", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9133", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9134", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9135", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9136", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9137", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9140", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Bourscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9142", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Burden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9144", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Dellen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9144", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Hierheck", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9144", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Lehrhof", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9145", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Erpeldange-sur-Sûre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9146", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Erpeldange-sur-Sûre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9147", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Erpeldange-sur-Sûre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9147", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ingeldorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9148", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Erpeldange-sur-Sûre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9149", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Erpeldange-sur-Sûre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9150", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Eschdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9151", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Eschdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9153", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Dirbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9153", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Dirbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9153", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Dirbach (Goesdorf)", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9153", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Goebelsmuehle", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9153", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Goebelsmühle", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9154", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Grosbous", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9155", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Grosbous", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9156", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Heiderscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9156", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Niederfeulen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9157", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Heiderscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9158", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Heiderscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9160", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ingeldorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9161", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ingeldorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9163", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Kehmen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9164", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Bourscheid-Moulin", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9164", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Bourscheid-Plage", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9164", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Lipperscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9165", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Merscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9166", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Mertzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9167", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Mertzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9168", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Mertzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9169", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Mertzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9170", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Mertzig", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9171", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Michelau", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9172", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Burden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9172", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Erpeldange-sur-Sûre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9172", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Michelau", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9173", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Michelbouch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9173", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Vichten", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9175", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Niederfeulen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9176", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Niederfeulen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9177", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Niederfeulen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9178", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Niederfeulen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9179", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Oberfeulen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9180", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Oberfeulen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9181", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Tadler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9182", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Scheidel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9183", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Friedbusch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9183", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Oberschlinder", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9183", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schlindermanderscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9183", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Unterschlinder", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9184", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Schieren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9184", + "country_id": 127, + "country_code": "LU", + "state_id": 1522, + "state_code": "ME", + "locality_name": "Schrondweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9185", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Ringel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9186", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Stegen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9188", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Vichten", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9189", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Vichten", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9190", + "country_id": 127, + "country_code": "LU", + "state_id": 1516, + "state_code": "RD", + "locality_name": "Vichten", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9191", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Burden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9191", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Welscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9205", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9206", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9207", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9208", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9209", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9210", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9211", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9212", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9213", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9214", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9215", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9216", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9217", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9218", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9220", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9221", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9221", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Gilsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9224", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9225", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9226", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9227", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9228", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9229", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9230", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9231", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9232", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9233", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9234", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9235", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9236", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9237", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9238", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9239", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9240", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9241", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9242", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9243", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9244", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9245", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9249", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9250", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9251", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9252", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9253", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9254", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9255", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9256", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9257", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9258", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9259", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9260", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9261", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9262", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9263", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9264", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9265", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9266", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9267", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9268", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9273", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9275", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9276", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9277", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9278", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9279", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9280", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9282", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9283", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9284", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9285", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9286", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9287", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9288", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9289", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9290", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9291", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9292", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9293", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9294", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9330", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9340", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Flebour", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9350", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Bastendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9351", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Bastendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9352", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Bettendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9353", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Bettendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9354", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Bettendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9355", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Bettendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9356", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Bettendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9357", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Bettendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9359", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Bastendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9359", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Bettendorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9359", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Seltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9360", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Brandenbourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9361", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Brandenbourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9364", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Keiwelbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9364", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Moestroff", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9365", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Eppeldorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9366", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Ermsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9368", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Folkendange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9369", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Gilsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9370", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9370", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Gilsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9371", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Gilsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9372", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Gilsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9373", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Gilsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9374", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Gilsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9375", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Gralingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9376", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hoscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9377", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hoscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9378", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Brandenbourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9378", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Closdelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9378", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9378", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Enteschbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9378", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Flebour", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9378", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hoscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9378", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Këppenhaff", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9378", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Lipperscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9378", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Michelau", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9379", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Diekirch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9380", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Merscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9381", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Moestroff", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9382", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Moestroff", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9390", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Reisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9391", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Reisdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9392", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Wallendorf-Pont", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9395", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Tandel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9405", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9406", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9407", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9408", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9409", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9410", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9411", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9412", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9414", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9415", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9416", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9417", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9418", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9419", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9420", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9421", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9422", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9423", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9424", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9425", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9426", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9440", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Vianden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9451", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Bettel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9452", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Bettel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9453", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Bivels", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9454", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Fouhren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9455", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Fouhren", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9456", + "country_id": 127, + "country_code": "LU", + "state_id": 1513, + "state_code": "DI", + "locality_name": "Hoesdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9457", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Landscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9458", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Brandenbourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9458", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Hoscheidterhof", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9458", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Landscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9459", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Longsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9461", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Nachtmanderscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9462", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Putscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9463", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Stolzembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9464", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Stolzembourg", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9465", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Walsdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9466", + "country_id": 127, + "country_code": "LU", + "state_id": 1523, + "state_code": "VD", + "locality_name": "Weiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9510", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9511", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9512", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9513", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9514", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9515", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9516", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9517", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Weidingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9518", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Weidingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9519", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9520", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9521", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9522", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9523", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9524", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9530", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9531", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9532", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9533", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9534", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9535", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Weidingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9536", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9537", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9538", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9539", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9540", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9541", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9542", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9543", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9544", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9545", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9550", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9551", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9552", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9553", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Weidingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9554", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9555", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9556", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9557", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9558", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9559", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9560", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9565", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9570", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9571", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9572", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Weidingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9573", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9574", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9575", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9576", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Weidingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9577", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9578", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9579", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Weidingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9631", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Allerborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9632", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Alscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9633", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Baschleiden", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9633", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Boulaide", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9635", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Bavigne", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9636", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Berlé", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9637", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Bockholtz (Goesdorf)", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9638", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Pommerloch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9639", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Boulaide", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9640", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Boulaide", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9641", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Brachtenbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9643", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Buederscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9644", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Dahl", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9645", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Derenbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9647", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Doncols", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9647", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Sonlez", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9648", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Erpeldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9650", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Esch-sur-Sûre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9650", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Insenborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9651", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Eschweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9653", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Goesdorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9654", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Gruemelscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9654", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Schleif", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9655", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Harlange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9656", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Harlange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9657", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Harlange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9659", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Esch-sur-Sûre", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9659", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Heiderscheidergrund", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9659", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Heiderscheidergrund (Goesdorf)", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9660", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Bonnal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9660", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Insenborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9662", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Kaundorf", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9663", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Kautenbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9665", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Liefrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9666", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Lultzhausen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9668", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Masseler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9669", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Mecher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9670", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Merkholtz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9671", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Neunhausen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9672", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Niederwampach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9673", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Oberwampach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9674", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Nocher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9674", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Nocher-Route", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9674", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9676", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Noertrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9678", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Nothum", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9681", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Roullingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9682", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Selscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9684", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Schimpach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9687", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Surré", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9689", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Tarchamps", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9690", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Watrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9696", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9696", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Winseler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9706", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Clervaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9707", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Clervaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9708", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Clervaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9709", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Clervaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9710", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Clervaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9711", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Clervaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9712", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Clervaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9713", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Clervaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9714", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Clervaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9715", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Clervaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9737", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Clervaux", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9737", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Eselborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9738", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Eselborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9740", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Boevange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9742", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Boxhorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9743", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Crendal", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9744", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Deiffelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9745", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Doennange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9746", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Drauffelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9747", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Enscherange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9748", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Eselborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9749", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Fischbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9751", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Grindhausen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9752", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hamiville", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9753", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Heinerscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9754", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hinterhassel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9755", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hupperdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9756", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Kaesfurt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9757", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Kalborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9757", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Kalborn-Moulin", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9758", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Tintesmühle", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9759", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Kirelshof", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9759", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Knaphoscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9760", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Lellingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9761", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Lentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9762", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Lullange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9763", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Marnach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9764", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Marnach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9765", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Kaaspelterhof", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9765", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Mecher", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9765", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Wirtgensmühle", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9766", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Munshausen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9767", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Pintsch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9768", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Reuler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9769", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Roder", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9770", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Rumlange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9771", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Stockem", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9772", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Troine", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9773", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Troine-Route", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9774", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Urspelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9775", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Weicherdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9776", + "country_id": 127, + "country_code": "LU", + "state_id": 1526, + "state_code": "WI", + "locality_name": "Wilwerwiltz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9779", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Eselborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9779", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Lentzweiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9780", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Wincrange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9805", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hosingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9806", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hosingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9807", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hosingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9808", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hosingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9809", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hosingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9810", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hosingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9830", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Bockholtz", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9831", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Consthum", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9833", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Dorscheid", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9834", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Holzthum", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9835", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hoscheid-Dickt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9836", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hosingen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9837", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Neidhausen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9838", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Eisenbach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9839", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Rodershausen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9840", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Siebenaler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9841", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Wahlhausen", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9902", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Cinqfontaines", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9903", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Troisvierges", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9905", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Troisvierges", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9906", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Troisvierges", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9907", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Troisvierges", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9908", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Troisvierges", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9909", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Troisvierges", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9910", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Troisvierges", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9911", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Troisvierges", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9912", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Troisvierges", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9913", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Troisvierges", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9940", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Asselborn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9942", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Basbellain", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9943", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hautbellain", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9944", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Beiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9946", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Binsfeld", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9948", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Biwisch", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9950", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Breidfeld", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9952", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Drinklange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9954", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Goedange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9956", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hachiville", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9960", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hoffelt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9962", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Holler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9964", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Huldange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9966", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Kaesfurt", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9968", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Fossenhof", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9968", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Hollermühle", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9968", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Kleemühle", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9968", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Lausdorn", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9968", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Rossmühle", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9970", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Leithum", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9972", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Lieler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9974", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Maulusmuehle", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9974", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Maulusmühle", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9976", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Sassel", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9980", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Wilwerdange", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9982", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Weiler", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9990", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Weiswampach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9991", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Weiswampach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9992", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Weiswampach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9993", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Weiswampach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9994", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Weiswampach", + "type": "full", + "source": "caclr-data-public-lu" + }, + { + "code": "9999", + "country_id": 127, + "country_code": "LU", + "state_id": 1521, + "state_code": "CL", + "locality_name": "Wemperhardt", + "type": "full", + "source": "caclr-data-public-lu" + } +] From dd8a2a623d3a981c112608dad51fb4845d41a8ee Mon Sep 17 00:00:00 2001 From: Darshan Gada Date: Mon, 27 Apr 2026 21:33:42 +0530 Subject: [PATCH 2/2] fix(export): gzip postcode export files and gitignore the raw versions The export.yml workflow currently produces raw uncompressed postcode exports (json/postcodes.json 228MB, xml/postcodes.xml 250MB, yml/postcodes.yml 163MB, sqlite/postcodes.sqlite3 101MB, sqlserver/postcodes.sql 70MB, sql/postcodes.sql 86MB) that exceed GitHub's 100MB hard limit when peter-evans/create-pull-request tries to push them, breaking the export PR. Mirror the existing cities.* gzip+gitignore pattern for postcodes.*: - gzip -9 every generated postcodes.* file alongside cities.* - gitignore the raw uncompressed postcodes.* in all 7 directories so the export commit doesn't include them; only the .gz goes to the GitHub Release. Restores the export pipeline so today's data fixes (#1349, #1352: PR-A/B/C/D/E + leveling) can reach the live API. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/export.yml | 24 ++++++++++++++++++++++++ .gitignore | 8 ++++++++ 2 files changed, 32 insertions(+) diff --git a/.github/workflows/export.yml b/.github/workflows/export.yml index a8bff22bb..ac108e03b 100644 --- a/.github/workflows/export.yml +++ b/.github/workflows/export.yml @@ -318,6 +318,10 @@ jobs: gzip -9 -k -f json/cities.json echo " ✓ json/cities.json.gz" fi + if [ -f json/postcodes.json ]; then + gzip -9 -k -f json/postcodes.json + echo " ✓ json/postcodes.json.gz" + fi # TOON Files echo "📄 Compressing TOON files..." @@ -339,6 +343,10 @@ jobs: gzip -9 -k -f xml/cities.xml echo " ✓ xml/cities.xml.gz" fi + if [ -f xml/postcodes.xml ]; then + gzip -9 -k -f xml/postcodes.xml + echo " ✓ xml/postcodes.xml.gz" + fi # YAML Files echo "📄 Compressing YAML files..." @@ -346,6 +354,10 @@ jobs: gzip -9 -k -f yml/cities.yml echo " ✓ yml/cities.yml.gz" fi + if [ -f yml/postcodes.yml ]; then + gzip -9 -k -f yml/postcodes.yml + echo " ✓ yml/postcodes.yml.gz" + fi # CSV Files echo "📄 Compressing CSV files..." @@ -357,6 +369,10 @@ jobs: gzip -9 -k -f csv/translations.csv echo " ✓ csv/translations.csv.gz" fi + if [ -f csv/postcodes.csv ]; then + gzip -9 -k -f csv/postcodes.csv + echo " ✓ csv/postcodes.csv.gz" + fi # MySQL SQL Files echo "📄 Compressing MySQL SQL files..." @@ -386,6 +402,10 @@ jobs: gzip -9 -k -f sqlite/cities.sqlite3 echo " ✓ sqlite/world.sqlite3.gz" echo " ✓ sqlite/cities.sqlite3.gz" + if [ -f sqlite/postcodes.sqlite3 ]; then + gzip -9 -k -f sqlite/postcodes.sqlite3 + echo " ✓ sqlite/postcodes.sqlite3.gz" + fi # SQL Server Files echo "📄 Compressing SQL Server files..." @@ -397,6 +417,10 @@ jobs: gzip -9 -k -f sqlserver/cities.sql echo " ✓ sqlserver/cities.sql.gz" fi + if [ -f sqlserver/postcodes.sql ]; then + gzip -9 -k -f sqlserver/postcodes.sql + echo " ✓ sqlserver/postcodes.sql.gz" + fi echo "================================" echo "✅ All compression complete!" diff --git a/.gitignore b/.gitignore index e4e0fd90e..627ec6089 100644 --- a/.gitignore +++ b/.gitignore @@ -36,21 +36,29 @@ nmig/node_modules/ # Large uncompressed exports sql/world.sql sql/cities.sql +sql/postcodes.sql psql/world.sql psql/cities.sql +psql/postcodes.sql sqlserver/world.sql sqlserver/cities.sql +sqlserver/postcodes.sql toon/cities.toon geojson/cities.geojson sqlite/world.sqlite3 sqlite/cities.sqlite3 +sqlite/postcodes.sqlite3 json/countries+states+cities.json json/cities.json json/states+cities.json +json/postcodes.json xml/cities.xml +xml/postcodes.xml yml/cities.yml +yml/postcodes.yml csv/translations.csv csv/cities.csv +csv/postcodes.csv # Keep small files that are useful in git # - Schema files (few KB)